From 227b2b25b3d846410d339ab5a826759e1fe35341 Mon Sep 17 00:00:00 2001 From: Ryan Lue Date: Fri, 13 Mar 2020 01:37:05 +0800 Subject: [PATCH] Testing: Speed up Twitter tests by paring down VCR cassette content This commit reduces the execution time of the specs for Channel::Driver::Twitter#fetch by a little over 50%. The #fetch method calls out to the Twitter API and receives a list of tweets (serialized as JSON), then converts them to tickets and articles. Even with HTTP caching (via VCR), this is an expensive operation: each transaction may contain dozens of tweets to be processed. This commit reduces the processing burden by manually editing the tests' VCR cassettes, removing the vast majority of incoming tweets and keeping only those necessary to run meaningful tests. The result is a set of tests for the #fetch method that, on a given machine, now take 65 seconds instead of 140. As an ancillary benefit, the file size of the associated VCR cassette directory has been reduced from 16MB to under 5MB. --- spec/models/channel/driver/twitter_spec.rb | 265 +- ...gacy_creates_an_article_for_each_tweet.yml | 6566 ---- ..._article_for_each_recent_tweet_retweet.yml | 5343 --- ...tes_articles_for_parent_tweets_as_well.yml | 437 + ...ts_max__120_articles_every_15_minutes.yml} | 6308 +++- ...sumes_importing_again_after_15_minutes.yml | 29320 --------------- ...porting_threads_after_120_new_articles.yml | 29434 ---------------- .../is_false_default_skips_retweets.yml | 437 + ...eets_15_days_older_than_channel_itself.yml | 437 + ..._article_for_each_recent_tweet_retweet.yml | 437 + ...true_creates_an_article_for_each_tweet.yml | 437 + ...vity_sets_successful_status_attributes.yml | 6411 +--- ...en_imported_does_not_import_duplicates.yml | 4922 +-- ...eates_an_article_for_each_recent_tweet.yml | 4922 +-- ...at__options_sync_search_skips_retweets.yml | 5343 --- ...eets_15_days_older_than_channel_itself.yml | 5343 --- 16 files changed, 8669 insertions(+), 97693 deletions(-) delete mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/and_import_older_tweets_option_legacy_creates_an_article_for_each_tweet.yml delete mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/and_track_retweets_option_creates_an_article_for_each_recent_tweet_retweet.yml create mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/for_responses_to_other_tweets_creates_articles_for_parent_tweets_as_well.yml rename test/data/vcr_cassettes/models/channel/driver/twitter/{for_very_common_search_terms_refuses_to_import_any_other_tweets_for_the_next_15_minutes.yml => for_very_common_search_terms_imports_max__120_articles_every_15_minutes.yml} (87%) delete mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_resumes_importing_again_after_15_minutes.yml delete mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_stops_importing_threads_after_120_new_articles.yml create mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/is_false_default_skips_retweets.yml create mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/is_false_default_skips_tweets_15_days_older_than_channel_itself.yml create mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/is_true_creates_an_article_for_each_recent_tweet_retweet.yml create mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/is_true_creates_an_article_for_each_tweet.yml delete mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_skips_retweets.yml delete mode 100644 test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_skips_tweets_15_days_older_than_channel_itself.yml diff --git a/spec/models/channel/driver/twitter_spec.rb b/spec/models/channel/driver/twitter_spec.rb index b56efaadf..3144cc801 100644 --- a/spec/models/channel/driver/twitter_spec.rb +++ b/spec/models/channel/driver/twitter_spec.rb @@ -821,7 +821,7 @@ RSpec.describe Channel::Driver::Twitter do context 'with search term configured (at .options[:sync][:search])' do it 'creates an article for each recent tweet' do expect { channel.fetch } - .to change(Ticket, :count).by(8) + .to change(Ticket, :count).by(2) expect(Ticket.last.attributes).to include( 'title' => "Come and join our team to bring Zammad even further forward! It's gonna be ama...", @@ -831,42 +831,140 @@ RSpec.describe Channel::Driver::Twitter do ) end - it 'skips retweets' do - expect { channel.fetch } - .not_to change { Ticket.where('title LIKE ?', 'RT @%').count }.from(0) - end - - it 'skips tweets 15+ days older than channel itself' do - expect { channel.fetch } - .not_to change { Ticket.where('title LIKE ?', 'GitHub Trending Archive, 2_ Nov 2018, Ruby. %').count }.from(0) - end - - context 'when fetched tweets have already been imported' do - before do - tweet_ids.each { |tweet_id| create(:ticket_article, message_id: tweet_id) } + context 'for responses to other tweets' do + let(:thread) do + Ticket.joins(articles: :type).where(ticket_article_types: { name: 'twitter status' }) + .group('tickets.id').having( + case ActiveRecord::Base.connection_config[:adapter] + when 'mysql2' + 'COUNT("ticket_articles.*") > 1' + when 'postgresql' + 'COUNT(ticket_articles.*) > 1' + end + ).first end - let(:tweet_ids) do - [1224440380881428480, - 1224426978557800449, - 1224427517869809666, - 1224427776654135297, - 1224428510225354753, - 1223188240078909440, - 1223273797987508227, - 1223103807283810304, - 1223121619561799682, - 1222872891320143878, - 1222881209384161283, - 1222896407524212736, - 1222237955588227075, - 1222108036795334657, - 1222126386334388225, - 1222109934923460608] + it 'creates articles for parent tweets as well' do + channel.fetch + + expect(thread.articles.last.body).to match(/zammad/i) # search result + expect(thread.articles.first.body).not_to match(/zammad/i) # parent tweet + end + end + + context 'and "track_retweets" option' do + context 'is false (default)' do + it 'skips retweets' do + expect { channel.fetch } + .not_to change { Ticket.where('title LIKE ?', 'RT @%').count }.from(0) + end end - it 'does not import duplicates' do - expect { channel.fetch }.not_to change(Ticket::Article, :count) + context 'is true' do + subject(:channel) { create(:twitter_channel, custom_options: { sync: { track_retweets: true } }) } + + it 'creates an article for each recent tweet/retweet' do + expect { channel.fetch } + .to change { Ticket.where('title LIKE ?', 'RT @%').count }.by(1) + .and change(Ticket, :count).by(3) + end + end + end + + context 'and "import_older_tweets" option (legacy)' do + context 'is false (default)' do + it 'skips tweets 15+ days older than channel itself' do + expect { channel.fetch } + .not_to change { Ticket.where('title LIKE ?', 'GitHub Trending Archive, 29 Nov 2018, Ruby. %').count }.from(0) + end + end + + context 'is true' do + subject(:channel) { create(:twitter_channel, :legacy) } + + it 'creates an article for each tweet' do + expect { channel.fetch } + .to change { Ticket.where('title LIKE ?', 'GitHub Trending Archive, 29 Nov 2018, Ruby. %').count }.by(1) + .and change(Ticket, :count).by(3) + end + end + end + + describe 'duplicate handling' do + context 'when fetched tweets have already been imported' do + before do + tweet_ids.each { |tweet_id| create(:ticket_article, message_id: tweet_id) } + end + + let(:tweet_ids) { [1222126386334388225, 1222109934923460608] } # rubocop:disable Style/NumericLiterals + + it 'does not import duplicates' do + expect { channel.fetch }.not_to change(Ticket::Article, :count) + end + end + + describe 'Race condition: when #fetch finds a half-processed, outgoing tweet' do + subject!(:channel) { create(:twitter_channel, custom_options: custom_options) } + + let(:custom_options) do + { + user: { + # Must match connected Twitter account's user ID (on Twitter)-- + # that's how #fetch distinguishes between agents' tweets and other people's. + id: '1205290247124217856' + }, + sync: { + search: [ + { + term: 'zammadzammadzammad', + group_id: Group.first.id + } + ] + } + } + end + + let!(:tweet) { create(:twitter_article, body: 'zammadzammadzammad') } + + context '(i.e., after the BG job has posted the article to Twitter…' do + # NOTE: This context block cannot be set up programmatically. + # Instead, the tweet was posted, fetched, recorded into a VCR cassette, + # and then manually copied into the existing VCR cassette for this example. + + context '…but before the BG job has "synced" article.message_id with tweet.id)' do + let(:twitter_job) { Delayed::Job.find_by(handler: <<~YML) } + --- !ruby/object:Observer::Ticket::Article::CommunicateTwitter::BackgroundJob + article_id: #{tweet.id} + YML + + around do |example| + # This test case requires the use_vcr: :time_sensitive option + # to travel_to(when the VCR cassette was recorded). + # + # This ensures that #fetch doesn't ignore + # the "older" tweets stored in the VCR cassette, + # but it also freezes time, + # which breaks this race condition handling logic: + # + # break if Delayed::Job.where('created_at < ?', Time.current).none? + # + # So, we unfreeze time here. + travel_back + + # Run BG job (Why not use Scheduler.worker? + # It led to hangs & failures elsewhere in test suite.) + Thread.new do + sleep 5 # simulate other bg jobs holding up the queue + twitter_job.invoke_job + end.tap { example.run }.join + end + + it 'does not import the duplicate tweet (waits up to 60s for BG job to finish)' do + expect { channel.fetch } + .to not_change(Ticket::Article, :count) + end + end + end end end @@ -888,112 +986,27 @@ RSpec.describe Channel::Driver::Twitter do let(:twitter_articles) { Ticket::Article.joins(:type).where(ticket_article_types: { name: 'twitter status' }) } - it 'stops importing threads after 120 new articles' do + # NOTE: Ordinarily, RSpec examples should be kept as small as possible. + # In this case, we bundle these examples together because + # separating them would duplicate expensive setup: + # even with HTTP caching, this single example takes nearly a minute. + it 'imports max. ~120 articles every 15 minutes' do channel.fetch - expect((twitter_articles - Ticket.last.articles).count).to be < 120 - expect(twitter_articles.count).to be >= 120 - end + expect((twitter_articles - Ticket.last.articles).count).to be <= 120 + expect(twitter_articles.count).to be > 120 - it 'refuses to import any other tweets for the next 15 minutes' do - channel.fetch travel(14.minutes) expect { create(:twitter_channel).fetch } .not_to change(Ticket::Article, :count) - end - it 'resumes importing again after 15 minutes' do - channel.fetch - travel(15.minutes) + travel(1.minute) expect { create(:twitter_channel).fetch } .to change(Ticket::Article, :count) end end - - context 'and "track_retweets" option' do - subject(:channel) { create(:twitter_channel, custom_options: { sync: { track_retweets: true } }) } - - it 'creates an article for each recent tweet/retweet' do - expect { channel.fetch } - .to change { Ticket.where('title LIKE ?', 'RT @%').count } - .and change(Ticket, :count).by(21) - end - end - - context 'and "import_older_tweets" option (legacy)' do - subject(:channel) { create(:twitter_channel, :legacy) } - - it 'creates an article for each tweet' do - expect { channel.fetch } - .to change { Ticket.where('title LIKE ?', 'GitHub Trending Archive, 2_ Nov 2018, Ruby. %').count } - .and change(Ticket, :count).by(21) - end - end - - describe 'Race condition: when #fetch finds a half-processed, outgoing tweet' do - subject!(:channel) { create(:twitter_channel, custom_options: custom_options) } - - let(:custom_options) do - { - user: { - # Must match outgoing tweet author Twitter user ID - id: '1205290247124217856', - }, - sync: { - search: [ - { - term: 'zammadzammadzammad', - group_id: Group.first.id - } - ] - } - } - end - - let!(:tweet) { create(:twitter_article, body: 'zammadzammadzammad') } - - context '(i.e., after the BG job has posted the article to Twitter…' do - # NOTE: This context block cannot be set up programmatically. - # Instead, the tweet was posted, fetched, recorded into a VCR cassette, - # and then manually copied into the existing VCR cassette for this example. - - context '…but before the BG job has "synced" article.message_id with tweet.id)' do - let(:twitter_job) { Delayed::Job.find_by(handler: <<~YML) } - --- !ruby/object:Observer::Ticket::Article::CommunicateTwitter::BackgroundJob - article_id: #{tweet.id} - YML - - around do |example| - # This test case requires the use_vcr: :time_sensitive option - # to travel_to(when the VCR cassette was recorded). - # - # This ensures that #fetch doesn't ignore - # the "older" tweets stored in the VCR cassette, - # but it also freezes time, - # which breaks this race condition handling logic: - # - # break if Delayed::Job.where('created_at < ?', Time.current).none? - # - # So, we unfreeze time here. - travel_back - - # Run BG job (Why not use Scheduler.worker? - # It led to hangs & failures elsewhere in test suite.) - Thread.new do - sleep 5 # simulate other bg jobs holding up the queue - twitter_job.invoke_job - end.tap { example.run }.join - end - - it 'does not import the duplicate tweet (waits up to 60s for BG job to finish)' do - expect { channel.fetch } - .to not_change(Ticket::Article, :count) - end - end - end - end end end end diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/and_import_older_tweets_option_legacy_creates_an_article_for_each_tweet.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/and_import_older_tweets_option_legacy_creates_an_article_for_each_tweet.yml deleted file mode 100644 index 209adde8f..000000000 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/and_import_older_tweets_option_legacy_creates_an_article_for_each_tweet.yml +++ /dev/null @@ -1,6566 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8efb0d12349b48e6acaa2ec6ff224cc2", - oauth_signature="uABvZoC5sN%2F68E4oxp6Qk6SxO2Y%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795852", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '100314' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:52 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:52 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585206598350; Expires=Wed, 02 Dec 2020 00:10:52 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_waQbYwEcthV3BgOM79ebyA=="; Expires=Wed, 02 Dec 2020 - 00:10:52 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - a1a23cf829d6620a58e4f36784e4cb35 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '174' - X-Rate-Limit-Reset: - - '1543796367' - X-Response-Time: - - '350' - X-Transaction: - - '009c973e00526e95' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Sun Dec 02 16:20:35 +0000 2018","id":1069265077583400960,"id_str":"1069265077583400960","text":"@pexample - @Example1 Not Love only FAME","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pexample","name":"Zarghuna - Bukhari","id":2176345957,"id_str":"2176345957","indices":[0,12]},{"screen_name":"Example1","name":"Reham - Khan","id":298959564,"id_str":"298959564","indices":[13,24]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1068958852887076864,"in_reply_to_status_id_str":"1068958852887076864","in_reply_to_user_id":2176345957,"in_reply_to_user_id_str":"2176345957","in_reply_to_screen_name":"pexample","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat - Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub - Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, - testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Fri - Nov 30 12:23:31 +0000 2018","id":1068480642663542784,"id_str":"1068480642663542784","text":"@mexample - @AExample @TGExample Tell that to any left wing political person who tweets - somewhat consistently on this site","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mexample","name":"Zammad - Mustafa","id":2694949692,"id_str":"2694949692","indices":[0,14]},{"screen_name":"AExample","name":"ahad","id":2320914337,"id_str":"2320914337","indices":[15,23]},{"screen_name":"TGExample","name":"Twitter - Gaming","id":3873936134,"id_str":"3873936134","indices":[24,38]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1062817263106039814,"in_reply_to_status_id_str":"1062817263106039814","in_reply_to_user_id":2694949692,"in_reply_to_user_id_str":"2694949692","in_reply_to_screen_name":"mexample","user":{"id":980307493954895872,"id_str":"980307493954895872","name":"Luke - Appleford","screen_name":"LukeAppleford1","location":"Traverse City, MI","description":"Games - eSports","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":216,"listed_count":0,"created_at":"Sun - Apr 01 04:54:54 +0000 2018","favourites_count":84,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":499,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/982030415094575107\/uoPHSILZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/982030415094575107\/uoPHSILZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/980307493954895872\/1522969368","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Nov 30 06:30:02 +0000 2018","id":1068391688459051009,"id_str":"1068391688459051009","text":"GitHub - Trending Archive, 28 Nov 2018, Ruby. djezzzl\/database_consistency, adworse\/iguvium, - testdouble\/standard, git\u2026 https:\/\/t.co\/lcXoXyEjkQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lcXoXyEjkQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068391688459051009","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Thu - Nov 29 13:03:10 +0000 2018","id":1068128231952400386,"id_str":"1068128231952400386","text":"@example_org - Pmln=Chor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"example_org","name":"Example(N)","id":497658491,"id_str":"497658491","indices":[0,9]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1068124600951803905,"in_reply_to_status_id_str":"1068124600951803905","in_reply_to_user_id":497658491,"in_reply_to_user_id_str":"497658491","in_reply_to_screen_name":"example_org","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Thu - Nov 29 06:30:02 +0000 2018","id":1068029300794785792,"id_str":"1068029300794785792","text":"GitHub - Trending Archive, 27 Nov 2018, Ruby. djezzzl\/database_consistency, adworse\/iguvium, - testdouble\/standard, uoh\u2026 https:\/\/t.co\/1HdM47L90h","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1HdM47L90h","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068029300794785792","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Wed - Nov 28 06:30:09 +0000 2018","id":1067666938346692608,"id_str":"1067666938346692608","text":"GitHub - Trending Archive, 26 Nov 2018, Ruby. travis-ci\/travis.rb, zammad\/zammad, - citation-style-language\/styles, ath\u2026 https:\/\/t.co\/0Rxi6UIxPn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0Rxi6UIxPn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1067666938346692608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Tue - Nov 27 20:16:04 +0000 2018","id":1067512400096702464,"id_str":"1067512400096702464","text":"RT - @chaudhry_nabeel: 100 days of Patwari life \ud83d\ude25\ud83d\ude25\n\nRT - and share there misery\n#100DaysOfKhan https:\/\/t.co\/8SuDIKp2np","truncated":false,"entities":{"hashtags":[{"text":"100DaysOfKhan","indices":[76,90]}],"symbols":[],"user_mentions":[{"screen_name":"chaudhry_nabeel","name":"Nabeel - Chaudhry","id":148806508,"id_str":"148806508","indices":[3,19]}],"urls":[],"media":[{"id":1067456003346755585,"id_str":"1067456003346755585","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","url":"https:\/\/t.co\/8SuDIKp2np","display_url":"pic.twitter.com\/8SuDIKp2np","expanded_url":"https:\/\/twitter.com\/chaudhry_nabeel\/status\/1067458921831546880\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":669,"resize":"fit"},"large":{"w":1280,"h":714,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"source_status_id":1067458921831546880,"source_status_id_str":"1067458921831546880","source_user_id":148806508,"source_user_id_str":"148806508"}]},"extended_entities":{"media":[{"id":1067456003346755585,"id_str":"1067456003346755585","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","url":"https:\/\/t.co\/8SuDIKp2np","display_url":"pic.twitter.com\/8SuDIKp2np","expanded_url":"https:\/\/twitter.com\/chaudhry_nabeel\/status\/1067458921831546880\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":669,"resize":"fit"},"large":{"w":1280,"h":714,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"source_status_id":1067458921831546880,"source_status_id_str":"1067458921831546880","source_user_id":148806508,"source_user_id_str":"148806508","video_info":{"aspect_ratio":[640,357],"duration_millis":46933,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/pl\/x7OlDUqM8vFckfqL.m3u8?tag=5"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/322x180\/fOH4uRhl0DahC-c9.mp4?tag=5"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/1280x714\/MXl3naMgncziejIx.mp4?tag=5"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/644x360\/jpwRvUvlD37j_w2a.mp4?tag=5"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":148806508,"id_str":"148806508","name":"Nabeel - Chaudhry","screen_name":"chaudhry_nabeel","location":"Gujranwala","description":"A - good dentist never gets on your nerves\nI edit photos and videos just for - Fun","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24292,"friends_count":3172,"listed_count":41,"created_at":"Thu - May 27 17:07:00 +0000 2010","favourites_count":32993,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40495,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976550528414048257\/HsYRKtE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976550528414048257\/HsYRKtE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148806508\/1541347396","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 27 16:43:34 +0000 2018","id":1067458921831546880,"id_str":"1067458921831546880","text":"100 - days of Patwari life \ud83d\ude25\ud83d\ude25\n\nRT and share there misery\n#100DaysOfKhan - https:\/\/t.co\/8SuDIKp2np","truncated":false,"entities":{"hashtags":[{"text":"100DaysOfKhan","indices":[55,69]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1067456003346755585,"id_str":"1067456003346755585","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","url":"https:\/\/t.co\/8SuDIKp2np","display_url":"pic.twitter.com\/8SuDIKp2np","expanded_url":"https:\/\/twitter.com\/chaudhry_nabeel\/status\/1067458921831546880\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":669,"resize":"fit"},"large":{"w":1280,"h":714,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1067456003346755585,"id_str":"1067456003346755585","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","url":"https:\/\/t.co\/8SuDIKp2np","display_url":"pic.twitter.com\/8SuDIKp2np","expanded_url":"https:\/\/twitter.com\/chaudhry_nabeel\/status\/1067458921831546880\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":669,"resize":"fit"},"large":{"w":1280,"h":714,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"video_info":{"aspect_ratio":[640,357],"duration_millis":46933,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/pl\/x7OlDUqM8vFckfqL.m3u8?tag=5"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/322x180\/fOH4uRhl0DahC-c9.mp4?tag=5"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/1280x714\/MXl3naMgncziejIx.mp4?tag=5"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/644x360\/jpwRvUvlD37j_w2a.mp4?tag=5"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148806508,"id_str":"148806508","name":"Nabeel - Chaudhry","screen_name":"chaudhry_nabeel","location":"Gujranwala","description":"A - good dentist never gets on your nerves\nI edit photos and videos just for - Fun","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24292,"friends_count":3172,"listed_count":41,"created_at":"Thu - May 27 17:07:00 +0000 2010","favourites_count":32993,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40495,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976550528414048257\/HsYRKtE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976550528414048257\/HsYRKtE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148806508\/1541347396","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":268,"favorite_count":649,"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"},{"created_at":"Tue - Nov 27 10:36:04 +0000 2018","id":1067366438179151872,"id_str":"1067366438179151872","text":"RT - @zefanjas: Zammad LDAP Integration mit https:\/\/t.co\/wVe8RyJ9rE https:\/\/t.co\/Tm4uGm0TCc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zefanjas","name":"zefanjas","id":37184801,"id_str":"37184801","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/wVe8RyJ9rE","expanded_url":"http:\/\/Linuxmuster.net","display_url":"Linuxmuster.net","indices":[42,65]},{"url":"https:\/\/t.co\/Tm4uGm0TCc","expanded_url":"http:\/\/rviv.ly\/0yY5qp","display_url":"rviv.ly\/0yY5qp","indices":[66,89]}]},"metadata":{"iso_language_code":"ht","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"dev - - Zammad maintainer - OTRS customizer","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":40,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":215,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":120,"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\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 27 08:04:35 +0000 2018","id":1067328318691790848,"id_str":"1067328318691790848","text":"Zammad - LDAP Integration mit https:\/\/t.co\/wVe8RyJ9rE https:\/\/t.co\/Tm4uGm0TCc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wVe8RyJ9rE","expanded_url":"http:\/\/Linuxmuster.net","display_url":"Linuxmuster.net","indices":[28,51]},{"url":"https:\/\/t.co\/Tm4uGm0TCc","expanded_url":"http:\/\/rviv.ly\/0yY5qp","display_url":"rviv.ly\/0yY5qp","indices":[52,75]}]},"metadata":{"iso_language_code":"ht","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/openschoolsolutions.org\" rel=\"nofollow\"\u003eMy_Blog_Tweeter\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37184801,"id_str":"37184801","name":"zefanjas","screen_name":"zefanjas","location":"","description":"teacher, - sysadmin, open source, https:\/\/t.co\/jPPFTbyZMX,","url":"https:\/\/t.co\/dxttQkh7O8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dxttQkh7O8","expanded_url":"https:\/\/zefanjas.de","display_url":"zefanjas.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jPPFTbyZMX","expanded_url":"http:\/\/linuxmuster.net","display_url":"linuxmuster.net","indices":[32,55]}]}},"protected":false,"followers_count":212,"friends_count":327,"listed_count":29,"created_at":"Sat - May 02 12:04:50 +0000 2009","favourites_count":131,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1288,"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\/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\/915014575\/zefanjas_new_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915014575\/zefanjas_new_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37184801\/1512218035","profile_link_color":"038543","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"},"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":"ht"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ht"},{"created_at":"Tue - Nov 27 08:04:35 +0000 2018","id":1067328318691790848,"id_str":"1067328318691790848","text":"Zammad - LDAP Integration mit https:\/\/t.co\/wVe8RyJ9rE https:\/\/t.co\/Tm4uGm0TCc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wVe8RyJ9rE","expanded_url":"http:\/\/Linuxmuster.net","display_url":"Linuxmuster.net","indices":[28,51]},{"url":"https:\/\/t.co\/Tm4uGm0TCc","expanded_url":"http:\/\/rviv.ly\/0yY5qp","display_url":"rviv.ly\/0yY5qp","indices":[52,75]}]},"metadata":{"iso_language_code":"ht","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/openschoolsolutions.org\" rel=\"nofollow\"\u003eMy_Blog_Tweeter\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37184801,"id_str":"37184801","name":"zefanjas","screen_name":"zefanjas","location":"","description":"teacher, - sysadmin, open source, https:\/\/t.co\/jPPFTbyZMX,","url":"https:\/\/t.co\/dxttQkh7O8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dxttQkh7O8","expanded_url":"https:\/\/zefanjas.de","display_url":"zefanjas.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jPPFTbyZMX","expanded_url":"http:\/\/linuxmuster.net","display_url":"linuxmuster.net","indices":[32,55]}]}},"protected":false,"followers_count":212,"friends_count":327,"listed_count":29,"created_at":"Sat - May 02 12:04:50 +0000 2009","favourites_count":131,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1288,"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\/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\/915014575\/zefanjas_new_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915014575\/zefanjas_new_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37184801\/1512218035","profile_link_color":"038543","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"},"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":"ht"},{"created_at":"Mon - Nov 26 11:39:24 +0000 2018","id":1067019989121724416,"id_str":"1067019989121724416","text":"zammad\/zammad: - Zammad is a web based open source helpdesk\/customer support system https:\/\/t.co\/a1FHuA1nrT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a1FHuA1nrT","expanded_url":"https:\/\/example.com\/zammad\/zammad","display_url":"example.com\/zammad\/zammad","indices":[82,105]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":35983221,"id_str":"35983221","name":"Alex - Ishida","screen_name":"alexishida","location":"Porto Velho, Brasil","description":"Senior - Software Developer, Ruby on Rails Evangelist, Blockchain Enthusiast, Gamer, - Addicted to Electronic, Photography and Technology.","url":"https:\/\/t.co\/fG4NwLjeSS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fG4NwLjeSS","expanded_url":"https:\/\/www.example.com\/in\/alexishida\/","display_url":"example.com\/in\/alexishida\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":1050,"listed_count":90,"created_at":"Tue - Apr 28 04:04:57 +0000 2009","favourites_count":812,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4229,"lang":"pt","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"5D7382","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\/932827443404197888\/kFWnZpm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932827443404197888\/kFWnZpm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35983221\/1511238535","profile_link_color":"5C6B7E","profile_sidebar_border_color":"000000","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"},"geo":null,"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"},{"created_at":"Mon - Nov 26 06:30:13 +0000 2018","id":1066942182664224769,"id_str":"1066942182664224769","text":"GitHub - Trending Archive, 24 Nov 2018, Ruby. asciidoctor\/asciidoctor-pdf, uohzxela\/clean-code-ruby, - ManageIQ\/managei\u2026 https:\/\/t.co\/gWM7paKJXZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gWM7paKJXZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1066942182664224769","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Sun - Nov 25 20:19:27 +0000 2018","id":1066788475469529091,"id_str":"1066788475469529091","text":"I - added a video to a @YouTube playlist https:\/\/t.co\/3v4JTQKOQp Cardi B, Bad - Bunny & J Balvin - I Like It [Official Music Video]","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[21,29]}],"urls":[{"url":"https:\/\/t.co\/3v4JTQKOQp","expanded_url":"http:\/\/youtu.be\/xTlNMmZKwpA?a","display_url":"youtu.be\/xTlNMmZKwpA?a","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"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"},{"created_at":"Sun - Nov 25 06:30:03 +0000 2018","id":1066579751278567424,"id_str":"1066579751278567424","text":"GitHub - Trending Archive, 23 Nov 2018, Ruby. fbkcs\/msf-elf-in-memory-execution, ciconia\/modulation, - contentful-labs\/\u2026 https:\/\/t.co\/pSQs0HwgrE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pSQs0HwgrE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1066579751278567424","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Sun - Nov 25 05:48:06 +0000 2018","id":1066569192860762112,"id_str":"1066569192860762112","text":"I - added a video to a @YouTube playlist https:\/\/t.co\/OZOnKsQUH6 We Put Lego - In a Blender and it was Worth It!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[21,29]}],"urls":[{"url":"https:\/\/t.co\/OZOnKsQUH6","expanded_url":"http:\/\/youtu.be\/Po4C-IiAJlQ?a","display_url":"youtu.be\/Po4C-IiAJlQ?a","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"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"},{"created_at":"Sat - Nov 24 12:41:19 +0000 2018","id":1066310793925455872,"id_str":"1066310793925455872","text":"@zammadhq - Danke. Noch eine Frage zu Twitter und Zammad. Wo kann ich das Standarttemplate - f\u00fcr Twitter bearbeiten?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":1066307515649003520,"in_reply_to_status_id_str":"1066307515649003520","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":280647844,"id_str":"280647844","name":"fexample","screen_name":"fexample","location":"Berlin","description":"ITler, - Autist und Podcaster |\nim CCC Umfeld aktiv | er\/he","url":"https:\/\/t.co\/lqrFmdOsAP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lqrFmdOsAP","expanded_url":"http:\/\/fexample.org","display_url":"fexample.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":701,"listed_count":20,"created_at":"Mon - Apr 11 19:18:56 +0000 2011","favourites_count":24752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13973,"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\/851468284230848517\/HAmK9OTy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851468284230848517\/HAmK9OTy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280647844\/1454753210","profile_link_color":"0F125C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Sat - Nov 24 11:51:40 +0000 2018","id":1066298300649877504,"id_str":"1066298300649877504","text":"@zammadhq - Ist es im Moment eigentlich m\u00f6glich, Twitter DMs via Zammad zu Verwalten?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":280647844,"id_str":"280647844","name":"fexample","screen_name":"fexample","location":"Berlin","description":"ITler, - Autist und Podcaster |\nim CCC Umfeld aktiv | er\/he","url":"https:\/\/t.co\/lqrFmdOsAP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lqrFmdOsAP","expanded_url":"http:\/\/fexample.org","display_url":"fexample.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":701,"listed_count":20,"created_at":"Mon - Apr 11 19:18:56 +0000 2011","favourites_count":24752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13973,"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\/851468284230848517\/HAmK9OTy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851468284230848517\/HAmK9OTy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280647844\/1454753210","profile_link_color":"0F125C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Sat - Nov 24 06:30:08 +0000 2018","id":1066217385328164864,"id_str":"1066217385328164864","text":"GitHub - Trending Archive, 22 Nov 2018, Ruby. socketry\/falcon, skycocker\/chromebrew, - zammad\/zammad, Linuxbrew\/brew, a\u2026 https:\/\/t.co\/2aRQBL4ltz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2aRQBL4ltz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1066217385328164864","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Fri - Nov 23 19:47:06 +0000 2018","id":1066055560028672000,"id_str":"1066055560028672000","text":"RT - @example: #Ruby #AutoTweet | Zammad: A Web-Based Open Source Helpdesk\/Customer - Support System https:\/\/t.co\/E092AvvEAH","truncated":false,"entities":{"hashtags":[{"text":"Ruby","indices":[12,17]},{"text":"AutoTweet","indices":[19,29]}],"symbols":[],"user_mentions":[{"screen_name":"example","name":"Yohan - J. Rodr\u00edguez","id":386830764,"id_str":"386830764","indices":[3,10]}],"urls":[{"url":"https:\/\/t.co\/E092AvvEAH","expanded_url":"https:\/\/goo.gl\/zducHG","display_url":"goo.gl\/zducHG","indices":[97,120]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\" rel=\"nofollow\"\u003eGApps-Newsletter2\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175627617,"id_str":"175627617","name":"Imabit - Inc","screen_name":"imabit_inc","location":"Mexico","description":"Imabit - Inc. is a modern company dedicated to providing development services, design - and AI solutions for the Web, Mobile and Desktop","url":"https:\/\/t.co\/I67AMrwzPJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/I67AMrwzPJ","expanded_url":"https:\/\/www.imabit.com","display_url":"imabit.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":61,"listed_count":6,"created_at":"Sat - Aug 07 03:54:35 +0000 2010","favourites_count":37252,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40504,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/937091164951289856\/tfIoqXYr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/937091164951289856\/tfIoqXYr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175627617\/1512254942","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 23 19:47:00 +0000 2018","id":1066055532707020800,"id_str":"1066055532707020800","text":"#Ruby #AutoTweet - | Zammad: A Web-Based Open Source Helpdesk\/Customer Support System https:\/\/t.co\/E092AvvEAH","truncated":false,"entities":{"hashtags":[{"text":"Ruby","indices":[0,5]},{"text":"AutoTweet","indices":[7,17]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E092AvvEAH","expanded_url":"https:\/\/goo.gl\/zducHG","display_url":"goo.gl\/zducHG","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\" rel=\"nofollow\"\u003eGApps-Newsletter\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386830764,"id_str":"386830764","name":"Yohan - J. Rodr\u00edguez","screen_name":"example","location":"","description":"Nanotechnology - PhD. Developer & Blogger. Passion for Technology, Science and Chess - Keep - Walking..","url":"https:\/\/t.co\/w9cILKDGd9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/w9cILKDGd9","expanded_url":"https:\/\/www.example.com","display_url":"example.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3902,"friends_count":4396,"listed_count":153,"created_at":"Sat - Oct 08 00:19:29 +0000 2011","favourites_count":236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42678,"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\/1052285678342438912\/V6LP8BoX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1052285678342438912\/V6LP8BoX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386830764\/1539719470","profile_link_color":"1B95E0","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"},"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"},{"created_at":"Fri - Nov 23 19:47:00 +0000 2018","id":1066055532707020800,"id_str":"1066055532707020800","text":"#Ruby #AutoTweet - | Zammad: A Web-Based Open Source Helpdesk\/Customer Support System https:\/\/t.co\/E092AvvEAH","truncated":false,"entities":{"hashtags":[{"text":"Ruby","indices":[0,5]},{"text":"AutoTweet","indices":[7,17]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E092AvvEAH","expanded_url":"https:\/\/goo.gl\/zducHG","display_url":"goo.gl\/zducHG","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\" rel=\"nofollow\"\u003eGApps-Newsletter\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386830764,"id_str":"386830764","name":"Yohan - J. Rodr\u00edguez","screen_name":"example","location":"","description":"Nanotechnology - PhD. Developer & Blogger. Passion for Technology, Science and Chess - Keep - Walking..","url":"https:\/\/t.co\/w9cILKDGd9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/w9cILKDGd9","expanded_url":"https:\/\/www.example.com","display_url":"example.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3902,"friends_count":4396,"listed_count":153,"created_at":"Sat - Oct 08 00:19:29 +0000 2011","favourites_count":236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42678,"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\/1052285678342438912\/V6LP8BoX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1052285678342438912\/V6LP8BoX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386830764\/1539719470","profile_link_color":"1B95E0","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"},"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"},{"created_at":"Fri - Nov 23 16:30:39 +0000 2018","id":1066006121020882945,"id_str":"1066006121020882945","text":"RT - @IExample: \u0645\u06cc\u0631\u06d2 \u0630\u06c1\u0646 \u0645\u06cc\u06ba - \u0630\u0631\u0627 \u0633\u0627 \u0628\u06be\u06cc \u0627\u0628\u06c1\u0627\u0645 - \u0628\u0627\u0642\u06cc \u0646\u06c1\u06cc\u06ba \u06a9\u06c1 \u062f\u0648\u0646\u0648\u06ba - \u062d\u0645\u0644\u06d2 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 \u06a9\u0648 - \u062e\u0648\u0634\u062d\u0627\u0644\u06cc \u06a9\u06cc \u0688\u06af\u0631 - \u0633\u06d2 \u062f\u0648\u0631 \u0631\u06a9\u06be\u0646\u06d2 \u06a9\u06d2 - \u062e\u0648\u0627\u06c1\u0634\u0645\u0646\u062f \u0639\u0646\u0627\u0635\u0631 - \u06a9\u06cc \u062c\u0627\u0646\u0628 \u0633\u06d2\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IExample","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 23 10:45:32 +0000 2018","id":1065919270960402433,"id_str":"1065919270960402433","text":"\u0645\u06cc\u0631\u06d2 - \u0630\u06c1\u0646 \u0645\u06cc\u06ba \u0630\u0631\u0627 \u0633\u0627 \u0628\u06be\u06cc - \u0627\u0628\u06c1\u0627\u0645 \u0628\u0627\u0642\u06cc \u0646\u06c1\u06cc\u06ba - \u06a9\u06c1 \u062f\u0648\u0646\u0648\u06ba \u062d\u0645\u0644\u06d2 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 - \u06a9\u0648 \u062e\u0648\u0634\u062d\u0627\u0644\u06cc \u06a9\u06cc \u0688\u06af\u0631 - \u0633\u06d2 \u062f\u0648\u0631 \u0631\u06a9\u06be\u0646\u06d2 \u06a9\u06d2 - \u062e\u0648\u0627\u06c1\u0634\u0645\u0646\u062f \u0639\u0646\u0627\u0635\u0631 - \u06a9\u06cc \u062c\u2026 https:\/\/t.co\/tn9WjxD6Ub","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tn9WjxD6Ub","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065919270960402433","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122453931,"id_str":"122453931","name":"Imran - Khan","screen_name":"IExample","location":"Pakistan","description":"Prime - Minister of Pakistan","url":"https:\/\/t.co\/zwxvk5i5Xu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwxvk5i5Xu","expanded_url":"http:\/\/insaf.pk","display_url":"insaf.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8753744,"friends_count":19,"listed_count":8089,"created_at":"Fri - Mar 12 19:28:06 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5685,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CCAB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122453931\/1534522318","profile_link_color":"179C41","profile_sidebar_border_color":"CCCCCC","profile_sidebar_fill_color":"E2F5E2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1065919107080560641,"quoted_status_id_str":"1065919107080560641","quoted_status":{"created_at":"Fri - Nov 23 10:44:53 +0000 2018","id":1065919107080560641,"id_str":"1065919107080560641","text":"\u06a9\u0631\u0627\u0686\u06cc - \u0645\u06cc\u06ba \u0686\u06cc\u0646\u06cc \u0642\u0648\u0646\u0635\u0644 - \u062e\u0627\u0646\u06d2 \u0627\u0648\u0631 \u0627\u0648\u0631\u06a9\u0632\u0626\u06cc - \u0645\u06cc\u06ba \u06c1\u0648\u0646\u06d2 \u0648\u0627\u0644\u06d2 \u062f\u06c1\u0634\u062a - \u06af\u0631\u062f \u062d\u0645\u0644\u0648\u06ba \u06a9\u06cc \u0634\u062f\u06cc\u062f - \u0645\u0630\u0645\u062a \u06a9\u0631\u062a\u0627 \u06c1\u0648\u06ba\u06d4\u0645\u06cc\u0631\u06cc - \u062a\u0645\u0627\u0645 \u062f\u0639\u0627\u0626\u06cc\u06ba\/\u06c1\u0645\u062f\u0631\u062f\u06cc\u0627\u06ba\u2026 - https:\/\/t.co\/pkq8hsOTPX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pkq8hsOTPX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065919107080560641","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122453931,"id_str":"122453931","name":"Imran - Khan","screen_name":"IExample","location":"Pakistan","description":"Prime - Minister of Pakistan","url":"https:\/\/t.co\/zwxvk5i5Xu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwxvk5i5Xu","expanded_url":"http:\/\/insaf.pk","display_url":"insaf.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8753744,"friends_count":19,"listed_count":8089,"created_at":"Fri - Mar 12 19:28:06 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5685,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CCAB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122453931\/1534522318","profile_link_color":"179C41","profile_sidebar_border_color":"CCCCCC","profile_sidebar_fill_color":"E2F5E2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3591,"favorite_count":17480,"favorited":false,"retweeted":false,"lang":"ur"},"retweet_count":3524,"favorite_count":14138,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":true,"quoted_status_id":1065919107080560641,"quoted_status_id_str":"1065919107080560641","retweet_count":3524,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},{"created_at":"Fri - Nov 23 16:30:32 +0000 2018","id":1066006092021489664,"id_str":"1066006092021489664","text":"RT - @IExample: \u06a9\u0631\u0627\u0686\u06cc \u0645\u06cc\u06ba \u0686\u06cc\u0646\u06cc - \u0642\u0648\u0646\u0635\u0644 \u062e\u0627\u0646\u06d2 \u067e\u0631 \u0646\u0627\u06a9\u0627\u0645 - \u062d\u0645\u0644\u06c1 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 \u0627\u0648\u0631 - \u0686\u06cc\u0646 \u06a9\u06d2 \u0645\u0627\u0628\u06cc\u0646 \u0627\u0646 - \u063a\u06cc\u0631 \u0645\u0639\u0645\u0648\u0644\u06cc \u062a\u062c\u0627\u0631\u062a\u06cc - \u0645\u0639\u0627\u06c1\u062f\u0648\u06ba \u06a9\u0627 \u0631\u062f\u0639\u0645\u0644 - \u06c1\u06d2 \u062c\u0648 \u0686\u06cc\u0646 \u06a9\u06d2 \u06c1\u0645\u0627\u0631\u06d2\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IExample","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 23 10:47:33 +0000 2018","id":1065919778941005825,"id_str":"1065919778941005825","text":"\u06a9\u0631\u0627\u0686\u06cc - \u0645\u06cc\u06ba \u0686\u06cc\u0646\u06cc \u0642\u0648\u0646\u0635\u0644 - \u062e\u0627\u0646\u06d2 \u067e\u0631 \u0646\u0627\u06a9\u0627\u0645 \u062d\u0645\u0644\u06c1 - \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 \u0627\u0648\u0631 \u0686\u06cc\u0646 - \u06a9\u06d2 \u0645\u0627\u0628\u06cc\u0646 \u0627\u0646 \u063a\u06cc\u0631 - \u0645\u0639\u0645\u0648\u0644\u06cc \u062a\u062c\u0627\u0631\u062a\u06cc - \u0645\u0639\u0627\u06c1\u062f\u0648\u06ba \u06a9\u0627 \u0631\u062f\u0639\u0645\u0644 - \u06c1\u06d2 \u062c\u0648 \u0686\u06cc\u0646 \u06a9\u06d2\u2026 https:\/\/t.co\/WKhYVFObQb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WKhYVFObQb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065919778941005825","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122453931,"id_str":"122453931","name":"Imran - Khan","screen_name":"IExample","location":"Pakistan","description":"Prime - Minister of Pakistan","url":"https:\/\/t.co\/zwxvk5i5Xu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwxvk5i5Xu","expanded_url":"http:\/\/insaf.pk","display_url":"insaf.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8753744,"friends_count":19,"listed_count":8089,"created_at":"Fri - Mar 12 19:28:06 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5685,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CCAB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122453931\/1534522318","profile_link_color":"179C41","profile_sidebar_border_color":"CCCCCC","profile_sidebar_fill_color":"E2F5E2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5206,"favorite_count":28511,"favorited":false,"retweeted":false,"lang":"ur"},"is_quote_status":false,"retweet_count":5206,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},{"created_at":"Fri - Nov 23 00:34:39 +0000 2018","id":1065765537333080064,"id_str":"1065765537333080064","text":"rails\u306b\u3088\u308b\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306e\u30ab\u30b9\u30bf\u30de\u30fc\u30b5\u30dd\u30fc\u30c8\u30b7\u30b9\u30c6\u30e0\u3002EC\u3001\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u30aa\u30fc\u30c8\u30e1\u30fc\u30b7\u30e7\u30f3\u3068\u304b\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306e\u30b7\u30b9\u30c6\u30e0\u3042\u308b\u3051\u3069\u3001\u7121\u6599\u3068\u3044\u3046\u70b9\u4ee5\u5916\u3067\u306f\u3001\u306a\u304b\u306a\u304b\u72ec\u81ea\u62e1\u5f35\u3082\u96e3\u3057\u3044\u3057\u3001\u6d3b\u7528\u304c\u96e3\u3057\u3044\u3002\u3002\u30b5\u30fc\u30d0\u306e\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u3082\u4efb\u305b\u3089\u308c\u2026 - https:\/\/t.co\/EeUuZ4wDxj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EeUuZ4wDxj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065765537333080064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"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,"user":{"id":14711726,"id_str":"14711726","name":"\u305f\u304c\u307f\u3064","screen_name":"tagackt","location":"\u4e0b\u753a - ,Tokyo, Japan","description":"\u9152\u98f2\u7cfb\u7537\u5b50\u3002\u98df\u3079\u6b69\u304d\u3001\u5bb6\u98f2\u307f\u3001\u98df\u6750\u63a2\u3057\u3001\u9152\u5c4b\u3081\u3050\u308a\u306a\u3069\u98f2\u98df\u30e1\u30a4\u30f3\u3002\u30d6\u30ed\u30b0\u306b\u66f8\u3044\u305f\u98f2\u98df\u5e97\u306f400\u5e97\u8217\u307b\u3069\u3002\r\n\u65e5\u672c\u91523800\u7a2e\u3001\u713c\u914e800\u7a2e\u306e\u4e00\u89a7\u304b\u3089\u691c\u7d22\u3057\u3001\u5473\u3001\u9999\u308a\u3001\u30e1\u30e2\u7b49\u306e\u8a55\u4fa1\u3092\u8a18\u9332\u3067\u304d\u308b\u30a2\u30d7\u30ea - \u9152\u697d \u3092\u30ea\u30ea\u30fc\u30b9\u3057\u307e\u3057\u305f\u3002Twitter\u9023\u643a\u5bfe\u5fdc\uff011\u4e07\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u9054\u6210 - http:\/\/t.co\/MPzqEon","url":"http:\/\/t.co\/WxNh0gzqJE","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/WxNh0gzqJE","expanded_url":"http:\/\/www.example.net\/blog\/","display_url":"example.net\/blog\/","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/MPzqEon","expanded_url":"http:\/\/bit.ly\/qWgJhu","display_url":"bit.ly\/qWgJhu","indices":[135,154]}]}},"protected":false,"followers_count":898,"friends_count":912,"listed_count":32,"created_at":"Fri - May 09 10:06:07 +0000 2008","favourites_count":3872,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20415,"lang":"ja","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\/544701031771164674\/9EszjZW4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544701031771164674\/9EszjZW4_normal.png","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"created_at":"Thu - Nov 22 19:39:50 +0000 2018","id":1065691345447211008,"id_str":"1065691345447211008","text":"@wrf42 - Hab ich schonmal bei Kunden zum Spielen gesehen, denen ich dann RT eingerichtet - habe ;-)\n\nBei Zammad warte i\u2026 https:\/\/t.co\/5sksNpRjSY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wrf42","name":"Falk - Stern","id":19840431,"id_str":"19840431","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/5sksNpRjSY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065691345447211008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1065690447354445826,"in_reply_to_status_id_str":"1065690447354445826","in_reply_to_user_id":19840431,"in_reply_to_user_id_str":"19840431","in_reply_to_screen_name":"wrf42","user":{"id":118674790,"id_str":"118674790","name":"Michael - Smith","screen_name":"example","location":"Somewhere, Germany","description":"A - taste of #austria in lovely #nuremberg. @example, @example, #lego, #drageekeksi, - #perryrhodan and more.","url":"https:\/\/t.co\/9bqAc15vHA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9bqAc15vHA","expanded_url":"https:\/\/example.com\/example\/atasteofexample","display_url":"example.com\/example\/atast\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1345,"friends_count":404,"listed_count":182,"created_at":"Mon - Mar 01 12:24:00 +0000 2010","favourites_count":29311,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41488,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/993875791921516544\/KxtPpRLJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/993875791921516544\/KxtPpRLJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118674790\/1530637123","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":true,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Thu - Nov 22 19:36:16 +0000 2018","id":1065690447354445826,"id_str":"1065690447354445826","text":"@example - Ich w\u00fcrde mir aktuell Zammad angucken.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"example","name":"Michael - Smith","id":118674790,"id_str":"118674790","indices":[0,9]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for - i\u039fS\u003c\/a\u003e","in_reply_to_status_id":1065689418353307648,"in_reply_to_status_id_str":"1065689418353307648","in_reply_to_user_id":118674790,"in_reply_to_user_id_str":"118674790","in_reply_to_screen_name":"example","user":{"id":19840431,"id_str":"19840431","name":"Falk - Stern","screen_name":"wrf42","location":"ZZ9 Plural Z Alpha, Third Rock from - the Central Star","description":"I \u2665 IP packets \u2022 @example_ort \u2022 - opinions are my own \u2022 DM7FS \u2022 https:\/\/t.co\/KuzUv395IN","url":"https:\/\/t.co\/e7or64Jxh7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/e7or64Jxh7","expanded_url":"http:\/\/pants.fourecks.de\/","display_url":"pants.fourecks.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/KuzUv395IN","expanded_url":"http:\/\/tools.ietf.org\/html\/rfc1925","display_url":"tools.ietf.org\/html\/rfc1925","indices":[62,85]}]}},"protected":false,"followers_count":584,"friends_count":485,"listed_count":21,"created_at":"Sun - Feb 01 00:58:25 +0000 2009","favourites_count":1543,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12886,"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\/608727351455809536\/JHaWzvF6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608727351455809536\/JHaWzvF6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19840431\/1499724219","profile_link_color":"33178F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Thu - Nov 22 17:16:54 +0000 2018","id":1065655371375747075,"id_str":"1065655371375747075","text":"@idreesexample - @IExample Haram Kha Kha K Aisa Hota Hy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idreesexample","name":"Imran - Khan","id":705679307683864576,"id_str":"705679307683864576","indices":[0,15]},{"screen_name":"IExample","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[16,29]}],"urls":[]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1065643822095446016,"in_reply_to_status_id_str":"1065643822095446016","in_reply_to_user_id":705679307683864576,"in_reply_to_user_id_str":"705679307683864576","in_reply_to_screen_name":"idreesexample","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},{"created_at":"Thu - Nov 22 17:03:35 +0000 2018","id":1065652021011931137,"id_str":"1065652021011931137","text":"Hallo - Berliner bubble.\nKennt jemand von euch die Zammad Leute?\nLaut Impressum - sitzen die mit im @clubdiscordia Geb\u00e4ude ... ^^","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"clubdiscordia","name":"CCC - Berlin","id":2434248872,"id_str":"2434248872","indices":[96,110]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":737371663,"id_str":"737371663","name":"Thies - M\u00fcller","screen_name":"_td00_","location":"Zug zwischen BS - WOB - B - - HH","description":"nerd, hacker, ccc, punk, veggie, antifa, @33logistic, - @TundTeskalation, @cymoshow | Threema: 3JXMZUEJ |","url":"https:\/\/t.co\/pFa1ZF51pM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pFa1ZF51pM","expanded_url":"https:\/\/td00.de","display_url":"td00.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1336,"friends_count":941,"listed_count":54,"created_at":"Sat - Aug 04 20:33:10 +0000 2012","favourites_count":23290,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30199,"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\/862655866327240704\/WtPq3dQv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/862655866327240704\/WtPq3dQv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/737371663\/1470086891","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Thu - Nov 22 07:16:13 +0000 2018","id":1065504204805033984,"id_str":"1065504204805033984","text":"@tamexample - But over at Mastodon we don''t have a Zammad integration for all our LOC Members - ;)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tamexample","name":"(\u0e07 - \u0e37\u25bf \u0e37)\u0e27","id":354796681,"id_str":"354796681","indices":[0,8]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1065502326222479360,"in_reply_to_status_id_str":"1065502326222479360","in_reply_to_user_id":354796681,"in_reply_to_user_id_str":"354796681","in_reply_to_screen_name":"tamexample","user":{"id":811173206887460868,"id_str":"811173206887460868","name":"CCC - Event Logistics","screen_name":"33logistic","location":"Fair Leipzig Hall - H.. I meen 4","description":"Logistics for Chaos Events. Currently planning - an awesome #35c3 in Leipzig 35c3@example.de","url":"https:\/\/t.co\/g2YFZuZZsj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2YFZuZZsj","expanded_url":"https:\/\/example.de","display_url":"example.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2198,"friends_count":56,"listed_count":49,"created_at":"Tue - Dec 20 11:35:38 +0000 2016","favourites_count":170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":370,"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\/1064967265177792513\/muZEe7g0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064967265177792513\/muZEe7g0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811173206887460868\/1542742947","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.084,"max_id":1069265077583400960,"max_id_str":"1069265077583400960","query":"zammad","refresh_url":"?since_id=1069265077583400960&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:52 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:52 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAIABYACgApACphY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAADBAEFBgcCAP/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf/aAAwDAQACEAMQAAABb1eS2hPP1SVWS6Pacst9Z6MNNu7Tp6jn8Tfu5bxxq5Yzh0tYrTjze31HL9H1lJi+l52yqH0hrO+YMWFphOPU2i93XWdwpKTB0JTTTLe1iefx+2lvalryGRx4KOnMhiiqKErUkAcZ/lCoZleSieolP//EACYQAAEEAgICAQQDAAAAAAAAAAIAAQMEERMFEiExBhQVIiMyM0H/2gAIAQEAAQUC+N+IZCaOO/YCwTTGBw3oZBDBr0iJTyBEH3SivjHRo+jMrglFMJGBObSNRsnWVSb6iJ2dc/yDCG0Vw1s6it8pJiO1I63RTi7gLvLGT1eQaq1S9FZDn7W6z5UZ4TuJPtZSmUZFP1DcLqueweHrwBNyTBFa2ooT1N20OD9QreLMfVhHq1UcH0dyNiE/3rjzraZxpzhdARm1BFLagrkuJrRFPylWOOLh/wC6SaMo8oJZcZkJ9eX/AGrBLWKOACTRDGnORbZkxsmNk0q2rYuzrssrKymyyy6/HIvlM67IX8ZWMrqyb23pkyH238Q9P6/1f//EAB4RAAMAAgEFAAAAAAAAAAAAAAABEQIQIQMSE0FR/9oACAEDAQE/ARogh5FLqkGkQxwrh4+TDpLL2d+X0rOSsr1NQh//xAAfEQACAgIDAAMAAAAAAAAAAAAAAQIRAzEQEiETQUL/2gAIAQIBAT8BxyqI5WyOZ6fDk/ot6Pj9sWJ7MWT8vY50Uq2OZHJR1fYmqZbPT0U5HeXFFFFH/8QAKxAAAQMCBQMEAQUAAAAAAAAAAQACERIhAxAiMUEzUYEgMmGRQhMjoaLB/9oACAEBAAY/AnNqBEyEXnhTFP8AqaZ2utRod2VjOZfiODWjldb+pTtTnYnLYVeJc8DsnQKpvPEKp2HKtVVyrkxCqGRwMM/D7Lf+Feb9k5rjJPxshWSUNVEbokW+VxdVGXTYhSDSdoKfh4eGwgGAQ2+QJaQIjdVv2+E02F7L9y3y3lNA1X/IotDr9yqMRrTUPcF+o7E9vB5TwxjYmbBdN6NMabzKlzTT3WgSIu0lOFUgfj2UN9seVTEO7Kt9zFlpcQObotYXOHddPEQu2Te6dgmjwqcFoaHGLJwLagRwE4Ych3bhOGM2adkx2DhxNytXBUNdls1TpHhTb6XXI8K+JOV3O+1pe4eV1nrrHPY/WfHq2lX3z3y39BXnLzkUM//EACUQAQACAgICAQQDAQAAAAAAAAEAESFBMWFRcYEQkaHwILHxwf/aAAgBAQABPyEZ8KFZqO6ANxFTRNte1kL2uhuX09imlDySwURHE5C4L6MFfwvC93HJz4T077hQxXNhoS+zTI4viU868LqDNpY+4YG3dNyldTNDzYX99ztQ55BysrvzMpt/xga3BewjfGsQYL0zUstO4ozvquYCW3o1iDiq5WV6m0hMPz95fb7RF2iiJL9PgxfSCXCce2YzLNBVTqasRezqc0VwvfknhCvKPmLbzibjuBHBLgOMz9BDsBa2kgFsOhEMBbcR11OCPKcOh3ENFXJz6dRlDB6XL5XCD/2W1yLRwJrNZPP0XNNH7kqRWeAyuDBMiocEYLJHd0HC0ZEQV5Iby5Tx2xIVY9kQAV8E+X2hKs0jI6gqtSNxT/Ci+hhvHMubt+MQbN1zn4i4Dg/FP88lTlqCzbBxEC+cw6zvhbuN81ccvHuV/SLkWCHL5QRgPlB2a7xD0/mVRq3qZGa9x0uw4Kv+PT0+g/tf7+sJ9P8A/9oADAMBAAIAAwAAABAj8sZC2kAcDMewalTXgqCrPchn/8QAHBEBAQEAAgMBAAAAAAAAAAAAAREAEEEhMVFh/9oACAEDAQE/EApq6Llcww1BhDquHZn61Uw2ecgB97ocBWMsRw+nC/e/fBXMF5Am/8QAGxEBAQEBAAMBAAAAAAAAAAAAAQARIRAxUUH/2gAIAQIBAT8QwdujvZLCHu35Q3XqRw4zXS7MosRZm3somTjYEZwqyfSX5k0YD9j7SHhnsjw//8QAJhABAAICAQMDBQEBAAAAAAAAAREhADFBUWFxkaGxEIHB4fDR8f/aAAgBAQABPxCGHI0JPmxO2TTrTKJ4KF9BceqRQFbByHSB9+zr1QJG36ciD0X6Y4xtPPUk65rmsGhgbHlsB27vbO1/jtiSgQJRRAjRtlYhu8LAaYCvkDuHK3iNYFX1g1dF6lAyRtthDahKntgRKVzXRY05NckCjAdLxzgR4RgGTmOmCmgujnCTsooEMQKV4Z/3mP0LgEySKSDiHjV481OyNEjrFNp8YpPgYIglAmaH84fESnDIkHmq851ADYFxPuRkxVCCNflpnILwzKYI27M126rAnaFIwQQd9YWEd1RzE3nY9b/MTfnJ5gY79O28DCzlXIHUtj5xikyQAeUtZubquMeCCeLlePgnEZIVFISwl3Fz0xZaCZUhVo4qZ2bwbLs4JREGY+5O8Ke4dGGgIuniKnAhtA6BKtjPiPpU9iAJjLpvfTBSUaSLqh/t4pQKS0kQgpfPMcYiWL0856BEYdq4RITXQvWsPGckyc0nSLo840xEVE/tMYw0BAEElNS3rtkcdNglL1PTlyP3P3kr4Xqoq74yVnsSIdwhUxGCJdQslm3mYbhvnIQ8WkNEkGAE0ISsLhip81haCXZImbSa/JebPVnw2dPbIJ0tWiFvWo47OBI0QUmx6Z5evkgp1KI+2OFgQtqdJbjFKLCjD1vBZSdgIvriSLkCksaBvKRepiwCSQxx0icvHzU+AQ5934z+2/GFCJwgw6Pgi3CqbKnh5wooLQpOJYqH7/jLZCONrhSs/GQ5IaIQy1P2cs7OYoWRuATCAkqVzKAomBTkogDwOTIn42cuzCpA30zyxoWekxgsuAUDX7yQpid6zwe2bfB9Nq+XyZr5Py5p8c0YvYHxnu8+f/Pp/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:52 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1068958852887076864.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="83003a1356235c21998dbe47bd20e034", - oauth_signature="KtBt4mbxUM9pQeEHXi%2BywugYuqk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795853", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2355' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:53 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585310255274; Expires=Wed, 02 Dec 2020 00:10:53 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_tve4fbtcMRfmm6dmnmXedg=="; Expires=Wed, 02 Dec 2020 - 00:10:53 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 0aca1694790d2c9d90f420c87ceeb2e4 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '899' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '143' - X-Transaction: - - 0050ed090033b705 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Sat Dec 01 20:03:45 +0000 2018","id":1068958852887076864,"id_str":"1068958852887076864","text":"@Example1 - You really loved him that you are so jealous of his new wife and you never - stop discussing him on twitter. Aww","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Example1","name":"Reham - Khan","id":298959564,"id_str":"298959564","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","in_reply_to_status_id":1068949846399348736,"in_reply_to_status_id_str":"1068949846399348736","in_reply_to_user_id":298959564,"in_reply_to_user_id_str":"298959564","in_reply_to_screen_name":"Example1","user":{"id":2176345957,"id_str":"2176345957","name":"Zarghuna - Bukhari","screen_name":"pexample","location":"Karachi.","description":"Clinical - Dietitian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":656,"friends_count":566,"listed_count":0,"created_at":"Tue - Nov 05 15:57:29 +0000 2013","favourites_count":3792,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2112,"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\/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\/1066314737775009794\/Fc_8OEzy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1066314737775009794\/Fc_8OEzy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2176345957\/1529427197","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":357,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Karachi.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1066314737775009794/Fc_8OEzy_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Last-Modified: - - Sat, 24 Nov 2018 12:54:59 GMT - Server: - - ECS (fcn/40DB) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1066314737775009794 - X-Cache: - - MISS - X-Connection-Hash: - - d1053032a71c65d102c5cc884127ef48 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '191' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Karachi.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1068949846399348736.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bb5275ca035610773ca6172601e35be6", - oauth_signature="yk2RDPjsEnljxqdWfmCOjS01ylg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795854", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2907' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:53 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585387409625; Max-Age=63072000; Expires=Wed, 2 Dec 2020 - 00:10:53 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_knKHpiHKorVFVQc/tXSXPg=="; Max-Age=63072000; Expires=Wed, - 2 Dec 2020 00:10:53 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - a72aa0752b65d266b89d5305c790ae2c - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '898' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '136' - X-Transaction: - - '0086ab1e00028706' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Sat Dec 01 19:27:58 +0000 2018","id":1068949846399348736,"id_str":"1068949846399348736","text":"Ok - peeps it''s bad enough that PTI troll me but now I am getting criticism for - marrying a man who can give a chicken\u2026 https:\/\/t.co\/xitRHiP15a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xitRHiP15a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068949846399348736","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,"user":{"id":298959564,"id_str":"298959564","name":"Reham - Khan","screen_name":"Example1","location":"Pakistan","description":"Contact - @BilalAzmat7 \n00923358100642\n\n\nThe views expressed here are mine and mine - alone. Devoted to improving lives \nhttps:\/\/t.co\/uPjPh2Na5n","url":"https:\/\/t.co\/YcOsNIC1KJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YcOsNIC1KJ","expanded_url":"http:\/\/RehamKhanofficial.com","display_url":"RehamKhanofficial.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/uPjPh2Na5n","expanded_url":"https:\/\/m.facebook.com\/OfficialRehamKhan\/","display_url":"m.facebook.com\/OfficialRehamK\u2026","indices":[117,140]}]}},"protected":false,"followers_count":2100022,"friends_count":755,"listed_count":843,"created_at":"Sun - May 15 07:51:06 +0000 2011","favourites_count":5369,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":62211,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1055415764252065792\/pYl_QxzD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1055415764252065792\/pYl_QxzD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298959564\/1540465552","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"280C52","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":399,"favorite_count":3343,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1055415764252065792/pYl_QxzD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Last-Modified: - - Thu, 25 Oct 2018 11:06:21 GMT - Server: - - ECS (fcn/41AB) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1055415764252065792 - X-Cache: - - HIT - X-Connection-Hash: - - 808c63dfece900392e65f5f9b1cad8bf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '140' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Traverse%20City,%20MI&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/982030415094575107/uoPHSILZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Last-Modified: - - Thu, 05 Apr 2018 22:59:10 GMT - Server: - - ECS (fcn/41D8) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/982030415094575107 - X-Cache: - - MISS - X-Connection-Hash: - - a8f29c6a5aeec40b4efbc68ef5c3c6d8 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '145' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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RkSsDA713PxHN15YbuGXHPN4jgqOHMJNdZqawBmugSfS/wATDITyMfFek0y10FbYiGSFnqKxBBRQKEYA4dTOjBMlq1uFO9WPMEdGge8zwtqO1ZjdexCvmVwDqp0KrqbT+cg3VpZqo29jHrM222GEKsoDJ2ce00+jKNchz9Y1JFcRV16GW3BEJyUA66zWzGDJ6zV4wLhOadvh3na/TpHKUnlXRDbPoRA1zhSDcFY1bDuuYRVeWWVWG9tejZpDuktbFtKGHmWcAyCZek1Xah2hhZ65jFkC0BnfLxtiW9YuMqIaNprq7nlFG8COI1a2JXNecD+o1I9InXLCs1SVZWnNvpUowA1QQ1gxPSYQVprxAkVNWcvk2u5mEurpo73ciRsFTt0OPlEr20AYZUEXlHCdjcFWGI55loeo4io0TeVdJ7wYQM+0nvfyz2T5J9hwT7Xlmv4mt9cT3pNaanf/AD//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Traverse%20City,%20MI&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1062817263106039814.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="756b2ebc88106059e7afdec3979455ed", - oauth_signature="KYRdmzJiODGS%2BYqqmYUPhwq2Fwc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2598' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585507600301; Expires=Wed, 02 Dec 2020 00:10:55 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_8guDTBlmE5OSoyD5jx8HdQ=="; Expires=Wed, 02 Dec 2020 - 00:10:55 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b50ff4d156e5021b098336827d4ee458 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '897' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '141' - X-Transaction: - - 00de0542001e5721 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Wed Nov 14 21:19:16 +0000 2018","id":1062817263106039814,"id_str":"1062817263106039814","text":"@AExample - @TGExample You need to have more followers bro","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AExample","name":"ahad","id":2320914337,"id_str":"2320914337","indices":[0,8]},{"screen_name":"TGExample","name":"Twitter - Gaming","id":3873936134,"id_str":"3873936134","indices":[9,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1062799096749031424,"in_reply_to_status_id_str":"1062799096749031424","in_reply_to_user_id":2320914337,"in_reply_to_user_id_str":"2320914337","in_reply_to_screen_name":"AExample","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAIABYACgApACphY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAADBAEFBgcCAP/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf/aAAwDAQACEAMQAAABb1eS2hPP1SVWS6Pacst9Z6MNNu7Tp6jn8Tfu5bxxq5Yzh0tYrTjze31HL9H1lJi+l52yqH0hrO+YMWFphOPU2i93XWdwpKTB0JTTTLe1iefx+2lvalryGRx4KOnMhiiqKErUkAcZ/lCoZleSieolP//EACYQAAEEAgICAQQDAAAAAAAAAAIAAQMEERMFEiExBhQVIiMyM0H/2gAIAQEAAQUC+N+IZCaOO/YCwTTGBw3oZBDBr0iJTyBEH3SivjHRo+jMrglFMJGBObSNRsnWVSb6iJ2dc/yDCG0Vw1s6it8pJiO1I63RTi7gLvLGT1eQaq1S9FZDn7W6z5UZ4TuJPtZSmUZFP1DcLqueweHrwBNyTBFa2ooT1N20OD9QreLMfVhHq1UcH0dyNiE/3rjzraZxpzhdARm1BFLagrkuJrRFPylWOOLh/wC6SaMo8oJZcZkJ9eX/AGrBLWKOACTRDGnORbZkxsmNk0q2rYuzrssrKymyyy6/HIvlM67IX8ZWMrqyb23pkyH238Q9P6/1f//EAB4RAAMAAgEFAAAAAAAAAAAAAAABEQIQIQMSE0FR/9oACAEDAQE/ARogh5FLqkGkQxwrh4+TDpLL2d+X0rOSsr1NQh//xAAfEQACAgIDAAMAAAAAAAAAAAAAAQIRAzEQEiETQUL/2gAIAQIBAT8BxyqI5WyOZ6fDk/ot6Pj9sWJ7MWT8vY50Uq2OZHJR1fYmqZbPT0U5HeXFFFFH/8QAKxAAAQMCBQMEAQUAAAAAAAAAAQACERIhAxAiMUEzUYEgMmGRQhMjoaLB/9oACAEBAAY/AnNqBEyEXnhTFP8AqaZ2utRod2VjOZfiODWjldb+pTtTnYnLYVeJc8DsnQKpvPEKp2HKtVVyrkxCqGRwMM/D7Lf+Feb9k5rjJPxshWSUNVEbokW+VxdVGXTYhSDSdoKfh4eGwgGAQ2+QJaQIjdVv2+E02F7L9y3y3lNA1X/IotDr9yqMRrTUPcF+o7E9vB5TwxjYmbBdN6NMabzKlzTT3WgSIu0lOFUgfj2UN9seVTEO7Kt9zFlpcQObotYXOHddPEQu2Te6dgmjwqcFoaHGLJwLagRwE4Ych3bhOGM2adkx2DhxNytXBUNdls1TpHhTb6XXI8K+JOV3O+1pe4eV1nrrHPY/WfHq2lX3z3y39BXnLzkUM//EACUQAQACAgICAQQDAQAAAAAAAAEAESFBMWFRcYEQkaHwILHxwf/aAAgBAQABPyEZ8KFZqO6ANxFTRNte1kL2uhuX09imlDySwURHE5C4L6MFfwvC93HJz4T077hQxXNhoS+zTI4viU868LqDNpY+4YG3dNyldTNDzYX99ztQ55BysrvzMpt/xga3BewjfGsQYL0zUstO4ozvquYCW3o1iDiq5WV6m0hMPz95fb7RF2iiJL9PgxfSCXCce2YzLNBVTqasRezqc0VwvfknhCvKPmLbzibjuBHBLgOMz9BDsBa2kgFsOhEMBbcR11OCPKcOh3ENFXJz6dRlDB6XL5XCD/2W1yLRwJrNZPP0XNNH7kqRWeAyuDBMiocEYLJHd0HC0ZEQV5Iby5Tx2xIVY9kQAV8E+X2hKs0jI6gqtSNxT/Ci+hhvHMubt+MQbN1zn4i4Dg/FP88lTlqCzbBxEC+cw6zvhbuN81ccvHuV/SLkWCHL5QRgPlB2a7xD0/mVRq3qZGa9x0uw4Kv+PT0+g/tf7+sJ9P8A/9oADAMBAAIAAwAAABAj8sZC2kAcDMewalTXgqCrPchn/8QAHBEBAQEAAgMBAAAAAAAAAAAAAREAEEEhMVFh/9oACAEDAQE/EApq6Llcww1BhDquHZn61Uw2ecgB97ocBWMsRw+nC/e/fBXMF5Am/8QAGxEBAQEBAAMBAAAAAAAAAAAAAQARIRAxUUH/2gAIAQIBAT8QwdujvZLCHu35Q3XqRw4zXS7MosRZm3somTjYEZwqyfSX5k0YD9j7SHhnsjw//8QAJhABAAICAQMDBQEBAAAAAAAAAREhADFBUWFxkaGxEIHB4fDR8f/aAAgBAQABPxCGHI0JPmxO2TTrTKJ4KF9BceqRQFbByHSB9+zr1QJG36ciD0X6Y4xtPPUk65rmsGhgbHlsB27vbO1/jtiSgQJRRAjRtlYhu8LAaYCvkDuHK3iNYFX1g1dF6lAyRtthDahKntgRKVzXRY05NckCjAdLxzgR4RgGTmOmCmgujnCTsooEMQKV4Z/3mP0LgEySKSDiHjV481OyNEjrFNp8YpPgYIglAmaH84fESnDIkHmq851ADYFxPuRkxVCCNflpnILwzKYI27M126rAnaFIwQQd9YWEd1RzE3nY9b/MTfnJ5gY79O28DCzlXIHUtj5xikyQAeUtZubquMeCCeLlePgnEZIVFISwl3Fz0xZaCZUhVo4qZ2bwbLs4JREGY+5O8Ke4dGGgIuniKnAhtA6BKtjPiPpU9iAJjLpvfTBSUaSLqh/t4pQKS0kQgpfPMcYiWL0856BEYdq4RITXQvWsPGckyc0nSLo840xEVE/tMYw0BAEElNS3rtkcdNglL1PTlyP3P3kr4Xqoq74yVnsSIdwhUxGCJdQslm3mYbhvnIQ8WkNEkGAE0ISsLhip81haCXZImbSa/JebPVnw2dPbIJ0tWiFvWo47OBI0QUmx6Z5evkgp1KI+2OFgQtqdJbjFKLCjD1vBZSdgIvriSLkCksaBvKRepiwCSQxx0icvHzU+AQ5934z+2/GFCJwgw6Pgi3CqbKnh5wooLQpOJYqH7/jLZCONrhSs/GQ5IaIQy1P2cs7OYoWRuATCAkqVzKAomBTkogDwOTIn42cuzCpA30zyxoWekxgsuAUDX7yQpid6zwe2bfB9Nq+XyZr5Py5p8c0YvYHxnu8+f/Pp/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1062799096749031424.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="de1e719ccd92c862ad99062c09332301", - oauth_signature="ueto3kSV%2BcRxu%2FXOod5N4CqW%2BNk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2596' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585547654686; Expires=Wed, 02 Dec 2020 00:10:55 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_vE3KYlQSKbNBX+m+Em8D5g=="; Expires=Wed, 02 Dec 2020 - 00:10:55 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 193e4e272a3ec2647220df5535a8a098 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '896' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '153' - X-Transaction: - - '0029f10c008a780f' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Wed Nov 14 20:07:05 +0000 2018","id":1062799096749031424,"id_str":"1062799096749031424","text":"@TGExample - can u guys verify me please","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TGExample","name":"Twitter - Gaming","id":3873936134,"id_str":"3873936134","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1062798995955703808,"in_reply_to_status_id_str":"1062798995955703808","in_reply_to_user_id":3873936134,"in_reply_to_user_id_str":"3873936134","in_reply_to_screen_name":"TGExample","user":{"id":2320914337,"id_str":"2320914337","name":"ahad","screen_name":"AExample","location":"LA - \u2022 Snap: a.had","description":"\u2022 Broadcaster, Genius, Rated #1 in - female focus groups \u2022 Powered by @geexample \u2022 @hexample \u2022 - Ahad@example.com","url":"https:\/\/t.co\/eA5JmgDflb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eA5JmgDflb","expanded_url":"http:\/\/twitch.tv\/ahad","display_url":"twitch.tv\/ahad","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3189,"friends_count":836,"listed_count":58,"created_at":"Fri - Jan 31 14:48:00 +0000 2014","favourites_count":28259,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":69735,"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\/1069123511833178112\/V3XTG_GW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069123511833178112\/V3XTG_GW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320914337\/1504212204","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=LA%20%E2%80%A2%20Snap:%20a.had&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1069123511833178112/V3XTG_GW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Last-Modified: - - Sun, 02 Dec 2018 06:56:03 GMT - Server: - - ECS (fcn/40F9) - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1069123511833178112 - X-Cache: - - MISS - X-Connection-Hash: - - 2bacb280b040a042cb3d27f7abbe8427 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '135' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAMAAIABgA6AANhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAACAgMBAQAAAAAAAAAAAAAFBgMEAQIHCAD/xAAZAQADAQEBAAAAAAAAAAAAAAACAwQFAQD/2gAMAwEAAhADEAAAARVkvSUdpS6ZzbxBB3XVddCLrapVQ9+Kgj8VXF5sfOUa+pn59Bedonwh4ciei/OVef3FqTXOR/GM7/PTOOLjU2nWAfQS9187eguR2Z7078wPcEBRv0qkwmafSI61GuOpT1syzDi/PlzDlqCI2zYBjLJKGydkEL2g1sQnHtguaRZbx7//xAApEAABBAECBAUFAAAAAAAAAAADAAECBAUREgYTFTEQFCEyQiIjJTVB/9oACAEBAAEFAp4O+NVsJaK74c1IdjKOMh7RDp2ZO3hiH1xavZjnSqXzsbJXom4fw9AZYvRqkhkMPFnLGcHXD77sOn10C7RkLaauEBw1A373mXpX9mVxV7VcLvrhl8VWJsHVf7dBmbIldhq7XpPWZcIPriF8UCG5o3ShfEE0v27h7ROTycIy4Ml+N1TN6GZ2Hj4tAGQr7yY6sOnWqWJPMZgdOLRrMXFWenj6wRTgzqQtH1mJ8frJE1muSybkjRHg84eBJaDI/qAcjzBQF5UhZM7WN05a7nfWLdlL0Q2kq4uSDqdsUcgdyyrv9b+O9E7UP2h+z9y+yt7/AOKfZf/EAB4RAAICAgMBAQAAAAAAAAAAAAECAAMSMRARIQRB/9oACAEDAQE/AepWjOcRLPica9h8g1x84VlEeyypsQe5aDl7F1xgwrBWYhPW3L6yD3FcAcfOSvp1HvRdy23P84rXNgssRQAIxyPfAHc//8QAHxEAAgEEAwEBAAAAAAAAAAAAAQIAAxESMQQQITJB/9oACAECAQE/AcoxCi5ichTB7DvqoSIFVxeU9R/qBSZcZEGZZeDUotfyPSYnrkkHwbiUmbUpU8P3qo2KkwEk3MVQosOma0//xAAwEAABAwIEBAQEBwAAAAAAAAABAAIRAyEEEhMxECBhcSIyQUIjM5GhUWJjcnOBgv/aAAgBAQAGPwLxCmP9qNSkP7Tq76rHDaAow8GPcUdV0z0VuOGP6Y4fBmOoQdm26wsW8gNcBYAys9QTCyuphZsM7L0TmP3HDDft4WQLsxVanD9KdvVB2HrXiYNwm0WEVnvMZMsK+Gv/ACNVSvogtDZdleCeFHpI+/JWEbhZSVROVvm3i68RGTqsZjKdBmtoul4324Do93JUH5YWm7dUKxbmvLvEjSaPp6LFFtQu+C6fpwqD8KvCEQLGN15i6dygGCS7YLI4y73FZARSA3J9yq4dz/O0hx7p2m+oWTZOp0mhzXGfEvlMUXCjM5SPstZ3pso9ENIDuU7PUFxdTTENJtw3UncKCbKB6brxATlmyc11oRazaFPJkddrlpbuaYUe43K0YZUp7Cdwnmw7I9uUo9uR3bl//8QAJRAAAwACAgIBBAMBAAAAAAAAAAERITFBUWFxEIGhscGR0fHh/9oACAEBAAE/IVl+mD+cHYlXFgvknd2yMfQaviUnqN7jkq180EMy+HhwZLascGOWQWxYENzZCgVLWBE0mXYnbPGclR6/dkMPT0c4LUmMy2o3vpu+JRrBZiUx/od89r3hj13dVzB9xXT2mJbcTonk92Eg9BD5prn48iVlMYEDq1Ug3txf4EAsuyOi9Ez0ii1FosmmGLk8vkxAc5PVh5hkXX0Uaqtw32NV6Kdk/CL6Y2UyPSro4IFutXvkbStPIRYYrXb/AKGq0XNMsfUYc+q+lEkkxbVhn4H6PR/qs29nVhoT5bomjMc/8GRmWBfK9nR5yb7x5nE9ch6ZxhvSHqafBF2F7No1+seCAsLTIVbFhLm3sfw274q4YxwcVezMrJMaUGlcl8kq8Aif6HJl7y+iG82Pkx2RwPFRrUiyaCgdibRYsvRPx/sv4NR+82e/hEFs/N8f/9oADAMBAAIAAwAAABCym7A8DFwALlzNCkevLBpNJU5z/8QAIxEBAAICAQEJAAAAAAAAAAAAAQARITEQQVFxgZGhscHR4f/aAAgBAwEBPxCtQXtgdqCqmZiVKYKabdO5sQePzALrmuKEEln7gAxI8v2Xbp1e4RGMoXex3wy8veHrT1eBU6tQSmDUVVzv/8QAIBEAAwACAQQDAAAAAAAAAAAAAAERITFBEFFhkaGx4f/aAAgBAgEBPxCrk4ZGGag0GLGx0+xfFIMsEJkakspwNnel8i1ja9DC0iJaGEvIxn4G3a+ujVPCHrkFPUhOmOf/xAAmEAEAAgEEAQQCAwEAAAAAAAABABEhMUFRYXEQgZGhscHR8PHh/9oACAEBAAE/EKc7yfqUonsXwEGLdFuRm0qKHojTbRpudy2wqILWTQxFAZ53CacY1cK0o+J28fwV+vQyj0WBXx35iKYtkAZpZTM4k2Eecy6UrWwvDHZyvDZ7y1m1si8i6R2xqDfmF62XK2n1F6CPfdED4BpxdmKWZ6DmWb2FCXsCCpuJjXol+xh/0amPYMB3pvKEKG2HlJ7ytcKZNkfQNWvQa9t+EX8+jLwkHUxlPbatPygdgNTiW9JRLacdHLApL6NnKeOIYwXFmQmvAbRlHAmXf5wf3KcwK8GEo+ircK/8iaitBYHMU9G5lVC0VdHvMONXc7vntlJMIxq+0dfm5bwCZs/mtP8ADiD1rRRLCNBkXsw+wlievRwSvLJtbRDui9VocDb5jCytSyqAbVdBwQbKxGyBQXrrEsPAGeRrObzGAEKmwNFVivTcDnwH78azOlVZQfcTtbCGp3ulQA9etV1TwYjV6ahoVxAtuLQicpxE+fgAlNcLepHEouFDQVgtdxXU/wBKMQQs6Ibv3KWVBfReonUIUbG6AbeXQmb3cp1UAxTYqueYy8chomx2ZqUBcem17GxFWrdnN9SwFDd9x23ip5oqAQe3V7n8MXYYEMi5fxLtXu1w8GkA7krYDwam2S63hs2xpGsh1AV6hPuMaFYlGjRb94kWgjw/M/B/JP7vn6DX8x9nP6Hc1PE1PWf/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=LA%20%E2%80%A2%20Snap:%20a.had&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1062798995955703808.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4b3ceecc83d55c1b720580fb1e3d36db", - oauth_signature="sYaGT3aj%2BUSwTMuTWouWuQti3BQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795856", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2476' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:56 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585614243876; Expires=Wed, 02 Dec 2020 00:10:56 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_lM+inVTV113DsTcJA/sQmg=="; Expires=Wed, 02 Dec 2020 - 00:10:56 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - d8daee4172a3c150ee31a5e601e50889 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '895' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '141' - X-Transaction: - - 000f408d00289bc7 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Wed Nov 14 20:06:41 +0000 2018","id":1062798995955703808,"id_str":"1062798995955703808","text":"There - were some epic gaming conversations on Twitter this year, but we need your - help picking the best one!\n\nVote a\u2026 https:\/\/t.co\/1eyRCBiWzg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1eyRCBiWzg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1062798995955703808","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":3873936134,"id_str":"3873936134","name":"Twitter - Gaming","screen_name":"TGExample","location":"","description":"Tweet, - game, repeat.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":841546,"friends_count":1056,"listed_count":1725,"created_at":"Mon - Oct 12 22:08:01 +0000 2015","favourites_count":6538,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":4442,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1013681179025813504\/_NywdWqj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013681179025813504\/_NywdWqj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3873936134\/1529345989","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3950,"favorite_count":33354,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1013681179025813504/_NywdWqj_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Last-Modified: - - Mon, 02 Jul 2018 07:08:01 GMT - Server: - - ECS (fcn/41A4) - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1013681179025813504 - X-Cache: - - HIT - X-Connection-Hash: - - 1a24c50309f9ea89af5f0c4203e04ef0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '133' - Content-Length: - - '2083' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1068124600951803905.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9778307d17972ae3edc5b5d2a5530bb4", - oauth_signature="qf8Acv3oYLzER%2BF53HL%2F7xQfbvM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2990' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585701455131; Expires=Wed, 02 Dec 2020 00:10:57 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_LuEj3Vd26x60T6JSdjPcdA=="; Expires=Wed, 02 Dec 2020 - 00:10:57 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - aa970f6efb385fda115cc602701e2fb8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '894' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '140' - X-Transaction: - - '009ecb20005a891e' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 29 12:48:44 +0000 2018","id":1068124600951803905,"id_str":"1068124600951803905","text":"\u062d\u06a9\u0648\u0645\u062a - \u06a9\u06d2 \u0627\u0628 \u062a\u06a9 \u06a9\u06d2 \u0633\u0648 \u062f\u0646 - \u201c \u06a9\u06be\u0627\u06cc\u0627 \u067e\u06cc\u0627 \u06a9\u0686\u06be - \u0646\u06c1\u06cc\u06ba\u060c \u06af\u0644\u0627\u0633 \u062a\u0648\u0691\u0627 \u0628\u0627\u0631\u06c1 - \u0622\u0646\u06d2 \u201c \u06a9\u06d2 \u0633\u0648\u0627 \u06a9\u0686\u06be - \u0646\u06c1\u06cc\u06ba- \n\n\u062d\u06a9\u0648\u0645\u062a \u06a9\u06d2 - \u067e\u0627\u0633 \u0646\u06c1 \u0648\u0698\u0646 \u06be\u06d2 \u0646\u0627 - \u0627\u2026 https:\/\/t.co\/TpzlQvLp9a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TpzlQvLp9a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068124600951803905","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":1068124597814525952,"in_reply_to_status_id_str":"1068124597814525952","in_reply_to_user_id":497658491,"in_reply_to_user_id_str":"497658491","in_reply_to_screen_name":"example_org","user":{"id":497658491,"id_str":"497658491","name":"Example(N)","screen_name":"example_org","location":"Pakistan","description":"Official - Twitter account of Pakistan Muslim League (Nawaz)","url":"https:\/\/t.co\/nCK2EmNWqL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nCK2EmNWqL","expanded_url":"http:\/\/www.example.org","display_url":"example.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1047224,"friends_count":130,"listed_count":463,"created_at":"Mon - Feb 20 06:59:13 +0000 2012","favourites_count":1252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":31776,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0E6121","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1053235251139543040\/W4inys7x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053235251139543040\/W4inys7x_normal.jpg","profile_link_color":"10570C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":80,"favorited":false,"retweeted":false,"lang":"ur"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1053235251139543040/W4inys7x_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Last-Modified: - - Fri, 19 Oct 2018 10:41:46 GMT - Server: - - ECS (fcn/40AD) - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1053235251139543040 - X-Cache: - - HIT - X-Connection-Hash: - - 5de825e58409ca5545855a733e3d3777 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '130' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1068124597814525952.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7ff1412c085625c63956f13fee4a0066", - oauth_signature="XTJJazMUukMF7V0QJysnt0RIbV0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2941' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585750194787; Expires=Wed, 02 Dec 2020 00:10:57 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_6qvsKHjK1l3l2N5Iq7SYkA=="; Expires=Wed, 02 Dec 2020 - 00:10:57 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e07d8c42c796f07bada8a5fa5770c0a8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '893' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '149' - X-Transaction: - - 00176cd9006e0072 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 29 12:48:43 +0000 2018","id":1068124597814525952,"id_str":"1068124597814525952","text":"\u062d\u06a9\u0648\u0645\u062a - \u06a9\u06d2 \u0627\u0628\u062a\u062f\u0627\u0626\u06cc 100 \u062f\u0646 \u06a9\u06cc - \u062a\u0642\u0631\u06cc\u0628 \u0645\u06cc\u06ba \u0627\u06cc\u06a9 \u0628\u0627\u0631 - \u067e\u06be\u0631 \u201c \u06cc\u06c1 \u06a9\u0631\u06cc\u06ba \u06af\u06d2\u060c - \u0648\u06c1 \u06a9\u0631\u06cc\u06ba \u06af\u06d2 \u201c \u06a9\u0627 \u062e\u06cc\u0627\u0644\u06cc - \u067e\u0644\u0627\u0624 \u067e\u06a9\u0627\u06cc\u0627 \u06af\u06cc\u0627 - - \n\n\u0634\u06cc\u062e \u0686\u0644\u06cc \u062d\u06a9\u0648\u2026 https:\/\/t.co\/xSMOueeW3L","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xSMOueeW3L","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068124597814525952","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,"user":{"id":497658491,"id_str":"497658491","name":"Example(N)","screen_name":"example_org","location":"Pakistan","description":"Official - Twitter account of Pakistan Muslim League (Nawaz)","url":"https:\/\/t.co\/nCK2EmNWqL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nCK2EmNWqL","expanded_url":"http:\/\/www.example.org","display_url":"example.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1047224,"friends_count":130,"listed_count":463,"created_at":"Mon - Feb 20 06:59:13 +0000 2012","favourites_count":1252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":31776,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0E6121","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1053235251139543040\/W4inys7x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053235251139543040\/W4inys7x_normal.jpg","profile_link_color":"10570C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":235,"favorited":false,"retweeted":false,"lang":"ur"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1053235251139543040/W4inys7x_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Last-Modified: - - Fri, 19 Oct 2018 10:41:46 GMT - Server: - - ECS (fcn/40AD) - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1053235251139543040 - X-Cache: - - HIT - X-Connection-Hash: - - 5de825e58409ca5545855a733e3d3777 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '130' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:58 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:58 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:58 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/832141531255623681/D-mNs8yL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:58 GMT - Last-Modified: - - Thu, 16 Feb 2017 08:14:16 GMT - Server: - - ECS (fcn/40FB) - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/832141531255623681 - X-Cache: - - MISS - X-Connection-Hash: - - b367a765c588266efba85ef51055c42f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '262' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:59 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/915014575/zefanjas_new_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Mon, 03 Dec 2018 00:10:59 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (fcn/4192) - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/915014575 - X-Cache: - - MISS - X-Connection-Hash: - - 02c8d274cef9eb9f5d1a5e81be3ff498 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '379' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - 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TnHF93be/nPNsiAJiPWUXQbvVjZ7q2ob0jq0DWkd2oa0Dm1DWoe2Ia1D25DWoW1I61AT0vYnA9tLjcRf8xJuU1opidc5ERAYYBGY2+xG3WlKjKYGzBhV5oE3afXFQdu6BFwxnmUB+AUws+2ZVsgDjqty1RQzAvB/wAt6058f2lpKtvgvAM9092YXTWQVq3oJeAK4qO9xTkkqrgZ8W+HEYjXAcfJjOFlHVbkkQg74gEDxjjjzstGAYgPxgKeBv3cz+lboC05Yu4TbuxM3k22o2tNJ+YNAj3Ry+PldpgRQBXgK+EZgMqfUwsLE83FSL5i/jPSOUHSytUjtS8AVoAT0AVmax8W3FLAlD6xAAzgF/CvweBTIaYeIhfHngVW5yuLuBzGORVVcIxwAPgEcI7asMpDZ7K7dQkXEvucicBz4icLJopXF+Yzinf3fpYItTcP0fpyekZDQE8eIlIGhBFKWjjao7xg1v0KxCkyqMt3wpv1stofFieOpwv8PVHtnw2ykZRYAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTAtMDUtMjBUMDc6NDE6NDArMDA6MDA27VKsAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDEwLTA1LTIwVDA3OjQxOjQwKzAwOjAwR7DqEAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAASUVORK5CYIIgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Porto%20Velho,%20Brasil&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:59 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/932827443404197888/kFWnZpm2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:59 GMT - Last-Modified: - - Tue, 21 Nov 2017 04:24:08 GMT - Server: - - ECS (fcn/41A0) - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/932827443404197888 - X-Cache: - - HIT - X-Connection-Hash: - - cfe326e3b2e846e02b1c51666c7d483a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '282' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Porto%20Velho,%20Brasil&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:59 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/851468284230848517/HAmK9OTy_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Md5: - - UTnEYS8uGfA44+ycFWh1lA== - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Mon, 10 Apr 2017 16:11:53 GMT - Server: - - ECS (fcn/419D) - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/851468284230848517 - X-Cache: - - HIT - X-Connection-Hash: - - 31db5dca3ecf3841ffcf55f854b6ccb1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '141' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:01 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1066307515649003520.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="db0fdd3eedd9c9a4c4a7dea0f6dd3cc9", - oauth_signature="5OrIGadCeuoU%2BpDkNkUYviu0awo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795861", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2802' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:01 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:01 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586119920082; Expires=Wed, 02 Dec 2020 00:11:01 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_p7ip8mWYO9v16Fjh+pQ/Bw=="; Expires=Wed, 02 Dec 2020 - 00:11:01 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 579533a6444ca2172dd39b35ed0bc925 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '892' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '259' - X-Transaction: - - 00105f0300d5e5a7 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Sat Nov 24 12:28:17 +0000 2018","id":1066307515649003520,"id_str":"1066307515649003520","text":"@fexample - Twitter hat k\u00fcrzlich seine API umgestellt. Wir haben die n\u00f6tigen - \u00c4nderungen umgesetzt und rollen sie der\u2026 https:\/\/t.co\/m5YhRvu9TV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fexample","name":"fexample","id":280647844,"id_str":"280647844","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/m5YhRvu9TV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1066307515649003520","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1066298300649877504,"in_reply_to_status_id_str":"1066298300649877504","in_reply_to_user_id":280647844,"in_reply_to_user_id_str":"280647844","in_reply_to_screen_name":"fexample","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":514,"listed_count":20,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":441,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":true,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:01 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (fcn/41AF) - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - MISS - X-Connection-Hash: - - 37f65b8a5274e5073927dbe63ad53c32 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '454' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:02 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1066298300649877504.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="12ed1f52923c07c7a35ea78d2d177e7d", - oauth_signature="UEKkeqCiwZnRNZK2xL9yFh2jYLA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795862", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2500' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:02 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:02 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586236068908; Expires=Wed, 02 Dec 2020 00:11:02 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_OSXYuikjlVdq9R/LFc1Nlg=="; Expires=Wed, 02 Dec 2020 - 00:11:02 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 12744059e6a4d948288866180fa2fcbc - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '891' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '141' - X-Transaction: - - '0054282d0032faba' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Sat Nov 24 11:51:40 +0000 2018","id":1066298300649877504,"id_str":"1066298300649877504","text":"@zammadhq - Ist es im Moment eigentlich m\u00f6glich, Twitter DMs via Zammad zu Verwalten?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":280647844,"id_str":"280647844","name":"fexample","screen_name":"fexample","location":"Berlin","description":"ITler, - Autist und Podcaster |\nim CCC Umfeld aktiv | er\/he","url":"https:\/\/t.co\/lqrFmdOsAP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lqrFmdOsAP","expanded_url":"http:\/\/fexample.org","display_url":"fexample.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":701,"listed_count":20,"created_at":"Mon - Apr 11 19:18:56 +0000 2011","favourites_count":24752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13973,"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\/851468284230848517\/HAmK9OTy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851468284230848517\/HAmK9OTy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280647844\/1454753210","profile_link_color":"0F125C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:02 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:02 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/851468284230848517/HAmK9OTy_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Md5: - - UTnEYS8uGfA44+ycFWh1lA== - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:02 GMT - Last-Modified: - - Mon, 10 Apr 2017 16:11:53 GMT - Server: - - ECS (fcn/419D) - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/851468284230848517 - X-Cache: - - HIT - X-Connection-Hash: - - 31db5dca3ecf3841ffcf55f854b6ccb1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '141' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:02 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mexico&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:03 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/937091164951289856/tfIoqXYr_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:03 GMT - Last-Modified: - - Sat, 02 Dec 2017 22:46:38 GMT - Server: - - ECS (fcn/419F) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/937091164951289856 - X-Cache: - - HIT - X-Connection-Hash: - - f6081cc1378ce9866dd1a616a4e2dca4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '138' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mexico&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:03 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1052285678342438912/V6LP8BoX_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:03 GMT - Last-Modified: - - Tue, 16 Oct 2018 19:48:30 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1052285678342438912 - X-Cache: - - MISS - X-Connection-Hash: - - d83d3cbfeece2886f841bc349e83136e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '184' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAKABAAEwAyACFhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAABBAMBAAAAAAAAAAAAAAACAQQFBwADBgj/xAAYAQADAQEAAAAAAAAAAAAAAAAAAgMEAf/aAAwDAQACEAMQAAAB4yWvTU6UpHXrSS9YOuilMurm+hhXLykC1k62bmY/ApG6qP6SLuAcZdkmrN48XpBrtCzm3n5raV81nxkjOs7I888ybZic4TRfP6Eynpl41SIZwFCA7PO4NJWIG+ykTPQYaRUQJEUEJFOqqKCYmB//xAAmEAACAgEDAwMFAAAAAAAAAAACAwEEAAUREhAgIQYTQRQWIiMy/9oACAEBAAEFAmotwKtSNYFqNdmWzrEFdVmMmLyzrajMl8dZUssmtW2HYnp2yS/DUEg1FA5Ol2H/AAyBQSnKnPqFDEkDRpD7dTfsfMCizBSyuH7LiS5V1nEcWTZmtqQZxu5LlRhXaw5Y1WhCjJU2JP23g2TmZ5TURCvU+bRhXLTMmSzeMrOzc9xlnF7yAV3ra7Fb1JfDPujN/GTm/lDCjGvIhYzmUzgzm/WelZvCXtk585v037J756fPWez/xAAfEQACAgICAwEAAAAAAAAAAAAAAQIRAxIgIRATIjH/2gAIAQMBAT8BqRFNumeonDV+Y3uJujL+WzZH2YbUu2JmeV8N+h98/wD/xAAhEQACAgECBwAAAAAAAAAAAAAAARESAwIhEBMgIiMwUf/aAAgBAgEBPwHtHCUo5jNOqy4uKbkKTGvhVnjMlawkQYtuiu/o/8QAMhAAAQMBBQUFCAMAAAAAAAAAAQACEQMEEhMhMSAiQWFxECNRcoEUMDIzNDVA4VKho//aAAgBAQAGPwICpZ6gA8WoNdQ0EIYlF4jSCu4xS5x0K3JbKvX6krDtIun+WznTYfRZ2elHlVSrdiXGB4dkI5bw0VMnWI2XdEBKyK3iiAdUxuzUJ0DSjmU0T1W6rznGFTs9mF5z2Aw53HOVvWEu8rwV9vtH9L5jVnVCOI8FrsuqcaZmmfh6KYlE3dEA3isIEnDo8en77NFnaKvPNSahPZdPoplax6KWOIdOoXtDbS/FIguOa7zBrDmIK+j/ANf0oAgbAOqz3QuXD3EHRcvyf//EACQQAQACAgEDBAMBAAAAAAAAAAEAESExEEFRgSBhcaGRsfDR/9oACAEBAAE/Ie+iVIX1CtaOIsnLWPEtwyamiYWplZPIqtRgAKYAUeYsHCDufdQWX9gZqsNcWwFAvAR0ILojnQG1O88PGIeijZq36i1VVcqamOOxmNsaneKrfLCL53hk/ia/hdRLCp2l9dDokvIDQw0GaIKL4aOObP7v9QZWg3TcGuhD4yWWfIjJlXZ8JSCrpUHtDbO42ZKoJS42X3VgCewm0C50n1GGU+6xFdsCrKSO4PEPgxAOg1JkfaPtKCSdm/giwHqP2xP5rDqHsS5tCgrpDaK9J5IWUFaxQQHZ5ny+uBmXHf8A/U2P2kuwkbE7SkeByTbiqJ2hFl8OrOjl16X/2gAMAwEAAgADAAAAECMiZyAG7m+LRvydO+EU6vz6MpP/xAAhEQADAAAFBQEAAAAAAAAAAAAAAREQITFRgUFhcZHwwf/aAAgBAwEBPxBo0n3sV0T7wQ0lTIsVg1sZtMx3Adwb3pcN/o11uIN1LUkWdCCFOsZtWMmMEj//xAAgEQEBAQABAwUBAAAAAAAAAAABABEhEFGRIDFBgdHh/9oACAECAQE/EFfuPn+W/WCuXMQdOadxPCudIduwfC+D9mni+9kZZC2W2ymABlvo3p//xAAkEAEAAgICAgMAAgMAAAAAAAABABEhMUFhUXEQgaGxwZHR8f/aAAgBAQABPxC4ZoNFeU/IA2hYgUKpEHCrUkp9xSqVMBVKJmBVMcB/zKp7f3A1U2WmQPTj2YmBVNnET4lzQB9kKS93/eEGggq324rqDCnB2KgYAJd0t8QexUUWS2fBSnsemJHYtVW6PwI5b38kJ0jXwWuY3TvW7M39wlKeRlA7lEFWBZx1LQsSJ8owJ6fvzdU1K1gdyyhCz1eq6l59AQBXzieGJMNdsf0zxbXnUN7ZOMpmmlUEHsbz+U18FWFZSpHuoxqDVg1+xxpvxEqgV0y30NsXyPLUSlkoPRu/cTLQzFB5O5aeOXlWj+Ylug0XYXXaqZFg5n/JlibVPuV28zMGLyz7Fio2msAPs3+x4qR9iHCzqrsuhnNNY5RDUWrtGnEJdvyPosGT+Agtjo7fjf1KecGdzAcnvzAZ7bhylytdEYNWYKNkciDMm4z7C0P7e5rOGcBW4DK+cPrPwi/cqrxOUeby/wBStWA+yPg3iYikWLWGhJ1RZ3Lpc/BZRVrKJyscehFtXLqaS+ZSbRgQ5ht9/Fw9R0R4+P/ZIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAIABYACgApACphY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAADBAEFBgcCAP/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf/aAAwDAQACEAMQAAABb1eS2hPP1SVWS6Pacst9Z6MNNu7Tp6jn8Tfu5bxxq5Yzh0tYrTjze31HL9H1lJi+l52yqH0hrO+YMWFphOPU2i93XWdwpKTB0JTTTLe1iefx+2lvalryGRx4KOnMhiiqKErUkAcZ/lCoZleSieolP//EACYQAAEEAgICAQQDAAAAAAAAAAIAAQMEERMFEiExBhQVIiMyM0H/2gAIAQEAAQUC+N+IZCaOO/YCwTTGBw3oZBDBr0iJTyBEH3SivjHRo+jMrglFMJGBObSNRsnWVSb6iJ2dc/yDCG0Vw1s6it8pJiO1I63RTi7gLvLGT1eQaq1S9FZDn7W6z5UZ4TuJPtZSmUZFP1DcLqueweHrwBNyTBFa2ooT1N20OD9QreLMfVhHq1UcH0dyNiE/3rjzraZxpzhdARm1BFLagrkuJrRFPylWOOLh/wC6SaMo8oJZcZkJ9eX/AGrBLWKOACTRDGnORbZkxsmNk0q2rYuzrssrKymyyy6/HIvlM67IX8ZWMrqyb23pkyH238Q9P6/1f//EAB4RAAMAAgEFAAAAAAAAAAAAAAABEQIQIQMSE0FR/9oACAEDAQE/ARogh5FLqkGkQxwrh4+TDpLL2d+X0rOSsr1NQh//xAAfEQACAgIDAAMAAAAAAAAAAAAAAQIRAzEQEiETQUL/2gAIAQIBAT8BxyqI5WyOZ6fDk/ot6Pj9sWJ7MWT8vY50Uq2OZHJR1fYmqZbPT0U5HeXFFFFH/8QAKxAAAQMCBQMEAQUAAAAAAAAAAQACERIhAxAiMUEzUYEgMmGRQhMjoaLB/9oACAEBAAY/AnNqBEyEXnhTFP8AqaZ2utRod2VjOZfiODWjldb+pTtTnYnLYVeJc8DsnQKpvPEKp2HKtVVyrkxCqGRwMM/D7Lf+Feb9k5rjJPxshWSUNVEbokW+VxdVGXTYhSDSdoKfh4eGwgGAQ2+QJaQIjdVv2+E02F7L9y3y3lNA1X/IotDr9yqMRrTUPcF+o7E9vB5TwxjYmbBdN6NMabzKlzTT3WgSIu0lOFUgfj2UN9seVTEO7Kt9zFlpcQObotYXOHddPEQu2Te6dgmjwqcFoaHGLJwLagRwE4Ych3bhOGM2adkx2DhxNytXBUNdls1TpHhTb6XXI8K+JOV3O+1pe4eV1nrrHPY/WfHq2lX3z3y39BXnLzkUM//EACUQAQACAgICAQQDAQAAAAAAAAEAESFBMWFRcYEQkaHwILHxwf/aAAgBAQABPyEZ8KFZqO6ANxFTRNte1kL2uhuX09imlDySwURHE5C4L6MFfwvC93HJz4T077hQxXNhoS+zTI4viU868LqDNpY+4YG3dNyldTNDzYX99ztQ55BysrvzMpt/xga3BewjfGsQYL0zUstO4ozvquYCW3o1iDiq5WV6m0hMPz95fb7RF2iiJL9PgxfSCXCce2YzLNBVTqasRezqc0VwvfknhCvKPmLbzibjuBHBLgOMz9BDsBa2kgFsOhEMBbcR11OCPKcOh3ENFXJz6dRlDB6XL5XCD/2W1yLRwJrNZPP0XNNH7kqRWeAyuDBMiocEYLJHd0HC0ZEQV5Iby5Tx2xIVY9kQAV8E+X2hKs0jI6gqtSNxT/Ci+hhvHMubt+MQbN1zn4i4Dg/FP88lTlqCzbBxEC+cw6zvhbuN81ccvHuV/SLkWCHL5QRgPlB2a7xD0/mVRq3qZGa9x0uw4Kv+PT0+g/tf7+sJ9P8A/9oADAMBAAIAAwAAABAj8sZC2kAcDMewalTXgqCrPchn/8QAHBEBAQEAAgMBAAAAAAAAAAAAAREAEEEhMVFh/9oACAEDAQE/EApq6Llcww1BhDquHZn61Uw2ecgB97ocBWMsRw+nC/e/fBXMF5Am/8QAGxEBAQEBAAMBAAAAAAAAAAAAAQARIRAxUUH/2gAIAQIBAT8QwdujvZLCHu35Q3XqRw4zXS7MosRZm3somTjYEZwqyfSX5k0YD9j7SHhnsjw//8QAJhABAAICAQMDBQEBAAAAAAAAAREhADFBUWFxkaGxEIHB4fDR8f/aAAgBAQABPxCGHI0JPmxO2TTrTKJ4KF9BceqRQFbByHSB9+zr1QJG36ciD0X6Y4xtPPUk65rmsGhgbHlsB27vbO1/jtiSgQJRRAjRtlYhu8LAaYCvkDuHK3iNYFX1g1dF6lAyRtthDahKntgRKVzXRY05NckCjAdLxzgR4RgGTmOmCmgujnCTsooEMQKV4Z/3mP0LgEySKSDiHjV481OyNEjrFNp8YpPgYIglAmaH84fESnDIkHmq851ADYFxPuRkxVCCNflpnILwzKYI27M126rAnaFIwQQd9YWEd1RzE3nY9b/MTfnJ5gY79O28DCzlXIHUtj5xikyQAeUtZubquMeCCeLlePgnEZIVFISwl3Fz0xZaCZUhVo4qZ2bwbLs4JREGY+5O8Ke4dGGgIuniKnAhtA6BKtjPiPpU9iAJjLpvfTBSUaSLqh/t4pQKS0kQgpfPMcYiWL0856BEYdq4RITXQvWsPGckyc0nSLo840xEVE/tMYw0BAEElNS3rtkcdNglL1PTlyP3P3kr4Xqoq74yVnsSIdwhUxGCJdQslm3mYbhvnIQ8WkNEkGAE0ISsLhip81haCXZImbSa/JebPVnw2dPbIJ0tWiFvWo47OBI0QUmx6Z5evkgp1KI+2OFgQtqdJbjFKLCjD1vBZSdgIvriSLkCksaBvKRepiwCSQxx0icvHzU+AQ5934z+2/GFCJwgw6Pgi3CqbKnh5wooLQpOJYqH7/jLZCONrhSs/GQ5IaIQy1P2cs7OYoWRuATCAkqVzKAomBTkogDwOTIn42cuzCpA30zyxoWekxgsuAUDX7yQpid6zwe2bfB9Nq+XyZr5Py5p8c0YvYHxnu8+f/Pp/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%E4%B8%8B%E7%94%BA%20,Tokyo,%20Japan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/544701031771164674/9EszjZW4_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Last-Modified: - - Tue, 16 Dec 2014 03:48:20 GMT - Server: - - ECS (fcn/4186) - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/544701031771164674 - X-Cache: - - MISS - X-Connection-Hash: - - fc2f906720d336731983d888b5d084c1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '169' - Content-Length: - - '8135' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%E4%B8%8B%E7%94%BA%20,Tokyo,%20Japan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Somewhere,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/993875791921516544/KxtPpRLJ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Last-Modified: - - Tue, 08 May 2018 15:28:28 GMT - Server: - - ECS (fcn/40FD) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/993875791921516544 - X-Cache: - - HIT - X-Connection-Hash: - - c0c58bbca9c35859f83d5474f892cb09 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '567' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Somewhere,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065690447354445826.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="df1d4b0020304d719b581ad2a89ac722", - oauth_signature="ZVjS8VWcWdYXZpr2I3ZX56DOWTE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795865", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2746' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586536405324; Max-Age=63072000; Expires=Wed, 2 Dec 2020 - 00:11:05 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_MZD182hfYWStgAdGdUaJ5A=="; Max-Age=63072000; Expires=Wed, - 2 Dec 2020 00:11:05 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b7b8c1e2dea450e71b21fbd4b9936f5f - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '890' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '151' - X-Transaction: - - '009729f6001fb087' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 19:36:16 +0000 2018","id":1065690447354445826,"id_str":"1065690447354445826","text":"@example - Ich w\u00fcrde mir aktuell Zammad angucken.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"example","name":"Michael - Smith","id":118674790,"id_str":"118674790","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":1065689418353307648,"in_reply_to_status_id_str":"1065689418353307648","in_reply_to_user_id":118674790,"in_reply_to_user_id_str":"118674790","in_reply_to_screen_name":"example","user":{"id":19840431,"id_str":"19840431","name":"Falk - Stern","screen_name":"wrf42","location":"ZZ9 Plural Z Alpha, Third Rock from - the Central Star","description":"I \u2665 IP packets \u2022 @example_ort \u2022 - opinions are my own \u2022 DM7FS \u2022 https:\/\/t.co\/KuzUv395IN","url":"https:\/\/t.co\/e7or64Jxh7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/e7or64Jxh7","expanded_url":"http:\/\/pants.fourecks.de\/","display_url":"pants.fourecks.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/KuzUv395IN","expanded_url":"http:\/\/tools.ietf.org\/html\/rfc1925","display_url":"tools.ietf.org\/html\/rfc1925","indices":[62,85]}]}},"protected":false,"followers_count":584,"friends_count":485,"listed_count":21,"created_at":"Sun - Feb 01 00:58:25 +0000 2009","favourites_count":1543,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12886,"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\/608727351455809536\/JHaWzvF6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608727351455809536\/JHaWzvF6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19840431\/1499724219","profile_link_color":"33178F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=ZZ9%20Plural%20Z%20Alpha,%20Third%20Rock%20from%20the%20Central%20Star&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/608727351455809536/JHaWzvF6_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Md5: - - F1aJw9nod7eADmrBUW27ow== - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Last-Modified: - - Wed, 10 Jun 2015 20:06:04 GMT - Server: - - ECS (fcn/41AC) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/608727351455809536 - X-Cache: - - HIT - X-Connection-Hash: - - 9fbcba5c976a1f20dd720b0d93219e4b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '205' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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BUkiEeo+6P8Aq+mzOKWggzSKQgxmKyyxyje13sLHwsd+BxcVChI+uYgoVJbbhY2OJSXM89Gb5Nk1NWy0TmljianhcARuSQSw5lbNY774e1WcUFDn/qWVJGy8U5pJZ3JJDta7E95ubnlfHNvQuwMj1+R/cIjVBJNojCxxgGSQCwB7hfnbfAec5dUV2VMKWamBv8NFLOkZK8rkiwI78AV1TJB0dOR+k6aunnmiqiT22IBZDbvDCwuOWJypqPSIKetnC+linaBpG3vZ7A795Ust/wA3niq6CWBgCrDpinN6SnFe0WXBChkCqVbskkAXBPdqva+Kno90QqsqaOvzLSkvWCNYlYHSHupLHhwPDEzIiyh9rpqK+7FHL0kfMOjKZdKh64oqSS6zqJUjcADvsMdKxsTD/EbSCzBgP3KabOvQMuy2V6d5oZVCySodkIFvfc3+TBfraj/DH76f1Yi+vr5snhy14h6NEAAWUIeJtuTe+/dgf1RP+CP4zfVhXzCesceK/pn+/qT085dlhZy8krapX43xtowZlnqjdU1BIx5d+FkJZzNMSAT2QeQwxiqC1OiojmNBy4+7GjMmdjsMpJ6o9IKOsjl01CSq7TbCwHF2v4cSeOKHMM4k6SyQUooUpDU1CtLKZiVubgkKfZuDviRXt5nSRb7tqa/y4fFVvcE32OxxkvwMOporXVhiZtJJUZhWwQU3pEwkkWaaMO8aAoqhL7A73J8Dywor2hSiiUm0q6YmB31qLsredywPPbxx9eNrGTRpkLXIU7C5uRhdnOpdLl7KNxtw54leeYyR1+kzCCYmGMDi74bZJXLSVklPNCJFkbsAuVAbxtvvwxP5aGEkRbgLt8m2DZideomznvGNViB18TEUk1v1LZMxmppo54oqWnkR1KtGrM3HmxNri4vbvwf/AHgVH5PL8rfVidoKwZnRBztKp0uFNrHn78FdW34T/vY5LVJuOJ1wNGqZJQU8FPT9pe0OHffBcuV11NSCseNViY3aIntKD98fqx6l+M6L9cuKvOf8qr/Rb5sbrbmRgo9Zh4/HV0LtIEswrEqVOkC1iRfb7Xw+0GNh1lSsgKmwi7JvcWve4A3wuq/irLv2dv8AtfHn9s/ofSuGWKDKo60RjIJVXVFDM5B3UvGwPvFsLsxjmmptTw6F79bD6Mb6X4vHk3znGmr+K08/pOASsAxjnRs0eo6mLLY8weFxAACJNQNh3ErxAwNLOeth1rZlbdRvtbj5YuR8UT/sp/44hJfapP1f0DB02mzdi76RXmRlllWMvrwST1Elkfw5N9ueKvrE5nELN/p3/ROKDCuRWCQY7jWkLk//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=ZZ9%20Plural%20Z%20Alpha,%20Third%20Rock%20from%20the%20Central%20Star&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065689418353307648.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2dbf57fffac364cfd3d3bb63b01ca49f", - oauth_signature="DoKz2xUY3qPs%2Bnscylkyemx7acY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2803' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586586228954; Max-Age=63072000; Expires=Wed, 2 Dec 2020 - 00:11:05 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_+/OoCKlEZ0cKyyakBbiF3Q=="; Max-Age=63072000; Expires=Wed, - 2 Dec 2020 00:11:05 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b2a163727c924ff41806ca40d2d38ea2 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '889' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '141' - X-Transaction: - - 0025e37d002a1248 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 19:32:11 +0000 2018","id":1065689418353307648,"id_str":"1065689418353307648","text":"Aja, - wieder was gelernt.\n\n\"Zuk\u00fcnftig werden wir neue OTRS-Versionen zun\u00e4chst - nur unseren zahlenden Kunden, und erst\u2026 https:\/\/t.co\/IRfIEfrN7k","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IRfIEfrN7k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065689418353307648","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,"user":{"id":118674790,"id_str":"118674790","name":"Michael - Smith","screen_name":"example","location":"Somewhere, Germany","description":"A - taste of #austria in lovely #nuremberg. @example, @example, #lego, #drageekeksi, - #perryrhodan and more.","url":"https:\/\/t.co\/9bqAc15vHA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9bqAc15vHA","expanded_url":"https:\/\/example.com\/example\/atasteofexample","display_url":"example.com\/example\/atast\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1345,"friends_count":404,"listed_count":182,"created_at":"Mon - Mar 01 12:24:00 +0000 2010","favourites_count":29311,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41488,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/993875791921516544\/KxtPpRLJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/993875791921516544\/KxtPpRLJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118674790\/1530637123","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":true,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive_appealable":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Somewhere,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/993875791921516544/KxtPpRLJ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Last-Modified: - - Tue, 08 May 2018 15:28:28 GMT - Server: - - ECS (fcn/40FD) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/993875791921516544 - X-Cache: - - HIT - X-Connection-Hash: - - c0c58bbca9c35859f83d5474f892cb09 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '567' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065643822095446016.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="43788c0bf65af0ea0e0e59b029a98a58", - oauth_signature="8H%2Bw00OP0m9rjOpLRdQia%2BOjtIo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '4445' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:06 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586658065606; Expires=Wed, 02 Dec 2020 00:11:06 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_L5115LsYmHOzsuzVVaIZNQ=="; Expires=Wed, 02 Dec 2020 - 00:11:06 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - ff7137ae964095853eb47f508634330a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '888' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '136' - X-Transaction: - - 00d6e40000f35116 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 16:31:00 +0000 2018","id":1065643822095446016,"id_str":"1065643822095446016","text":"@IExample - \u0627\u0633 \u0644\u0691\u06a9\u06cc \u06a9\u0648 \u062f\u06cc\u06a9\u06be\u0648 - \u0627\u062c \u06af\u0644\u06af\u062a \u0645\u06cc\u06ba \u0628\u0644\u0679 - \u067e\u0631\u0648\u0641 \u0634\u06cc\u0634\u06d2 \u0645\u06cc\u06ba \u0628\u06cc\u0679\u06be - \u06a9\u0631 \u0628\u06be\u067e\u06a9\u06cc\u0627\u06ba \u0645\u0627 \u0631\u062a\u0627 - \u06c1\u06d2 https:\/\/t.co\/IHTy1S6LIL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IExample","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[0,13]}],"urls":[],"media":[{"id":1065643762477686785,"id_str":"1065643762477686785","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/DsntWx-X4AEVPbi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DsntWx-X4AEVPbi.jpg","url":"https:\/\/t.co\/IHTy1S6LIL","display_url":"pic.twitter.com\/IHTy1S6LIL","expanded_url":"https:\/\/twitter.com\/idreesexample\/status\/1065643822095446016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":854,"h":480,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":854,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1065643762477686785,"id_str":"1065643762477686785","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/DsntWx-X4AEVPbi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DsntWx-X4AEVPbi.jpg","url":"https:\/\/t.co\/IHTy1S6LIL","display_url":"pic.twitter.com\/IHTy1S6LIL","expanded_url":"https:\/\/twitter.com\/idreesexample\/status\/1065643822095446016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":854,"h":480,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":854,"h":480,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","in_reply_to_status_id":1065640781103448066,"in_reply_to_status_id_str":"1065640781103448066","in_reply_to_user_id":122453931,"in_reply_to_user_id_str":"122453931","in_reply_to_screen_name":"IExample","user":{"id":705679307683864576,"id_str":"705679307683864576","name":"idrees - aAlzeyadi","screen_name":"idreesexample","location":"\u067e\u0627\u06a9\u0633\u062a\u0627\u0646. - pakistan","description":"\u00a0Idrees Alzeyadi \u00a0\r\n\u03c1\u03b1\u043a\u03b9\u0455\u0442\u03b1\u0438\u03b9\ud83c\uddf5\ud83c\uddf0 - \r\nlove Myself\u2764\ufe0f\r\n 01jan \u043c\u0443 \u2202\u03b1\u0443\ud83c\udf82\r\n - f\u03c3\u03c3\u0442\u0432\u03b1\u2113\u2113&cricket \r\n\u26bd \u043c\u0454\u0455\u0455\u03b9\r\n - \u2764\ufe0f sports \u2113\u03c3\u03bd\u0454\u044f\r\n \u2764\ufe0fpolitical - view\ud83d\udc49imran khan\u2764\u270c","url":"https:\/\/t.co\/czkzktBJ7X","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/czkzktBJ7X","expanded_url":"http:\/\/www.example.com\/idreesExample","display_url":"example.com\/idreesExample","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2315,"friends_count":1946,"listed_count":0,"created_at":"Fri - Mar 04 09:00:32 +0000 2016","favourites_count":4372,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":364,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1065873213748584448\/QClfFmGl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1065873213748584448\/QClfFmGl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/705679307683864576\/1542958866","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive_appealable":false,"lang":"ur"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%D9%BE%D8%A7%DA%A9%D8%B3%D8%AA%D8%A7%D9%86.%20pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1065873213748584448/QClfFmGl_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Last-Modified: - - Fri, 23 Nov 2018 07:40:31 GMT - Server: - - ECS (fcn/40D7) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1065873213748584448 - X-Cache: - - MISS - X-Connection-Hash: - - db07615a746149cf45bdbbedaf7cc931 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '131' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%D9%BE%D8%A7%DA%A9%D8%B3%D8%AA%D8%A7%D9%86.%20pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065640781103448066.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="813d8700f25ff78f741b2c778b312cf7", - oauth_signature="Ha0OSsfG5yFKzMdNbRHC2Fn9tKo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795867", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2596' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586724246848; Expires=Wed, 02 Dec 2020 00:11:07 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_OA+dA8O8hzvl3z8m22QRTQ=="; Expires=Wed, 02 Dec 2020 - 00:11:07 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b9bed8cd479ebba741a875dae276bb09 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '887' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '148' - X-Transaction: - - 00c36c4100d7cd91 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 16:18:55 +0000 2018","id":1065640781103448066,"id_str":"1065640781103448066","text":"I - want to express my heartfelt thanks to Prime Minister Mahathir Mohamad for - his warm hospitality & I want to thank\u2026 https:\/\/t.co\/qUVkNiIqw9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qUVkNiIqw9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065640781103448066","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,"user":{"id":122453931,"id_str":"122453931","name":"Imran - Khan","screen_name":"IExample","location":"Pakistan","description":"Prime - Minister of Pakistan","url":"https:\/\/t.co\/zwxvk5i5Xu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwxvk5i5Xu","expanded_url":"http:\/\/insaf.pk","display_url":"insaf.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8753744,"friends_count":19,"listed_count":8089,"created_at":"Fri - Mar 12 19:28:06 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5685,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CCAB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122453931\/1534522318","profile_link_color":"179C41","profile_sidebar_border_color":"CCCCCC","profile_sidebar_fill_color":"E2F5E2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6873,"favorite_count":35122,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1034759395622756352/G3QDI4pv_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Last-Modified: - - Wed, 29 Aug 2018 11:05:19 GMT - Server: - - ECS (fcn/41AD) - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1034759395622756352 - X-Cache: - - HIT - X-Connection-Hash: - - 338e7b270c00eefdafc384c84ca630b1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '210' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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moIs1eYUfJBwn53LSGXGT3xNGNYRphinylWZgIKCKbbhys733LtVge77n//EACUQAQACAgEEAgIDAQAAAAAAAAEAESExQVFhcYGRocHxENHwsf/aAAgBAQABPxBOmoh+IVBld1F8QMOclYy5rgTbHFa2jjYUXNzDdFcdsS97gTe5oZTJ+xVZc6BUilGA9StsGruh+ZdLuO2OWeMJimWxQuLEGS6wNpTTYrVS91WW6xUNhOBzqf8AQz9sgLRd/gmCo1iUccQjzI40lna0uKj67xXgNHxK35ZgxqLymb7Ux7k4lI9g9C/iU7LRS1QugOr0n6bFAqmyxWslKADKsspvbHwxUihAQAWgoxKKghoEqs3hePcWEERR0BfQ3K4P0AS/CjGeJuVZAfcQCilqIE4qzZnhOZ/h/dHwA23Tcu7bYPCvSHwZeU0RlAWsUGWb5hC2R0utMcGmHYLO/lfIyhI6bqlt+XwQNwCuJlu704cd4NhbbXDDOIIhZOtKZpasT0a3O8+D+5VArP8ANw6vEKXY9e0Exz7yhCvlx5hCiy4yfX8og08xs6FKFGfUC7gikrzr0yjyncpjvWmKaQXwpCCwHa7rKI0KndRMpDk2NRMtYK2YlsjlxQh+ob8bdmkfH3Q5+PZBclZOhF/wem8nu0CPq4kgjGrUrd97riqitmoOUAp7g+EAoCg0USyN5mlqJL9VLS+RCbPN4lvZUWgFQ6jkvqMCLW6BsqBYmIvtCiBYsS661ZCA9TMgcYbbTpUZXgHAsNgATa083Ba54l2qVzZe4E9opK4QjBpbllfbYAGaVNoB8qqWWNoweCEsxIlNlnYQ06hOR1eW4SQoDBsGtwIO6Ep1XaxplJfo02m/8uXibRh3NP4//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Zug%20zwischen%20BS%20-%20WOB%20-%20B%20-%20HH&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/862655866327240704/WtPq3dQv_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Md5: - - rPsU3ndDDAINBRK+KU5yow== - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Last-Modified: - - Thu, 11 May 2017 13:07:20 GMT - Server: - - ECS (fcn/4196) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/862655866327240704 - X-Cache: - - HIT - X-Connection-Hash: - - f3107d5278515440f12b27e44e771796 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '131' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4QAFAAsADQAJABVhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAGBwMEBQECAP/EABoBAAMAAwEAAAAAAAAAAAAAAAMEBQABAgb/2gAMAwEAAhADEAAAAVXPB8wL1uYN7Xepk2e8F2silXOsaZY9zNEQ81w4OD+v5Lw0YA9qgyp6Q/s6dSMKezCNlKqH6FGfW42lRf3prqKabjfWEt2VQgyR4XuhCX3TI5ie6T5bhRFVOPNkRwQyytXJJlAcuiZV3jvK5nS/RKzDNVyzPaq12hsiz7wuaSz61DWgun4X/8QAJxAAAgICAQMDBAMAAAAAAAAAAwQBAgAFEQYSExQVIRAxMjUgMzT/2gAIAQEAAQUC7r8Qc8QUpC4k82Cl3TXm1cJ1C5cRXvIAG9rTX+4i/hSO7KcxWPucfZf6ua245mOMHXnNh21dFrLHTJa1LvVrZfIzjHQ2oAux7MEQLR0dZB100irsb+sxPf3oq65cil0FqZ6VTOpGLXbnKTMZp9mK9HtgJUGxdI4yvHnuuPiKjklfSVzYF8j8xg6WtkqtZCLVjD1bZK6w3hdtMUn26sZ7evhfk0R8JEoOb7aGI21LhceK0DK4uWJTu1bn3RjNdqambHpNZXNytVXaa2aUP6uQRve/zo9OIjDtFwrs7QxJ1/OPmWAUfzHWHMbNE/hK3AoXePYlNa1DCO9DFibgVrgzdfsFc60/xi+wP1Tf5dJ/qtx/Rf8AHP/EACQRAAEFAAEDBAMAAAAAAAAAAAEAAgMEERIFITEQFSJBQnGB/9oACAEDAQE/AdUY0qRnZb6MgstZs7cP7VWPWqz41TvZEOTjgXuFY/kp5OchKinMRUtgyFdVLpuMI+/KLasZzkf4m13OjDgpdZ3TT3+RV3pLrfEKtQgAIzV0z513b9FWmAOxRtBOq9K+OqZGHCum23StIcPC/8QAIBEAAgIDAAMAAwAAAAAAAAAAAQIAAwQRIRIiMUJRsf/aAAgBAgEBPwGM2or97PkB18lORVcPUzIfRlL90Yh3wQY9p/H+SisJUqiPULBK6BXMdQm3/UUuRuNaqtoxAGmpiZHt4gbmRkOSNcmYvhYJjnkfgImJzIAmTQEI1P/EADQQAAEEAAMFBwIEBwAAAAAAAAEAAgMREhMhBDFBUWEQIjIzQnKBcZEgIzRSc4OSk6Kxwf/aAAgBAQAGPwKg933QAldpu1X5jy6uapu0Pja3cAsbnkk81iaNWlZb44XCq1ajEYqvjaj2OTY2SNa2tSvI/wAvwfGnwqOnE6LWiCuh/Ach+fHzqlquiIy6jFDT6b06eM2/9uLega0v5+ViaN1Hs3Lgvy9qEDRqSdEWukj2r3RoRx7Nk3wa7xFRzZjsRsO+FiEwDALLAmzvjax0jvC0p44tr7KKZ7pS5+tAgLynn+YvIP8AcKyPRFw69lg1SLSRFL6mHj1CzGbY09Bq8rNfo0Cmt5BZENl70yJm5oDQrFFm670XiZ/Wp3c3ns7rSaFleRLfDurLyXh9YqOhpYssBo1Nnco5Qa1o/KbAZBHJLpf7BzQadolc0L1/dP8AceyTMxYXMLTh3pkIY9veHe6JmWcTxEWYm6nXcoxA2Ixlt4idx4/VWmbQRoRr9VmtIIbrhxcOx42kuHqAav0+L3OKnhY3CzRzR0Ka57MfIdVWTmkxWY8Ot3WpRL2FmFugu96a6bHM6uJoIRgHJAxMgHhtMEuEOL+Aqhy7NmLYI4nukw91/NWo30aMVX8lCS3Ct1cFl7LAHgx4nnxWUGu3k2eqhe31MCik6ELuxeUbsHeOzZ/exOUP8X/iK2v4TPaFH9T/ALTfcj2f/8QAJhABAAIBAwIHAQEBAAAAAAAAAQARITFBUWFxEIGRobHB0SDw8f/aAAgBAQABPyECgBteBxihRcG4QAEsusdpprYOSzKvyHERMO4SvlHRGVA5rdek62KePAM6YiWwlsfUXDU2mQfvK12Fj7jEhQWeFSouGW1u+zFVaiO3IDWAKXj2DLqymmFgtTp17ypLQeyBNdSdLIhcOdD38G+qFlBUd6KPm0wjADb02MOkM9EpbLWLmoxhMnaWmWGUlawbCGO92nvDYGoQZriCjT5fweBy8OI7kZYbP9rFBCyE2mrFOMY/HtElj4EOwfukOjQXsSr8eBZQc3AztC5rV9bjUbDaBVP+enHfprqYtcMbdpA05gUvGpWuqP09ZjENPS1b9ZjMig4F3ZrtEphkdMH5hNARrw57pU2hLon+jgbbbqecsozXNWAi6zT2l31BSN3FKNckCL/gRwV3mRPGrgr0L9YrwxbeJh4C1Rc5lFQpOzDnDlau3RUxXE+/19wvCIWgEd7qDeGHGYPdM1axM4Ax1jwwt9hqpYhrivwBKM3qJyLznaAG2oPyCdsG/qwLg3g2usxrX71DRoWDCn6EtFhpkhgqxablljnz6zdqBuuWUPtp6OjFeKWc1vcqFeVcHPqWc/xLx7Y+Se1+b/ACk9g+H//aAAwDAQACAAMAAAAQhkW/Dew0GjyFZBzFP/DYwBvj6//EACMRAQACAQMEAgMAAAAAAAAAAAEAESExQWFRcaGxgcGR0fD/2gAIAQMBAT8QubzV4+ZBbMybwMDpUfS+4d+mfW0IIY7RB1w92vcAWX+H9RX91/G3iIKyOpAl4OkWNQrWgBtfnPEVlvD6+42RTzFYC0jJbnODnS+0NspHxv8AUbhopaVpj3cf9htt2uOuUMMlSpBHX3CMZGmNeDkv5n//xAAgEQEAAgICAgMBAAAAAAAAAAABABEhMUFhcYGRodGx/9oACAECAQE/EASMZfRQvCLqlh1dNfydtUV3LjEC1/LhVi+f1AY0F+efuVla7gyjbLh0MHN8teiq7lMY8xDZCBdSjgMHPiAJSZwNmQebeccUyojsivpEyPeEjInN7n//xAAlEAEAAgICAgEEAwEAAAAAAAABABEhMUFRYXHwgZGhsRDB0fH/2gAIAQEAAT8QLZFAAHwXHmURfC7l1zkuvLdQvDCkdk5K17j8X01bnWtytoLoZHr3Bj8RhYqzz5lO+BWhTY0kNBJpyNArKf8AXRAyu5lIaLTyxBDSaXiVrbsxEyU7THWWI1YQsp+mhU8zBk6SKUBR5DMYp8INv9QUtKOPcSlTUjwxI3219LUJO4mlsYOBv1UCJhNqryrCNHpDELohi7HkeoTuiL1EPDh6zjiagQ6gVXwliW6jPqtw8FjX+zPvsgsdEH0jKoWOGAtCztgHOnJjVaIHXuX+PvGNUU1XTQx+ysIFnXizOm9EVEVjC2H5fR9oRloBjG0upjLVK6vzRPjH9RUDbh0yvksDqnuCbfNX1wfrHaVqlHJ6cwVZzuk290XcvGIXzOPQhD7aikISpHwPK7WsvFVAIHfVwujDf+RabltfoVKIu2cBU0qXqfG/7mQLo0dhD8EQOCFL+r+sRUEK6ognotPvKDdVAAQrnWbodxwmVCAuci+FbVKlIEGazgFGxkLm7EUYqq+0AOdxiKwNLQPcpGFDJZ2HBPJMl7uttvbHsDo5h5UzsdBAch2Rn2hFYTIsh4o4mTMY9VBGymFQKMlEWQuiLO0UsZau7Nai6KQUoG7KlEOjfQl+xhRrpxQVFM21R5SfGyuCb4FlsCwsfeDA3HOf+yWrWgpLRfA2fSKKwfBbDAaDTg3UMo1elzNQB7vK5YPhv34FZaUaKOGXFgZOy6M9e1jphXS7HqoRyieYsGAmDIUfeW7QqhRGKFwtGbmIm1OHBmdNcpbgOlDB5JWi9QbYWkzhu+znErwONhvORVqMaokxRYOvTucrwVgD2wzB8KCj2IwVYZKrAD8szJWSlGQcitzwp8n2TT2J+W/b+QTj5HqfFd5+f/TPhuv4/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Zug%20zwischen%20BS%20-%20WOB%20-%20B%20-%20HH&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fair%20Leipzig%20Hall%20H..%20I%20meen%204&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064967265177792513/muZEe7g0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Last-Modified: - - Tue, 20 Nov 2018 19:40:36 GMT - Server: - - ECS (fcn/40FC) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1064967265177792513 - X-Cache: - - HIT - X-Connection-Hash: - - 71df07dcadf450f699f4aeb9f33d8ca3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '129' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gALABQAEwAqACZhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAaAAEBAQEBAQEAAAAAAAAAAAAABAMFAgEH/8QAGAEBAQEBAQAAAAAAAAAAAAAAAAIDAQT/2gAMAwEAAhADEAAAAfxgACyOxnGGgAFFOcVY9r7Fr3zx4deSN41/tWO3NU6HPukN+pGYdDKHDk3oZp1Dvp06fKqrDbTk2Jm8E+imjnEA0uhti7msjs4jDQD/xAAkEAACAQMDBAMBAAAAAAAAAAACAwEABBMQEiARFCNEMDE0Mv/aAAgBAQABBQLjP4/hn8fJatwpQo23tqlLZUGNq5DleT5ajzJAWMs0Jdt7Z9CrFXeMreiksRvvPuraCzB0ONk0yRXGZNZk63EZKASMngVsuVl2i4xLSzZTl7eAGQTbXDop17cMLNOEyIypLNldLPUYkpuJiNPT5K8StPT5XP8AGnp8P//EACARAAIDAAEEAwAAAAAAAAAAAAECAAMREBIiMUEgITL/2gAIAQMBAT8B4f18MZ13cmMFAZvEW1fBM6yfwNhqBEqwJHx+7YKTFpVho4tRX7chprXABwa9O8V/fdH9c//EABsRAAICAwEAAAAAAAAAAAAAAAEgABECEjEh/9oACAECAQE/AW8CbGZdnEBqWUKf/8QANBAAAgADBAgCCQUAAAAAAAAAAQIAERIDECExEyAyM0FRc8FCYQQjMHGRkrHR41JigZOh/9oACAEBAAY/AtUdQ/T2Q6h+muWJCqOJhVPpC4nkYpFuBhk0aHGQFek4QMQVORHHWKDZTAC6Xjs8vMRSlTSfKHs2s2pIJ/mN03wiu3X3L+qNiy+QRuD88bug8GJnIwqs1VoNo3AqaZYk8omizHRWN2f6l+8TdZDorH4RH4VvNumR2v2mAqiZMaJhJ3xb3colhVOuU8ZQbR82UhV7wQRUh2lgOhqszkdSaMQYNq1o1Kf6eUTrp8hGnl60mktFTGZuIIqQ7Sxt23wF4AxJgWK5Ln5m4dTtr6XxHBPveOp217Hp9zeOp21f/8QAKBAAAQIEBAYDAQAAAAAAAAAAAQARITFBYRAgUXGhscHR4fAwgZHx/9oACAEBAAE/IcvpNHxek0ZzQlYy30TEWwW6gQUElzBJH4E4Qb/kgUaVNUVJivLZhJUZlIYbFPyP1yQKBxgpBQo1ARIRAi+DmT4AT5l2wG/sOyAggDCdAsyOEhyB10F8DNEtkE0/mgLOO4gSRlAAk0AfItn3utn2vjWI8Fblro5YpgBVDs4Lg6vxBR2npQwIsgwhVEXDOsinICSvlBH0Dg3yU/E4KJF1InYR15DSQjDhEZYs090UFnmTg7kxJXzk2CW4YBBTXnh9p6YHjOTPEHXta9GJ4zkz8CxDxnJl/9oADAMBAAIAAwAAABDzyvzzzwnPj/w7U/z331zx7/zz/8QAJhEBAAEDAgUEAwAAAAAAAAAAAREAITFRkRBBYXHwIIGh0bHB4f/aAAgBAwEBPxDhn3/p9BBXItEW0yZ860PGqhWDs7cmS97lTkcnOS/91pbgazB7WZ860sJd37pDlxno5e0finGBCwNm2u+LxvSVRkOgTrDfG02tUkH4+uCAgrm3LyxvyowsJi2mjqd6ACCigKPTnwsKyr8MHms1n3cf/8QAGxEBAAIDAQEAAAAAAAAAAAAAAQARECAhQZH/2gAIAQIBAT8Qwe6NlVdRRVCJgJvnwlmQeIuWF3LrV055D3P/xAAlEAEAAQQBAwQDAQAAAAAAAAABEQAhMUFhEFFxIDCRoUDB8IH/2gAIAQEAAT8Q/GatUz8SUlgAKu4CxmjfzQJjhAHy0VcPzHMQ8w1aRUHLIWycA7tapsXINLcTcTCNz0lCimMc7eVbrl6XLulN53ku5ye1F1FKqCMW8zQ3bPDBZqUHIx0kTsSHRzNh27wcfxH66DJVNkgkXMl/MZ1ThSR7KbjBIN8xrpnQ6ZArk3a0bmN053tBE5i51SyIRLD2ogmVDC9pM6VzLz6G6KSmy5GuTW2M0D12WTSHTEoQDaSzcVG+FEkihhAhfaMwjTF9mRZdgSx3cWvQhxiEB0joZHXiSmApbEI7PR7byW9DZSJQpO1A6EcRp+a68DRBhALJ8yzRErZVIGwwIstZAEuV6OAjEIDpHQ068SV/Ffvq1UQWVbBRQ1uk31EQ4OfZUaehO9P8hhyvb2VB7PBR/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fair%20Leipzig%20Hall%20H..%20I%20meen%204&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065502326222479360.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="6ba7598ee7171aa89d5172a75b5e7634", - oauth_signature="RrL7Yjl6GE4OJ4IJX4H5GiYLFJU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795868", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2700' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:08 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586847510178; Max-Age=63072000; Expires=Wed, 2 Dec 2020 - 00:11:08 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_WG9/GD7xyOfaKPFTNVIqHQ=="; Max-Age=63072000; Expires=Wed, - 2 Dec 2020 00:11:08 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e35a95110d95c5542c3ef8072eecb2cd - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '886' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '142' - X-Transaction: - - 003c3d9c001e7352 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 07:08:45 +0000 2018","id":1065502326222479360,"id_str":"1065502326222479360","text":"@33logistic - Over at Mastodon there are working dms. Just saying. \ud83d\ude09","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"33logistic","name":"CCC - Event Logistics","id":811173206887460868,"id_str":"811173206887460868","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/example.com\/TwidereProject\" rel=\"nofollow\"\u003eTwidere - for Android #8\u003c\/a\u003e","in_reply_to_status_id":1065497046419939329,"in_reply_to_status_id_str":"1065497046419939329","in_reply_to_user_id":811173206887460868,"in_reply_to_user_id_str":"811173206887460868","in_reply_to_screen_name":"33logistic","user":{"id":354796681,"id_str":"354796681","name":"(\u0e07 - \u0e37\u25bf \u0e37)\u0e27","screen_name":"tamexample","location":"Lost in #Neuland","description":"Flashaholic, - tinkerer and general tekkie. Living the (mostly) open-source life. Meine Wahl - ist gest\u00f6rt. FCK EXTREMISM. I void warranties for fun.","url":"https:\/\/t.co\/J4ZnfQ5z5y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J4ZnfQ5z5y","expanded_url":"https:\/\/example.space\/@tamexample","display_url":"example.space\/@tamexample","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":103,"listed_count":2,"created_at":"Sun - Aug 14 09:28:04 +0000 2011","favourites_count":876,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1627,"lang":"de","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\/932331169064112128\/KaSV48WY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932331169064112128\/KaSV48WY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354796681\/1524076675","profile_link_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lost%20in%20%23Neuland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/932331169064112128/KaSV48WY_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Last-Modified: - - Sun, 19 Nov 2017 19:32:07 GMT - Server: - - ECS (fcn/40FB) - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/932331169064112128 - X-Cache: - - MISS - X-Connection-Hash: - - 4cab491de27a923b1f2c5cdbd9fe9189 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '297' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lost%20in%20%23Neuland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065497046419939329.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="3a2fab4325efb72a9fe7f466fdb96910", - oauth_signature="%2BwYKPEqhsVvUK7IDnOSZpB4J1h0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795869", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2772' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586930698550; Expires=Wed, 02 Dec 2020 00:11:09 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_5gBdW/xaAyiVrU64RgDTYg=="; Expires=Wed, 02 Dec 2020 - 00:11:09 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 4e864881ee6bd6e4b4e896a754e9a821 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '885' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '171' - X-Transaction: - - 00e4fd6200484154 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 06:47:46 +0000 2018","id":1065497046419939329,"id_str":"1065497046419939329","text":"We''ve - deactivated our direct message feature.\nCause of the new Twitter API we aren''t - able to work on DMs atm.\nIf yo\u2026 https:\/\/t.co\/dVfqyH0QXm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dVfqyH0QXm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065497046419939329","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":1065497031790211074,"in_reply_to_status_id_str":"1065497031790211074","in_reply_to_user_id":811173206887460868,"in_reply_to_user_id_str":"811173206887460868","in_reply_to_screen_name":"33logistic","user":{"id":811173206887460868,"id_str":"811173206887460868","name":"CCC - Event Logistics","screen_name":"33logistic","location":"Fair Leipzig Hall - H.. I meen 4","description":"Logistics for Chaos Events. Currently planning - an awesome #35c3 in Leipzig 35c3@example.de","url":"https:\/\/t.co\/g2YFZuZZsj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2YFZuZZsj","expanded_url":"https:\/\/example.de","display_url":"example.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2198,"friends_count":56,"listed_count":49,"created_at":"Tue - Dec 20 11:35:38 +0000 2016","favourites_count":170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":370,"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\/1064967265177792513\/muZEe7g0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064967265177792513\/muZEe7g0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811173206887460868\/1542742947","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fair%20Leipzig%20Hall%20H..%20I%20meen%204&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064967265177792513/muZEe7g0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Last-Modified: - - Tue, 20 Nov 2018 19:40:36 GMT - Server: - - ECS (fcn/40FC) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1064967265177792513 - X-Cache: - - HIT - X-Connection-Hash: - - 71df07dcadf450f699f4aeb9f33d8ca3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '129' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065497031790211074.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bab0a69fdb7b4718244cb9e3a86f28d4", - oauth_signature="WrbLQ6TcP7153IxnujSFyoJ462w%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2707' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586973197398; Expires=Wed, 02 Dec 2020 00:11:09 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_xCHa1qb/K3d5JeUU/G6TFw=="; Expires=Wed, 02 Dec 2020 - 00:11:09 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - d116e685690ffcfe4b23ff22ddef0be5 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '884' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '151' - X-Transaction: - - 00b53dd000fc233a - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 06:47:43 +0000 2018","id":1065497031790211074,"id_str":"1065497031790211074","text":"Wir - haben unsere DMs deaktiviert.\nLeider k\u00f6nnen wir dank der neuen Twitter - API keine DMs mehr bearbeiten.\nDaher sin\u2026 https:\/\/t.co\/r7sp3Pfr8d","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r7sp3Pfr8d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065497031790211074","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,"user":{"id":811173206887460868,"id_str":"811173206887460868","name":"CCC - Event Logistics","screen_name":"33logistic","location":"Fair Leipzig Hall - H.. I meen 4","description":"Logistics for Chaos Events. Currently planning - an awesome #35c3 in Leipzig 35c3@example.de","url":"https:\/\/t.co\/g2YFZuZZsj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2YFZuZZsj","expanded_url":"https:\/\/example.de","display_url":"example.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2198,"friends_count":56,"listed_count":49,"created_at":"Tue - Dec 20 11:35:38 +0000 2016","favourites_count":170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":370,"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\/1064967265177792513\/muZEe7g0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064967265177792513\/muZEe7g0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811173206887460868\/1542742947","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fair%20Leipzig%20Hall%20H..%20I%20meen%204&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064967265177792513/muZEe7g0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Last-Modified: - - Tue, 20 Nov 2018 19:40:36 GMT - Server: - - ECS (fcn/40FC) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1064967265177792513 - X-Cache: - - HIT - X-Connection-Hash: - - 71df07dcadf450f699f4aeb9f33d8ca3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '129' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b88d83169c5ad58749312e180ccb580a", - oauth_signature="mwtfaPm2G4x5pRnOr79wWj%2F4UOc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '279' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:10 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:10 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379587034389783; Expires=Wed, 02 Dec 2020 00:11:10 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_opz8AkZIlfOslIZLilaQyg=="; Expires=Wed, 02 Dec 2020 - 00:11:10 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - bf3a3e0c9040d3298c82c57bec5b5ce3 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '173' - X-Rate-Limit-Reset: - - '1543796367' - X-Response-Time: - - '141' - X-Transaction: - - 004ad5cc00c8a1a9 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.024,"max_id":1069383442410979328,"max_id_str":"1069383442410979328","query":"hash_tag1","refresh_url":"?since_id=1069383442410979328&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/and_track_retweets_option_creates_an_article_for_each_recent_tweet_retweet.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/and_track_retweets_option_creates_an_article_for_each_recent_tweet_retweet.yml deleted file mode 100644 index 8c800525d..000000000 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/and_track_retweets_option_creates_an_article_for_each_recent_tweet_retweet.yml +++ /dev/null @@ -1,5343 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", - oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796438", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '124247' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:18 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:18 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:18 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e258dfc9229bc838cd9d50c00177c48a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '179' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '182' - X-Transaction: - - 00cf981300b03fb6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93909,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover - jobs for design, product, ux, ui, engineering, pm, research, and more via - Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue - Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373445,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq - Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users - ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, - Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, - Discourse & other open source instances for you, so you don''t have to. - Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun - Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come - and join our team to bring Zammad even further forward! \n\nIt''s gonna be - amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, - Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | - Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri - Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25758,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881888,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692561,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692561,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1163492126556135425/puANjvZp_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 19 Aug 2019 16:43:14 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1163492126556135425 - X-Cache: - - MISS - X-Connection-Hash: - - b76bd2ed91a44066b96fb3713dc830bc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '128' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/508915774816149504/T4g--mOT_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '233790' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 08 Sep 2014 09:50:30 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/508915774816149504 - X-Cache: - - HIT - X-Connection-Hash: - - c20c82c2eb58f26c8bb193866ffa6fcf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '120' - Content-Length: - - '1807' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427776654135297.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ca8db5ad67ab2ff8d7e9453978aa7af6", - oauth_signature="KVwPd6LavD6jIuLek2FCVfK6je0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2670' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644039762192; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:20 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_QpgW5IUf4LYMtKVSgxlyiw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:20 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b33641fb2e72ef7f3887711c86674929 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '899' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 00cccbb0002de89b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:21:45 +0000 2020","id":1224427776654135297,"id_str":"1224427776654135297","text":"@mrflix - I\u2019d prefer to pay for something but thanks though!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrflix","name":"Felix - Niklas","id":15217750,"id_str":"15217750","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427517869809666,"in_reply_to_status_id_str":"1224427517869809666","in_reply_to_user_id":15217750,"in_reply_to_user_id_str":"15217750","in_reply_to_screen_name":"mrflix","user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501282' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - HIT - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427517869809666.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1a244660e2f97a71bf345750e36e98c3", - oauth_signature="PArGPzilTQ9HzlIUQENIFYdSyZg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2712' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644120417217; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_L0kogBi44RZDUuRVJuDt4w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 962314ad139bd7efb6b581060b1d327d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '898' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 0022b3b0007f2a30 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224426978557800449.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1839c84f7948a2fa6ef3a8b86f11fcb8", - oauth_signature="P34TG7JX5tOOMfc1zGXPQJB9n%2FY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796441", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2604' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644169456926; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_yi1It/3F2KszoRZr9LKSPg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e4fb6e6af304e2792218fcdac6b43062 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '897' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '126' - X-Transaction: - - '0070158b000776af' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:18:35 +0000 2020","id":1224426978557800449,"id_str":"1224426978557800449","text":"Lightweight - CRM recommendations? Just want something better than Intercom to keep track - of support contract details and that kind of thing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"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,"user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501284' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - MISS - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1372613935/image_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '87030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1372613935 - X-Cache: - - HIT - X-Connection-Hash: - - af7ab6266348ffac8cbb4aa67ea19c4e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - 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rUonA6AAk6Y7b/yHL1/ecb+I1l9t/wBGq5+y1/E6zWPalcFbdrMpsIYREgRxsiwmj5GE/wDdR6lR5J/uGj1BtO3a3Yz7jdzw0XMtaTEprii1vAJCmyVDaVKBCkkH0IPXSa51OvA+UfeNWwhpta77w7OLwNTtyqy6NVoyiy7sIwsDhTbqDlLiT0KVAg60OdffZ/eTvxyqWQbZrJwmWKCgfDZ7hPzFlR/JlEZzsJSfYax2V+dn/wBs6cIP9SFV/e8b/DXq4+5Wc/WjbXKOI1qP1JTZM6q5EQf5mIDyr71HCfuB99ZTIjrQspUkhSTg63m4fzXb/wC6mv8AD1j1b/Oi/uGu3n4MccZlO3L+bmuVuN6eKRed2US1aradNrUpqh1naJ9MJCmJCkkFKilQICgQPMMHjGcaavxW1v8A0CF/zH/trO3vmV92vWuP+XbctP/ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223188240078909440.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f0983cc8d2ccb9c7c917494a93e9b6bf", - oauth_signature="oEU2K3H3hQX9uVuasaZ%2ByWvMFcg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796442", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2780' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644317459299; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:23 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_rL1CgHU04UGVa6N+GgrTRg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:23 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3607feb94ada43c77a69b20f8a4b7acb - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '896' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '128' - X-Transaction: - - 0077504c00a9eaac - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/772697070549528579/HFxWLHRD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Last-Modified: - - Mon, 05 Sep 2016 07:23:12 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/772697070549528579 - X-Cache: - - HIT - X-Connection-Hash: - - 3b5e4da44f99eb558e596bb3aa7e90f3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220798' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1094738873039704066/-lDgIqkO_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Sun, 10 Feb 2019 23:22:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1094738873039704066 - X-Cache: - - HIT - X-Connection-Hash: - - 78fd6a3d400935ec9bf72ac2b088426e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223103807283810304.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="270a7a4eccf11544f9af28d85299205a", - oauth_signature="mYxomSx1sBr9ZxmdoYp%2F%2BnGdnSg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796445", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '4774' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644528238733; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:25 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_c1fhs9eqFg5/913EVJEC2w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:25 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 5327d9a3ffb06b4f288d507a02c4791d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '895' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '125' - X-Transaction: - - 00f3aa8500266873 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 04:40:46 +0000 2020","id":1223103807283810304,"id_str":"1223103807283810304","text":"One - of the most disgusting videos i haf ever seen. A Chinese person a live a frog. - #China #coronarvirus https:\/\/t.co\/l81uDqdlOl","truncated":false,"entities":{"hashtags":[{"text":"China","indices":[83,89]},{"text":"coronarvirus","indices":[90,103]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"features":{}}]},"extended_entities":{"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"video_info":{"aspect_ratio":[17,30],"duration_millis":54518,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/320x564\/E9_ZjFgFnwun6x9I.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/360x634\/4c_uXMtdSyZ1SxVu.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/544x960\/AzGc7uMNSi0MYPkw.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/pl\/wV6_mmLI-ktcCFXX.m3u8?tag=10"}]},"features":{},"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,"user":{"id":2519467770,"id_str":"2519467770","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","screen_name":"Nami_fight4life","location":"Obviously - somewhere on Earth","description":"#Anipal Share -\u00bbWorld along with other - living beings in peace+harmony #BeUnique #EnjoyLittleThings #StayStrong #Equality4All - #Voice4Voiceless #SaveLives #UCC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3008,"friends_count":3020,"listed_count":78,"created_at":"Sat - May 24 04:37:39 +0000 2014","favourites_count":23188,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519467770\/1482148273","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218882247870353408/MkRU56G4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146377' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Last-Modified: - - Sun, 19 Jan 2020 13:03:48 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1218882247870353408 - X-Cache: - - HIT - X-Connection-Hash: - - 73d106552eb5d9300d9ad791118d59b4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220801' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '76528' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Last-Modified: - - Wed, 24 Apr 2019 14:50:32 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1121064385504534529 - X-Cache: - - HIT - X-Connection-Hash: - - d794e5057dfcb8c176f39934751f5fec - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604350' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222881209384161283.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0845309cb9c27fc1ab21d39b7b4eec23", - oauth_signature="vuGxDfvE5VlqDoEhKQecDdpslgQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796448", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2970' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644848815779; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_AcgGvkyqZMxPuXzd/80cSA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - dfeb647881f0c2d4fd8b5bb70434d07c - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '894' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '137' - X-Transaction: - - 00ab4bde005cb1b6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:56:15 +0000 2020","id":1222881209384161283,"id_str":"1222881209384161283","text":"@heyscrumpy - what\u2019s with you guys & girls? @zammadhq @MrThorstenEckel","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[0,11]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[46,55]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[56,72]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222872891320143878,"in_reply_to_status_id_str":"1222872891320143878","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91561' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222872891320143878.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9a015e27bda3228c0dfd24d91b42e81d", - oauth_signature="fQBcSbPWXxnrtavdbprC8Zw5Azs%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796449", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2903' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644924464551; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_9+Br9A61XrqTbFxPH7rLGg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3a440e7e126060138b069e2c9000fc80 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '893' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '133' - X-Transaction: - - 00df0593008cfe0d - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:23:11 +0000 2020","id":1222872891320143878,"id_str":"1222872891320143878","text":"I - haven\u2019t seen Tweets, articles or books about doing support for small - companies & indie businesses. Have you?\n\nWou\u2026 https:\/\/t.co\/e1cwhjvxEe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e1cwhjvxEe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222872891320143878","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,"user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91562' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59418' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/651386341171703809/t2jAQDHu_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59422' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Tue, 06 Oct 2015 13:17:40 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/651386341171703809 - X-Cache: - - HIT - X-Connection-Hash: - - 9a3325add8fd54617c3964c5b7f17fd5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220805' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/695741537964179461/2xwxUiGU_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '76635' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Fri, 05 Feb 2016 22:49:23 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/695741537964179461 - X-Cache: - - HIT - X-Connection-Hash: - - 07e9c29bdb6caa8e860115725514fa1c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '5465' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '237853' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Last-Modified: - - Wed, 30 Oct 2019 08:56:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1189466673532854272 - X-Cache: - - HIT - X-Connection-Hash: - - b140b365ea73f0d34e1c7c5a2ad7cbc9 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", - oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796452", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2781' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:32 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 608ef1d33f94f7800d75e9f14fc86838 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '892' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '125' - X-Transaction: - - 00dc12c800f73e29 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","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,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604355' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1203364293552427008/_KFRXMoC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '164030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Sat, 07 Dec 2019 17:20:59 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1203364293552427008 - X-Cache: - - HIT - X-Connection-Hash: - - 73f0d65b4198134d08b055a8f32af592 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1013540643988049920/y49Ifgdi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '69311' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Sun, 01 Jul 2018 21:49:34 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1013540643988049920 - X-Cache: - - HIT - X-Connection-Hash: - - b6abf8329d70ed402270f83f3a3d272d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1095305778460798983/mA-tSgeW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '180213' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Tue, 12 Feb 2019 12:55:02 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1095305778460798983 - X-Cache: - - HIT - X-Connection-Hash: - - 4f62d93a7d984d9f6c1bbbd4800d8953 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/832141531255623681/D-mNs8yL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59425' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Thu, 16 Feb 2017 08:14:16 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/832141531255623681 - X-Cache: - - HIT - X-Connection-Hash: - - 8b1044a4643f6b81360bb50474f708f6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218685451793362945/GfdbCX8w_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '192603' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Sun, 19 Jan 2020 00:01:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1218685451793362945 - X-Cache: - - HIT - X-Connection-Hash: - - b894a9af26bc849bf813155bede4d87b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59424' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="aeaf906f8767cadcf09c4c5a10532123", - oauth_signature="zsUNwbi7cqDERnuzS%2Faz%2Fztqxiw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '272' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:36 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645660684099; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:36 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_KyzX7TFtLloo2KN4Sox/Sg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:36 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 480636c4358b5b3f4135db1aaf625a51 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '178' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '181' - X-Transaction: - - 00c549fc00aa1d57 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.07,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="58fd5ddd399a461ee8569ef9df88ee50", - oauth_signature="itBgKdu4ephlrJ7iZzQATIF1eHU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '279' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:37 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:37 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645701833137; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:37 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_G/zRB+RLggbfpaDVNKFV+Q=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:37 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e5e2f313e2022fb301596865209d5d8a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '177' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '119' - X-Transaction: - - 005b4ffc00e580a2 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.011,"max_id":1224575206770954240,"max_id_str":"1224575206770954240","query":"hash_tag1","refresh_url":"?since_id=1224575206770954240&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:37 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9cf95b79f5604737654cc3586a994cc2", - oauth_signature="eqPYzvtb60sqo3UCgYLHxYRaBJ4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796567", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '124247' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656793434467; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_bo02d/mRLZ3dsuphPy1YBw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 28d46a1d9234538c161898fdeb32d5a6 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '176' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '242' - X-Transaction: - - 006af0130039d645 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93910,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover - jobs for design, product, ux, ui, engineering, pm, research, and more via - Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue - Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373449,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq - Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users - ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, - Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, - Discourse & other open source instances for you, so you don''t have to. - Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun - Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come - and join our team to bring Zammad even further forward! \n\nIt''s gonna be - amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, - Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | - Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri - Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25761,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881949,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692558,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692558,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.091,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7410ad8dffcb1424c6f77ec46b914605", - oauth_signature="iAP4GpRETQ8HDbs5Gmj7dWTZRh0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '273' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656877966283; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_ARCDxbX8FLNE9hnHrhkmTw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 8bf48bdb333352d6cdd20ff4806bbbab - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '175' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00a1d15600695a9b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.009,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9d0fac0820ed0f353ebc216e1d7d6b10", - oauth_signature="yhv7odp6G09X%2FoM4u4Dz8DCGLhA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '278' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656911953573; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_g2vaZ2vWRME57HD7F1MWVA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6736ab562f0f0ee209994ecd260a1ca8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '174' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00b82890000b03a1 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.01,"max_id":1224575676411310081,"max_id_str":"1224575676411310081","query":"hash_tag1","refresh_url":"?since_id=1224575676411310081&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:29 GMT -recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/for_responses_to_other_tweets_creates_articles_for_parent_tweets_as_well.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/for_responses_to_other_tweets_creates_articles_for_parent_tweets_as_well.yml new file mode 100644 index 000000000..3c8e1c562 --- /dev/null +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/for_responses_to_other_tweets_creates_articles_for_parent_tweets_as_well.yml @@ -0,0 +1,437 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", + oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796438", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '124247' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:18 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:18 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:18 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - e258dfc9229bc838cd9d50c00177c48a + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '179' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '182' + X-Transaction: + - 00cf981300b03fb6 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[{"created_at":"Thu + Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover + jobs for design, product, ux, ui, engineering, pm, research, and more via + Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue + Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue + Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq + Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users + ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, + Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, + Discourse & other open source instances for you, so you don''t have to. + Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun + Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come + and join our team to bring Zammad even further forward! \n\nIt''s gonna be + amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, + Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | + Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri + Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub + Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, + testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:18 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '76528' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/png + Date: + - Tue, 04 Feb 2020 06:07:27 GMT + Last-Modified: + - Wed, 24 Apr 2019 14:50:32 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1121064385504534529 + X-Cache: + - HIT + X-Connection-Hash: + - d794e5057dfcb8c176f39934751f5fec + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:27 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '237853' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Last-Modified: + - Wed, 30 Oct 2019 08:56:48 GMT + Server: + - ECS (tpe/68A1) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1189466673532854272 + X-Cache: + - HIT + X-Connection-Hash: + - b140b365ea73f0d34e1c7c5a2ad7cbc9 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '108' + Content-Length: + - '3863' + body: + encoding: ASCII-8BIT + string: !binary |- + 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", + oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796452", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2781' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:32 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 608ef1d33f94f7800d75e9f14fc86838 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '892' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '125' + X-Transaction: + - 00dc12c800f73e29 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","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,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_refuses_to_import_any_other_tweets_for_the_next_15_minutes.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_imports_max__120_articles_every_15_minutes.yml similarity index 87% rename from test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_refuses_to_import_any_other_tweets_for_the_next_15_minutes.yml rename to test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_imports_max__120_articles_every_15_minutes.yml index 22c9c7efc..ade3118b3 100644 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_refuses_to_import_any_other_tweets_for_the_next_15_minutes.yml +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_imports_max__120_articles_every_15_minutes.yml @@ -12,8 +12,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fbeaf7b04f068bc6c7aed7d7f63744a7", oauth_signature="zhWokeq%2BDLAZRk0sqSM7tJxuTBU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486945", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486945", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -5706,8 +5705,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2553bac5cc7bee13817cadeeba73884c", oauth_signature="WlKS2r7Z5yOdG%2BgqT7F1oyGaWW0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486965", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486965", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -5961,8 +5959,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fbfb9cb746a2b0f42644518b7feb4054", oauth_signature="3aOJrv2cQ1UQMUpOPOsTJ6kEcTI%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486967", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486967", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -6773,8 +6770,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="50cb492ebc7df19d91f59922b9a73151", oauth_signature="NMT9KGlpvj9N3cQ1Ae109Mth54M%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486970", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486970", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -7027,8 +7023,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9aa6070de526c5d802adce5ec4ed039f", oauth_signature="LZtQs%2FUGqh1qF1vduNihH8P6KuU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486971", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486971", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -7171,8 +7166,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2b0cf7c28571a9dc72e75103abe91158", oauth_signature="%2BJgqN%2BdkISGwP0ZQh6ca5JEG6q4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486973", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486973", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -7322,8 +7316,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f3742ca5bcab23bb6680864c511c5113", oauth_signature="ynp4IMCiZaIfa%2BU8v%2FTbqpIJBNo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486974", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486974", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -8521,8 +8514,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="21852650049a185013cd21caabff95ce", oauth_signature="bVQJ%2BMMvHdHPKZDQK3WM2XpzcxY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486978", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486978", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -11573,8 +11565,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b8c262afd5b16ab5d2dadac6aa19f393", oauth_signature="8%2F5QLBVhojORAqOlBa%2FyTBHDlTw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486988", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486988", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -11827,8 +11818,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="966c2dc4f5d63c1c37f7b15013868e97", oauth_signature="tzDhQSk7b33S%2BR4%2Fm98m1G%2B4Zt0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486990", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486990", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -12027,8 +12017,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8a8ae6082c5920d1b0d3a18d3f6e1605", oauth_signature="ZaDgOGZuD38ZRzAred%2FWATNWllw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486991", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486991", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -13333,8 +13322,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="a8943644c28a59e0b7eb5a33f1369839", oauth_signature="rjlJceaOVQtsvN4GBHQ1kC4U1MY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486998", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583486998", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -14417,8 +14405,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="a4b30f96e5c19b60d1e42c23b7bfd06f", oauth_signature="6YBLMEo9dFIPOPS3mLjhZpuhDNY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487003", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487003", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -16895,8 +16882,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b943b793c831429d27b7b35ca60ab6be", oauth_signature="SWzfgxxiNxjalUvo9naYSMWd%2Fkw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487008", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487008", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -17703,8 +17689,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b6920e55adb0d66fb7890c1a3398fb2e", oauth_signature="LViMyqrZGIUlJgOZUAD%2FW5eRSbE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487011", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487011", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -17848,8 +17833,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b6af60f2c022fe5fdb30f4db14297b98", oauth_signature="lLL42Chd48YoFK80hMHB9KXjjdY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487012", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487012", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -17993,8 +17977,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f9f164d3779c77d17e08160d771babe9", oauth_signature="OkFiLzqRBXGG3zY1Jej%2FVog5ddM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487014", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487014", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -18860,8 +18843,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="d41d51d24d400a857b99178b666e3c2b", oauth_signature="Ya22ol%2FisBnz6814ghujJOn9kWY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487017", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487017", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -20735,8 +20717,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9cde69266a14822c3e8db3782b8d8ea6", oauth_signature="%2FNuNlDZVnanoeB9mXOsjBpaCBvQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487022", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487022", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -21826,8 +21807,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0d26937a609c7996b2c81fc523822599", oauth_signature="x%2BEPIbpVts%2Baykd%2BEnKasV6x%2BdI%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487026", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487026", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -22025,8 +22005,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f8795fce764489b795ada760d645c6a6", oauth_signature="OavThikgsJBq3N%2FL4%2B3zJQrc8IE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487027", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487027", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -22557,8 +22536,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="cd8ee50116c1f1dddcecd030b66c9490", oauth_signature="zeI9e9LSxdBumtaIe5ysRiuJExE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487029", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487029", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -23653,8 +23631,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="af2707a027ffa061a01997c97274ed0d", oauth_signature="79tPfPQWFhVnfNOftlDTTu8nR9A%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487033", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487033", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -25721,8 +25698,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="6c1496d0262c1628c519f0886e1985cd", oauth_signature="%2BvX%2FiwwAOAytpvnJ9WEyrqkCb18%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487037", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487037", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -26363,8 +26339,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="5bda530aad621c9ada4d440bb714cd03", oauth_signature="cgaOo70dNQi0XZyMTwHOWUsJNms%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487039", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487039", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -26782,8 +26757,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="098390bbf9a7d2e3fe0af72d47c8a312", oauth_signature="S9pkC%2BL36S5wlTBiMFVkPwSdSGI%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487055", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487055", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -27156,8 +27130,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="d775d6e44452ffeaf1430531b3c53af5", oauth_signature="XRU33jGOEn2iHyNBvBWJ0YfsK8c%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487061", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1583487061", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -29280,8 +29253,7 @@ http_interactions: Authorization: - OAuth oauth_consumer_key="REDACTED", oauth_nonce="556cbcf9d1aad1325937eeebb83dc268", oauth_signature="eVBmi3EGXH0WWlTrWbI5ASsZNw0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580993700", oauth_token="REDACTED", - oauth_version="1.0" + oauth_timestamp="1580993700", oauth_token="REDACTED", oauth_version="1.0" Connection: - close Host: @@ -29317,4 +29289,6228 @@ http_interactions: string: '{"errors":[{"code":135,"message":"Timestamp out of bounds."}]}' http_version: recorded_at: Thu, 06 Feb 2020 12:55:00 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="29c686cdc3fff4a3297cab1d69773290", + oauth_signature="HTk6V4hWgmyVbxKCNpAetw464Dc%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '238271' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:26 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:26 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403362625872382; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:26 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_141mz2zzEANBEmvUGSQY7Q=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:26 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - c77831300b9e1947161c032f7728b1e4 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '179' + X-Rate-Limit-Reset: + - '1584034526' + X-Response-Time: + - '321' + X-Transaction: + - '00720085004dc190' + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[{"created_at":"Thu Mar 12 15:37:08 +0000 2020","id":1238126889941729283,"id_str":"1238126889941729283","text":"Great + news: @zammadhq, the ticketing software that powers \nour CDR Link platform + for human rights responders, just\u2026 https:\/\/t.co\/od91V1jiEX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[12,21]}],"urls":[{"url":"https:\/\/t.co\/od91V1jiEX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1238126889941729283","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1030561942610563072,"id_str":"1030561942610563072","name":"Center + for Digital Resilience","screen_name":"cdr_tech","location":"","description":"Building + resilient systems to keep civil society safe online. \n\nUpdates on CDR Link, + our secure, mobile-friendly helpdesk platform and other CDR tech.","url":"https:\/\/t.co\/WWaNZ5aJhI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WWaNZ5aJhI","expanded_url":"https:\/\/digiresilience.org","display_url":"digiresilience.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":24,"listed_count":2,"created_at":"Fri + Aug 17 21:08:08 +0000 2018","favourites_count":2,"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\/1173614726431105024\/8eDxeepU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1173614726431105024\/8eDxeepU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1030561942610563072\/1568646531","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Thu + Mar 12 14:37:47 +0000 2020","id":1238111951940661249,"id_str":"1238111951940661249","text":"Coronavirus + blah blah blah \n\nBut also, @zammadhq, the ticketing software that powers + @cdr_tech''s Link platform for\u2026 https:\/\/t.co\/WPcDhnnfKu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[39,48]},{"screen_name":"cdr_tech","name":"Center + for Digital Resilience","id":1030561942610563072,"id_str":"1030561942610563072","indices":[85,94]}],"urls":[{"url":"https:\/\/t.co\/WPcDhnnfKu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1238111951940661249","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12195,"id_str":"12195","name":"Josh + Levy","screen_name":"levjoy","location":"Northampton, MA","description":"Center + for Digital Resilience https:\/\/t.co\/QGnZpN0kpG \nDigital Security Exchange + https:\/\/t.co\/mAaNkYX28a\nFormer @accessnow, @freepress","url":"https:\/\/t.co\/WWaNZ5aJhI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WWaNZ5aJhI","expanded_url":"https:\/\/digiresilience.org","display_url":"digiresilience.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/QGnZpN0kpG","expanded_url":"http:\/\/digiresilience.org","display_url":"digiresilience.org","indices":[30,53]},{"url":"https:\/\/t.co\/mAaNkYX28a","expanded_url":"http:\/\/dsx.us","display_url":"dsx.us","indices":[81,104]}]}},"protected":false,"followers_count":4022,"friends_count":1752,"listed_count":272,"created_at":"Mon + Nov 13 00:49:10 +0000 2006","favourites_count":2493,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15536,"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\/1158762045325631493\/0Y0m2-rR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158762045325631493\/0Y0m2-rR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12195\/1565105429","profile_link_color":"ED1F1F","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"},"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"},{"created_at":"Thu + Mar 12 13:34:21 +0000 2020","id":1238095990403588096,"id_str":"1238095990403588096","text":"#CoronavirusPandemic + #CoronaOutbreak #CONVID19 #KeepCalm https:\/\/t.co\/Y5lG8ptM0o","truncated":false,"entities":{"hashtags":[{"text":"CoronavirusPandemic","indices":[0,20]},{"text":"CoronaOutbreak","indices":[21,36]},{"text":"CONVID19","indices":[37,46]},{"text":"KeepCalm","indices":[47,56]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1238095959713816577,"id_str":"1238095959713816577","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ES6ZtzSWoAEAKMO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ES6ZtzSWoAEAKMO.jpg","url":"https:\/\/t.co\/Y5lG8ptM0o","display_url":"pic.twitter.com\/Y5lG8ptM0o","expanded_url":"https:\/\/twitter.com\/Zammad\/status\/1238095990403588096\/photo\/1","type":"photo","sizes":{"medium":{"w":220,"h":124,"resize":"fit"},"small":{"w":220,"h":124,"resize":"fit"},"large":{"w":220,"h":124,"resize":"fit"},"thumb":{"w":124,"h":124,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1238095959713816577,"id_str":"1238095959713816577","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ES6ZtzSWoAEAKMO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ES6ZtzSWoAEAKMO.jpg","url":"https:\/\/t.co\/Y5lG8ptM0o","display_url":"pic.twitter.com\/Y5lG8ptM0o","expanded_url":"https:\/\/twitter.com\/Zammad\/status\/1238095990403588096\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":220,"h":124,"resize":"fit"},"small":{"w":220,"h":124,"resize":"fit"},"large":{"w":220,"h":124,"resize":"fit"},"thumb":{"w":124,"h":124,"resize":"crop"}},"video_info":{"aspect_ratio":[55,31],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/ES6ZtzSWoAEAKMO.mp4"}]}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"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"},{"created_at":"Thu + Mar 12 09:09:29 +0000 2020","id":1238029333605822465,"id_str":"1238029333605822465","text":"I + don\u2019t think our people can live without handshakes \ud83e\udd26\ud83c\udffc\u200d\u2642\ufe0f + #CoronavirusPandemic #CoronaOutbreak #COVID","truncated":false,"entities":{"hashtags":[{"text":"CoronavirusPandemic","indices":[59,79]},{"text":"CoronaOutbreak","indices":[80,95]},{"text":"COVID","indices":[96,102]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Mar 12 06:47:04 +0000 2020","id":1237993494490288129,"id_str":"1237993494490288129","text":"RT + @telenorpakistan: Gear up for MORE! \u26a1 https:\/\/t.co\/KFNX8Jvs39","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"telenorpakistan","name":"Telenor + Pakistan","id":50837438,"id_str":"50837438","indices":[3,19]}],"urls":[],"media":[{"id":1237989493581451264,"id_str":"1237989493581451264","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1237989493581451264\/pu\/img\/64Lh_yoQ0eo8ntLh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1237989493581451264\/pu\/img\/64Lh_yoQ0eo8ntLh.jpg","url":"https:\/\/t.co\/KFNX8Jvs39","display_url":"pic.twitter.com\/KFNX8Jvs39","expanded_url":"https:\/\/twitter.com\/telenorpakistan\/status\/1237992684415000579\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":1200,"h":674,"resize":"fit"},"medium":{"w":1200,"h":674,"resize":"fit"}},"source_status_id":1237992684415000579,"source_status_id_str":"1237992684415000579","source_user_id":50837438,"source_user_id_str":"50837438"}]},"extended_entities":{"media":[{"id":1237989493581451264,"id_str":"1237989493581451264","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1237989493581451264\/pu\/img\/64Lh_yoQ0eo8ntLh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1237989493581451264\/pu\/img\/64Lh_yoQ0eo8ntLh.jpg","url":"https:\/\/t.co\/KFNX8Jvs39","display_url":"pic.twitter.com\/KFNX8Jvs39","expanded_url":"https:\/\/twitter.com\/telenorpakistan\/status\/1237992684415000579\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":1200,"h":674,"resize":"fit"},"medium":{"w":1200,"h":674,"resize":"fit"}},"source_status_id":1237992684415000579,"source_status_id_str":"1237992684415000579","source_user_id":50837438,"source_user_id_str":"50837438","video_info":{"aspect_ratio":[600,337],"duration_millis":10000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1237989493581451264\/pu\/pl\/AVimPwobyQes_8Gc.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1237989493581451264\/pu\/vid\/480x270\/HcAps5wddrKF6wdy.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1237989493581451264\/pu\/vid\/640x360\/YeVZOP60ujRKGK32.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1237989493581451264\/pu\/vid\/1200x674\/6NRxxvj2WmAoBzGW.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":50837438,"id_str":"50837438","name":"Telenor + Pakistan","screen_name":"telenorpakistan","location":"Pakistan","description":"Talk + to us! We\u2019re here to resolve your queries (and have a bit of fun\ud83d\ude09)","url":"https:\/\/t.co\/VNlr7dLUKx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VNlr7dLUKx","expanded_url":"http:\/\/www.telenor.com.pk","display_url":"telenor.com.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":333269,"friends_count":15,"listed_count":251,"created_at":"Fri + Jun 26 00:23:08 +0000 2009","favourites_count":11310,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":46067,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/979329761074995200\/KSVV0xHZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979329761074995200\/KSVV0xHZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50837438\/1571663514","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Mar 12 06:43:51 +0000 2020","id":1237992684415000579,"id_str":"1237992684415000579","text":"Gear + up for MORE! \u26a1 https:\/\/t.co\/KFNX8Jvs39","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1237989493581451264,"id_str":"1237989493581451264","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1237989493581451264\/pu\/img\/64Lh_yoQ0eo8ntLh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1237989493581451264\/pu\/img\/64Lh_yoQ0eo8ntLh.jpg","url":"https:\/\/t.co\/KFNX8Jvs39","display_url":"pic.twitter.com\/KFNX8Jvs39","expanded_url":"https:\/\/twitter.com\/telenorpakistan\/status\/1237992684415000579\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":1200,"h":674,"resize":"fit"},"medium":{"w":1200,"h":674,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1237989493581451264,"id_str":"1237989493581451264","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1237989493581451264\/pu\/img\/64Lh_yoQ0eo8ntLh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1237989493581451264\/pu\/img\/64Lh_yoQ0eo8ntLh.jpg","url":"https:\/\/t.co\/KFNX8Jvs39","display_url":"pic.twitter.com\/KFNX8Jvs39","expanded_url":"https:\/\/twitter.com\/telenorpakistan\/status\/1237992684415000579\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":1200,"h":674,"resize":"fit"},"medium":{"w":1200,"h":674,"resize":"fit"}},"video_info":{"aspect_ratio":[600,337],"duration_millis":10000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1237989493581451264\/pu\/pl\/AVimPwobyQes_8Gc.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1237989493581451264\/pu\/vid\/480x270\/HcAps5wddrKF6wdy.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1237989493581451264\/pu\/vid\/640x360\/YeVZOP60ujRKGK32.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1237989493581451264\/pu\/vid\/1200x674\/6NRxxvj2WmAoBzGW.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50837438,"id_str":"50837438","name":"Telenor + Pakistan","screen_name":"telenorpakistan","location":"Pakistan","description":"Talk + to us! We\u2019re here to resolve your queries (and have a bit of fun\ud83d\ude09)","url":"https:\/\/t.co\/VNlr7dLUKx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VNlr7dLUKx","expanded_url":"http:\/\/www.telenor.com.pk","display_url":"telenor.com.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":333269,"friends_count":15,"listed_count":251,"created_at":"Fri + Jun 26 00:23:08 +0000 2009","favourites_count":11310,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":46067,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/979329761074995200\/KSVV0xHZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979329761074995200\/KSVV0xHZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50837438\/1571663514","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":102,"favorite_count":189,"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"},{"created_at":"Thu + Mar 12 03:24:20 +0000 2020","id":1237942473533595653,"id_str":"1237942473533595653","text":"RT + @PhillyD: HOLY SHIT.\n\nIn just the last 30 minutes we learned that:\n\nTravel + from Europe is going to stop for 30 days.\n\nTom Hanks & Rita W\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PhillyD","name":"Philip + DeFranco","id":6351572,"id_str":"6351572","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Mar 12 01:40:07 +0000 2020","id":1237916249339752448,"id_str":"1237916249339752448","text":"HOLY + SHIT.\n\nIn just the last 30 minutes we learned that:\n\nTravel from Europe + is going to stop for 30 days.\n\nTom Han\u2026 https:\/\/t.co\/dyUKAaFiWL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dyUKAaFiWL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237916249339752448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6351572,"id_str":"6351572","name":"Philip + DeFranco","screen_name":"PhillyD","location":"California, USA","description":"Perpetually + tired dad, husband, producer, host, and CEO of Rogue Rocket. https:\/\/t.co\/ge2RT08D4K + +1 (813) 213-4423","url":"https:\/\/t.co\/xQdWg6v8XC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xQdWg6v8XC","expanded_url":"http:\/\/youtube.com\/defranco","display_url":"youtube.com\/defranco","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ge2RT08D4K","expanded_url":"http:\/\/YouTube.com\/aConvoWith","display_url":"YouTube.com\/aConvoWith","indices":[73,96]}]}},"protected":false,"followers_count":1264197,"friends_count":1367,"listed_count":7108,"created_at":"Sat + May 26 23:56:07 +0000 2007","favourites_count":13362,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":54810,"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\/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\/1169427124815462400\/l6pdkVR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169427124815462400\/l6pdkVR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6351572\/1506838694","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41457,"favorite_count":281363,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":41457,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Mar 12 03:23:58 +0000 2020","id":1237942382596947968,"id_str":"1237942382596947968","text":"RT + @tomhanks: https:\/\/t.co\/pgybgIYJdG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tomhanks","name":"Tom + Hanks","id":50374439,"id_str":"50374439","indices":[3,12]}],"urls":[],"media":[{"id":1237909782834466816,"id_str":"1237909782834466816","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/ES3wY4XUUAAq5nX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ES3wY4XUUAAq5nX.png","url":"https:\/\/t.co\/pgybgIYJdG","display_url":"pic.twitter.com\/pgybgIYJdG","expanded_url":"https:\/\/twitter.com\/tomhanks\/status\/1237909897020207104\/photo\/1","type":"photo","sizes":{"medium":{"w":508,"h":576,"resize":"fit"},"small":{"w":508,"h":576,"resize":"fit"},"large":{"w":508,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1237909897020207104,"source_status_id_str":"1237909897020207104","source_user_id":50374439,"source_user_id_str":"50374439"}]},"extended_entities":{"media":[{"id":1237909782834466816,"id_str":"1237909782834466816","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/ES3wY4XUUAAq5nX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ES3wY4XUUAAq5nX.png","url":"https:\/\/t.co\/pgybgIYJdG","display_url":"pic.twitter.com\/pgybgIYJdG","expanded_url":"https:\/\/twitter.com\/tomhanks\/status\/1237909897020207104\/photo\/1","type":"photo","sizes":{"medium":{"w":508,"h":576,"resize":"fit"},"small":{"w":508,"h":576,"resize":"fit"},"large":{"w":508,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1237909897020207104,"source_status_id_str":"1237909897020207104","source_user_id":50374439,"source_user_id_str":"50374439"}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Mar 12 01:14:53 +0000 2020","id":1237909897020207104,"id_str":"1237909897020207104","text":"https:\/\/t.co\/pgybgIYJdG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1237909782834466816,"id_str":"1237909782834466816","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/ES3wY4XUUAAq5nX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ES3wY4XUUAAq5nX.png","url":"https:\/\/t.co\/pgybgIYJdG","display_url":"pic.twitter.com\/pgybgIYJdG","expanded_url":"https:\/\/twitter.com\/tomhanks\/status\/1237909897020207104\/photo\/1","type":"photo","sizes":{"medium":{"w":508,"h":576,"resize":"fit"},"small":{"w":508,"h":576,"resize":"fit"},"large":{"w":508,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1237909782834466816,"id_str":"1237909782834466816","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/ES3wY4XUUAAq5nX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ES3wY4XUUAAq5nX.png","url":"https:\/\/t.co\/pgybgIYJdG","display_url":"pic.twitter.com\/pgybgIYJdG","expanded_url":"https:\/\/twitter.com\/tomhanks\/status\/1237909897020207104\/photo\/1","type":"photo","sizes":{"medium":{"w":508,"h":576,"resize":"fit"},"small":{"w":508,"h":576,"resize":"fit"},"large":{"w":508,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50374439,"id_str":"50374439","name":"Tom + Hanks","screen_name":"tomhanks","location":"Los Angeles","description":"I''m + that actor in some of the movies you liked and some you didn''t. Sometimes + I''m in pretty good shape, other times I''m not. Hey, you gotta live, you + know?","url":"https:\/\/t.co\/mt8FScvcYZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mt8FScvcYZ","expanded_url":"http:\/\/www.playtone.com","display_url":"playtone.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16225091,"friends_count":25,"listed_count":45922,"created_at":"Wed + Jun 24 17:39:05 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":926,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EFFFBF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1193951507026075648\/Ot3GmqGK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193951507026075648\/Ot3GmqGK_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":211861,"favorite_count":942538,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":211861,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Wed + Mar 11 20:08:42 +0000 2020","id":1237832844006866945,"id_str":"1237832844006866945","text":"RT + @derschulmanager: @sportherz1 @sbkDiggi17 @JStanggassinger Ja. Die Daten zu + importieren und Zugangscodes auszudrucken dauert keine halbe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"derschulmanager","name":"Schulmanager + Online","id":960201549342543872,"id_str":"960201549342543872","indices":[3,19]},{"screen_name":"sportherz1","name":"Dieter + Herzberger","id":2181009514,"id_str":"2181009514","indices":[21,32]},{"screen_name":"sbkDiggi17","name":"Silke + Bettina Kargl","id":913060319601336322,"id_str":"913060319601336322","indices":[33,44]},{"screen_name":"JStanggassinger","name":"J. + Stanggassinger","id":852164190395666432,"id_str":"852164190395666432","indices":[45,61]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913060319601336322,"id_str":"913060319601336322","name":"Silke + Bettina Kargl","screen_name":"sbkDiggi17","location":"K\u00f6ln, Deutschland","description":"|@schoolisopen + 4.0| Israel| \nGender-Equity| Inclusion & Diversity| Alles oder Nichts zum + Eishockey @Silke_Eventfan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":267,"friends_count":965,"listed_count":4,"created_at":"Wed + Sep 27 15:18:38 +0000 2017","favourites_count":14186,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10535,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976738492284854272\/wVMMw_v6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976738492284854272\/wVMMw_v6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913060319601336322\/1506540714","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Mar 11 18:21:21 +0000 2020","id":1237805830008983553,"id_str":"1237805830008983553","text":"@sportherz1 + @sbkDiggi17 @JStanggassinger Ja. Die Daten zu importieren und Zugangscodes + auszudrucken dauert keine ha\u2026 https:\/\/t.co\/zMYjCnrozu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sportherz1","name":"Dieter + Herzberger","id":2181009514,"id_str":"2181009514","indices":[0,11]},{"screen_name":"sbkDiggi17","name":"Silke + Bettina Kargl","id":913060319601336322,"id_str":"913060319601336322","indices":[12,23]},{"screen_name":"JStanggassinger","name":"J. + Stanggassinger","id":852164190395666432,"id_str":"852164190395666432","indices":[24,40]}],"urls":[{"url":"https:\/\/t.co\/zMYjCnrozu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237805830008983553","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1237805077534040064,"in_reply_to_status_id_str":"1237805077534040064","in_reply_to_user_id":2181009514,"in_reply_to_user_id_str":"2181009514","in_reply_to_screen_name":"sportherz1","user":{"id":960201549342543872,"id_str":"960201549342543872","name":"Schulmanager + Online","screen_name":"derschulmanager","location":"Germany","description":"Wir + vereinfachen die Organisation Ihres Schulalltags! Tweets @JStanggassinger + ^js @herrmayr ^cm Kontakt https:\/\/t.co\/VP2FaUjibL","url":"https:\/\/t.co\/8sXj8eGNit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8sXj8eGNit","expanded_url":"http:\/\/www.schulmanager-online.de","display_url":"schulmanager-online.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/VP2FaUjibL","expanded_url":"https:\/\/www.schulmanager-online.de\/impressum.html","display_url":"schulmanager-online.de\/impressum.html","indices":[104,127]}]}},"protected":false,"followers_count":623,"friends_count":528,"listed_count":3,"created_at":"Sun + Feb 04 17:21:03 +0000 2018","favourites_count":317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122,"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\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960201549342543872\/1519142578","profile_link_color":"428BCA","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"},"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":"de"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Wed + Mar 11 18:21:21 +0000 2020","id":1237805830008983553,"id_str":"1237805830008983553","text":"@sportherz1 + @sbkDiggi17 @JStanggassinger Ja. Die Daten zu importieren und Zugangscodes + auszudrucken dauert keine ha\u2026 https:\/\/t.co\/zMYjCnrozu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sportherz1","name":"Dieter + Herzberger","id":2181009514,"id_str":"2181009514","indices":[0,11]},{"screen_name":"sbkDiggi17","name":"Silke + Bettina Kargl","id":913060319601336322,"id_str":"913060319601336322","indices":[12,23]},{"screen_name":"JStanggassinger","name":"J. + Stanggassinger","id":852164190395666432,"id_str":"852164190395666432","indices":[24,40]}],"urls":[{"url":"https:\/\/t.co\/zMYjCnrozu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237805830008983553","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1237805077534040064,"in_reply_to_status_id_str":"1237805077534040064","in_reply_to_user_id":2181009514,"in_reply_to_user_id_str":"2181009514","in_reply_to_screen_name":"sportherz1","user":{"id":960201549342543872,"id_str":"960201549342543872","name":"Schulmanager + Online","screen_name":"derschulmanager","location":"Germany","description":"Wir + vereinfachen die Organisation Ihres Schulalltags! Tweets @JStanggassinger + ^js @herrmayr ^cm Kontakt https:\/\/t.co\/VP2FaUjibL","url":"https:\/\/t.co\/8sXj8eGNit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8sXj8eGNit","expanded_url":"http:\/\/www.schulmanager-online.de","display_url":"schulmanager-online.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/VP2FaUjibL","expanded_url":"https:\/\/www.schulmanager-online.de\/impressum.html","display_url":"schulmanager-online.de\/impressum.html","indices":[104,127]}]}},"protected":false,"followers_count":623,"friends_count":528,"listed_count":3,"created_at":"Sun + Feb 04 17:21:03 +0000 2018","favourites_count":317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122,"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\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960201549342543872\/1519142578","profile_link_color":"428BCA","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"},"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":"de"},{"created_at":"Wed + Mar 11 17:25:11 +0000 2020","id":1237791692587237377,"id_str":"1237791692587237377","text":"@MaurerStef + @froehlichfresch Umfangreichere Anleitung:\nhttps:\/\/t.co\/K7xAFdQ84g\n(Schritt + 3 kann ignoriert werden, de\u2026 https:\/\/t.co\/9xOoDqVDtn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaurerStef","name":"Stefanie + Maurer","id":37964821,"id_str":"37964821","indices":[0,11]},{"screen_name":"froehlichfresch","name":"Anna + Fr\u00f6hlich","id":1132233873444790272,"id_str":"1132233873444790272","indices":[12,28]}],"urls":[{"url":"https:\/\/t.co\/K7xAFdQ84g","expanded_url":"https:\/\/schulmanager.zammad.com\/help\/de-de\/17-fragen-zur-einfuhrung\/68-was-sind-sinnvolle-erste-schritte-um-den-schulmanager-einzurichten","display_url":"schulmanager.zammad.com\/help\/de-de\/17-\u2026","indices":[55,78]},{"url":"https:\/\/t.co\/9xOoDqVDtn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237791692587237377","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1237791568712601601,"in_reply_to_status_id_str":"1237791568712601601","in_reply_to_user_id":960201549342543872,"in_reply_to_user_id_str":"960201549342543872","in_reply_to_screen_name":"derschulmanager","user":{"id":960201549342543872,"id_str":"960201549342543872","name":"Schulmanager + Online","screen_name":"derschulmanager","location":"Germany","description":"Wir + vereinfachen die Organisation Ihres Schulalltags! Tweets @JStanggassinger + ^js @herrmayr ^cm Kontakt https:\/\/t.co\/VP2FaUjibL","url":"https:\/\/t.co\/8sXj8eGNit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8sXj8eGNit","expanded_url":"http:\/\/www.schulmanager-online.de","display_url":"schulmanager-online.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/VP2FaUjibL","expanded_url":"https:\/\/www.schulmanager-online.de\/impressum.html","display_url":"schulmanager-online.de\/impressum.html","indices":[104,127]}]}},"protected":false,"followers_count":623,"friends_count":528,"listed_count":3,"created_at":"Sun + Feb 04 17:21:03 +0000 2018","favourites_count":317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122,"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\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960201549342543872\/1519142578","profile_link_color":"428BCA","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"},"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":"de"},{"created_at":"Wed + Mar 11 08:58:26 +0000 2020","id":1237664163968815104,"id_str":"1237664163968815104","text":"@lankynshady + 23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lankynshady","name":"misfit + rao","id":2506638318,"id_str":"2506638318","indices":[0,12]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1237439258291589122,"in_reply_to_status_id_str":"1237439258291589122","in_reply_to_user_id":2506638318,"in_reply_to_user_id_str":"2506638318","in_reply_to_screen_name":"lankynshady","user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Wed + Mar 11 07:11:23 +0000 2020","id":1237637224008736770,"id_str":"1237637224008736770","text":"RT + @premierleague: ICYMI: Man City v Arsenal has been postponed as a precautionary + measure\n\n\u27a1\ufe0f https:\/\/t.co\/v1WOnC7AXT https:\/\/t.co\/C6UjVaf\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"premierleague","name":"Premier + League","id":343627165,"id_str":"343627165","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/v1WOnC7AXT","expanded_url":"https:\/\/preml.ge\/gu3qc","display_url":"preml.ge\/gu3qc","indices":[95,118]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Mar 11 07:08:03 +0000 2020","id":1237636387811274754,"id_str":"1237636387811274754","text":"ICYMI: + Man City v Arsenal has been postponed as a precautionary measure\n\n\u27a1\ufe0f + https:\/\/t.co\/v1WOnC7AXT https:\/\/t.co\/C6UjVafDwA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/v1WOnC7AXT","expanded_url":"https:\/\/preml.ge\/gu3qc","display_url":"preml.ge\/gu3qc","indices":[76,99]}],"media":[{"id":1237636386003574784,"id_str":"1237636386003574784","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESz3vFzXYAAZpzs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESz3vFzXYAAZpzs.jpg","url":"https:\/\/t.co\/C6UjVafDwA","display_url":"pic.twitter.com\/C6UjVafDwA","expanded_url":"https:\/\/twitter.com\/premierleague\/status\/1237636387811274754\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":930,"h":620,"resize":"fit"},"large":{"w":930,"h":620,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1237636386003574784,"id_str":"1237636386003574784","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESz3vFzXYAAZpzs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESz3vFzXYAAZpzs.jpg","url":"https:\/\/t.co\/C6UjVafDwA","display_url":"pic.twitter.com\/C6UjVafDwA","expanded_url":"https:\/\/twitter.com\/premierleague\/status\/1237636387811274754\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":930,"h":620,"resize":"fit"},"large":{"w":930,"h":620,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/www.spredfast.com\/\" rel=\"nofollow\"\u003eKhoros\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343627165,"id_str":"343627165","name":"Premier + League","screen_name":"premierleague","location":"","description":"The official + Twitter account of the Premier League \ud83d\udcf1 @OfficialFPL | \ud83c\uddee\ud83c\uddf3 + @PLforIndia | \ud83c\uddfa\ud83c\uddf8 @PLinUSA Join us on YouTube \ud83d\udc49 + https:\/\/t.co\/mE5i2L4M3L","url":"https:\/\/t.co\/IMNRVHC2Kt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IMNRVHC2Kt","expanded_url":"http:\/\/premierleague.com","display_url":"premierleague.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/mE5i2L4M3L","expanded_url":"http:\/\/youtube.com\/premierleague","display_url":"youtube.com\/premierleague","indices":[118,141]}]}},"protected":false,"followers_count":21711759,"friends_count":82,"listed_count":26528,"created_at":"Wed + Jul 27 21:09:32 +0000 2011","favourites_count":1768,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":114948,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"050528","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204508293596635137\/ssjmIYjS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204508293596635137\/ssjmIYjS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343627165\/1583751709","profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"171838","profile_text_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":822,"favorite_count":4992,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":822,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Mar 11 06:35:37 +0000 2020","id":1237628223019778049,"id_str":"1237628223019778049","text":"@mono_tek + Ich habe gesehen, bei Zammad docker compose war recht viel Bewegung die letzten + Tage.\nMeinst du es ist ei\u2026 https:\/\/t.co\/yN4cf5qhCq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mono_tek","name":"Andr\u00e9 + Bauer","id":294510881,"id_str":"294510881","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/yN4cf5qhCq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237628223019778049","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"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":294510881,"in_reply_to_user_id_str":"294510881","in_reply_to_screen_name":"mono_tek","user":{"id":1189002552,"id_str":"1189002552","name":"Krawall-Ossi","screen_name":"0x663030623472","location":"::1\/128","description":"Addicted + to my chicks, music, tech, #OpenSource. My statements should be considered + as satire + irony. Eastern Germany socialized. Member of #yoloOps #Antiheld","url":"https:\/\/t.co\/oUgOV4oBxV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oUgOV4oBxV","expanded_url":"http:\/\/en.wikipedia.org\/wiki\/New_states_of_Germany#Culture","display_url":"en.wikipedia.org\/wiki\/New_state\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":445,"friends_count":413,"listed_count":158,"created_at":"Sun + Feb 17 10:08:50 +0000 2013","favourites_count":25369,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":60047,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/584875332056023040\/ah5EXa3A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584875332056023040\/ah5EXa3A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1189002552\/1578336234","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Tue + Mar 10 17:46:54 +0000 2020","id":1237434770231119872,"id_str":"1237434770231119872","text":"Not + all heroes chew bubblegums! #DamaDamMast #LQvPZ #PSL5","truncated":false,"entities":{"hashtags":[{"text":"DamaDamMast","indices":[33,45]},{"text":"LQvPZ","indices":[46,52]},{"text":"PSL5","indices":[53,58]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Mar 10 17:34:41 +0000 2020","id":1237431698608062464,"id_str":"1237431698608062464","text":"Roz + roz nahi hota boys. Someone else should have finished this today #LQvPZ #PSL5","truncated":false,"entities":{"hashtags":[{"text":"LQvPZ","indices":[69,75]},{"text":"PSL5","indices":[76,81]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Mar 10 14:17:58 +0000 2020","id":1237382192692629504,"id_str":"1237382192692629504","text":"#DamaDamMast + #LQvPZ","truncated":false,"entities":{"hashtags":[{"text":"DamaDamMast","indices":[0,12]},{"text":"LQvPZ","indices":[13,19]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Tue + Mar 10 07:47:33 +0000 2020","id":1237283938537746433,"id_str":"1237283938537746433","text":"RT + @ladbible: This is the British equivalent to ''I could''ve dropped my croissant'' + \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/6EYYrtTARI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ladbible","name":"LADbible","id":331311644,"id_str":"331311644","indices":[3,12]}],"urls":[],"media":[{"id":1236990440571895808,"id_str":"1236990440571895808","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1236990440571895808\/img\/2UvqI8Kp6MxlSjvE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1236990440571895808\/img\/2UvqI8Kp6MxlSjvE.jpg","url":"https:\/\/t.co\/6EYYrtTARI","display_url":"pic.twitter.com\/6EYYrtTARI","expanded_url":"https:\/\/twitter.com\/ladbible\/status\/1237000464614465536\/video\/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":1024,"h":1280,"resize":"fit"}},"source_status_id":1237000464614465536,"source_status_id_str":"1237000464614465536","source_user_id":331311644,"source_user_id_str":"331311644"}]},"extended_entities":{"media":[{"id":1236990440571895808,"id_str":"1236990440571895808","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1236990440571895808\/img\/2UvqI8Kp6MxlSjvE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1236990440571895808\/img\/2UvqI8Kp6MxlSjvE.jpg","url":"https:\/\/t.co\/6EYYrtTARI","display_url":"pic.twitter.com\/6EYYrtTARI","expanded_url":"https:\/\/twitter.com\/ladbible\/status\/1237000464614465536\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1024,"h":1280,"resize":"fit"}},"source_status_id":1237000464614465536,"source_status_id_str":"1237000464614465536","source_user_id":331311644,"source_user_id_str":"331311644","video_info":{"aspect_ratio":[4,5],"duration_millis":24057,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236990440571895808\/vid\/720x900\/Nzuqrpb8JBxN0JrP.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1236990440571895808\/pl\/SEZlt-9esU3x0tTC.m3u8?tag=13"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236990440571895808\/vid\/320x400\/VBBcDqcwlne_4bAd.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236990440571895808\/vid\/360x450\/nYayTUuO7U_17PR0.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":331311644,"id_str":"331311644","name":"LADbible","screen_name":"ladbible","location":"","description":"Redefining + entertainment & news! Follow LADbible now for the best viral videos, funny + stories & the latest news","url":"https:\/\/t.co\/3gw9MEtHH1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3gw9MEtHH1","expanded_url":"https:\/\/www.LADbible.com","display_url":"LADbible.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2368527,"friends_count":0,"listed_count":2560,"created_at":"Fri + Jul 08 00:05:53 +0000 2011","favourites_count":1122,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57281,"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\/841982132981497856\/egozMVKe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/841982132981497856\/egozMVKe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/331311644\/1576675144","profile_link_color":"1892F0","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad + Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":30,"listed_count":0,"created_at":"Tue + Aug 13 13:57:50 +0000 2019","favourites_count":48,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Mar 09 13:01:07 +0000 2020","id":1237000464614465536,"id_str":"1237000464614465536","text":"This + is the British equivalent to ''I could''ve dropped my croissant'' \ud83d\ude02\ud83d\ude02 + https:\/\/t.co\/6EYYrtTARI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1236990440571895808,"id_str":"1236990440571895808","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1236990440571895808\/img\/2UvqI8Kp6MxlSjvE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1236990440571895808\/img\/2UvqI8Kp6MxlSjvE.jpg","url":"https:\/\/t.co\/6EYYrtTARI","display_url":"pic.twitter.com\/6EYYrtTARI","expanded_url":"https:\/\/twitter.com\/ladbible\/status\/1237000464614465536\/video\/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":1024,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1236990440571895808,"id_str":"1236990440571895808","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1236990440571895808\/img\/2UvqI8Kp6MxlSjvE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1236990440571895808\/img\/2UvqI8Kp6MxlSjvE.jpg","url":"https:\/\/t.co\/6EYYrtTARI","display_url":"pic.twitter.com\/6EYYrtTARI","expanded_url":"https:\/\/twitter.com\/ladbible\/status\/1237000464614465536\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1024,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[4,5],"duration_millis":24057,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236990440571895808\/vid\/720x900\/Nzuqrpb8JBxN0JrP.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1236990440571895808\/pl\/SEZlt-9esU3x0tTC.m3u8?tag=13"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236990440571895808\/vid\/320x400\/VBBcDqcwlne_4bAd.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236990440571895808\/vid\/360x450\/nYayTUuO7U_17PR0.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":331311644,"id_str":"331311644","name":"LADbible","screen_name":"ladbible","location":"","description":"Redefining + entertainment & news! Follow LADbible now for the best viral videos, funny + stories & the latest news","url":"https:\/\/t.co\/3gw9MEtHH1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3gw9MEtHH1","expanded_url":"https:\/\/www.LADbible.com","display_url":"LADbible.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2368527,"friends_count":0,"listed_count":2560,"created_at":"Fri + Jul 08 00:05:53 +0000 2011","favourites_count":1122,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57281,"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\/841982132981497856\/egozMVKe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/841982132981497856\/egozMVKe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/331311644\/1576675144","profile_link_color":"1892F0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":911,"favorite_count":6487,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":911,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Mar 09 07:30:37 +0000 2020","id":1236917288420421632,"id_str":"1236917288420421632","text":"RT + @ManUtd: The perfect video doesn''t exi-\n\n#MUFC https:\/\/t.co\/laNl73YaOG","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[44,49]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1236765610241114113,"id_str":"1236765610241114113","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/ESngN6fX0AEN2Iu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESngN6fX0AEN2Iu.jpg","url":"https:\/\/t.co\/laNl73YaOG","display_url":"pic.twitter.com\/laNl73YaOG","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1236916127273549824\/video\/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":2048,"h":2048,"resize":"fit"}},"source_status_id":1236916127273549824,"source_status_id_str":"1236916127273549824","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1236765610241114113,"id_str":"1236765610241114113","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/ESngN6fX0AEN2Iu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESngN6fX0AEN2Iu.jpg","url":"https:\/\/t.co\/laNl73YaOG","display_url":"pic.twitter.com\/laNl73YaOG","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1236916127273549824\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"source_status_id":1236916127273549824,"source_status_id_str":"1236916127273549824","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":56000,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236765610241114113\/vid\/320x320\/Ntm5D1Cxw4bP2-xE.mp4?tag=13"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236765610241114113\/vid\/720x720\/mW7wX6FR2bQE7Cu3.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1236765610241114113\/pl\/P9LpPo-igiNIwz_Z.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236765610241114113\/vid\/480x480\/sKzsIU8A8k-yv3-6.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21351983,"friends_count":128,"listed_count":22575,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2492,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":58236,"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\/1225681489544667136\/uhXbzNkl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225681489544667136\/uhXbzNkl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1583741154","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Mar 09 07:26:00 +0000 2020","id":1236916127273549824,"id_str":"1236916127273549824","text":"The + perfect video doesn''t exi-\n\n#MUFC https:\/\/t.co\/laNl73YaOG","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[32,37]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1236765610241114113,"id_str":"1236765610241114113","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/ESngN6fX0AEN2Iu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESngN6fX0AEN2Iu.jpg","url":"https:\/\/t.co\/laNl73YaOG","display_url":"pic.twitter.com\/laNl73YaOG","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1236916127273549824\/video\/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":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1236765610241114113,"id_str":"1236765610241114113","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/ESngN6fX0AEN2Iu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESngN6fX0AEN2Iu.jpg","url":"https:\/\/t.co\/laNl73YaOG","display_url":"pic.twitter.com\/laNl73YaOG","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1236916127273549824\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":56000,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236765610241114113\/vid\/320x320\/Ntm5D1Cxw4bP2-xE.mp4?tag=13"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236765610241114113\/vid\/720x720\/mW7wX6FR2bQE7Cu3.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1236765610241114113\/pl\/P9LpPo-igiNIwz_Z.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1236765610241114113\/vid\/480x480\/sKzsIU8A8k-yv3-6.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21351983,"friends_count":128,"listed_count":22575,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2492,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":58236,"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\/1225681489544667136\/uhXbzNkl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225681489544667136\/uhXbzNkl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1583741154","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17388,"favorite_count":90396,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":17388,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Mar 09 06:30:05 +0000 2020","id":1236902058176819200,"id_str":"1236902058176819200","text":"GitHub + Trending Archive, 07 Mar 2020, Ruby. bigbluebutton\/greenlight, brickpop\/flutter-rust-ffi, + fluent\/fluentd-kub\u2026 https:\/\/t.co\/YPvn95k4XO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YPvn95k4XO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1236902058176819200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.motakasoft.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"motakasoft","screen_name":"motakasoft","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":357,"friends_count":350,"listed_count":6,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32571,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Sun + Mar 08 19:02:02 +0000 2020","id":1236728902854287360,"id_str":"1236728902854287360","text":"RT + @thePSLt20: LAHORE!\n\nBEN DUNK has a question for you! #LQvKK #HBLPSLV https:\/\/t.co\/5ElYgk9vA2","truncated":false,"entities":{"hashtags":[{"text":"LQvKK","indices":[57,63]},{"text":"HBLPSLV","indices":[64,72]}],"symbols":[],"user_mentions":[{"screen_name":"thePSLt20","name":"PakistanSuperLeague","id":3448716797,"id_str":"3448716797","indices":[3,13]}],"urls":[],"media":[{"id":1236722715018567680,"id_str":"1236722715018567680","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1236722715018567680\/pu\/img\/r6nrJT3qZ4fKUjCu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1236722715018567680\/pu\/img\/r6nrJT3qZ4fKUjCu.jpg","url":"https:\/\/t.co\/5ElYgk9vA2","display_url":"pic.twitter.com\/5ElYgk9vA2","expanded_url":"https:\/\/twitter.com\/thePSLt20\/status\/1236722741455343618\/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":1236722741455343618,"source_status_id_str":"1236722741455343618","source_user_id":3448716797,"source_user_id_str":"3448716797"}]},"extended_entities":{"media":[{"id":1236722715018567680,"id_str":"1236722715018567680","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1236722715018567680\/pu\/img\/r6nrJT3qZ4fKUjCu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1236722715018567680\/pu\/img\/r6nrJT3qZ4fKUjCu.jpg","url":"https:\/\/t.co\/5ElYgk9vA2","display_url":"pic.twitter.com\/5ElYgk9vA2","expanded_url":"https:\/\/twitter.com\/thePSLt20\/status\/1236722741455343618\/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":1236722741455343618,"source_status_id_str":"1236722741455343618","source_user_id":3448716797,"source_user_id_str":"3448716797","video_info":{"aspect_ratio":[16,9],"duration_millis":2736,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1236722715018567680\/pu\/pl\/i03uEAcC5dh6K56T.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1236722715018567680\/pu\/vid\/480x270\/uNXlbbdTv-jYsaq_.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1236722715018567680\/pu\/vid\/640x360\/tPj0_GEttuqem9kF.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1236722715018567680\/pu\/vid\/1280x720\/Z5kPWN27u_hkJEWB.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official + account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 + https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1473022,"friends_count":110,"listed_count":487,"created_at":"Wed + Aug 26 16:33:48 +0000 2015","favourites_count":256,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":11172,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Mar 08 18:37:33 +0000 2020","id":1236722741455343618,"id_str":"1236722741455343618","text":"LAHORE!\n\nBEN + DUNK has a question for you! #LQvKK #HBLPSLV https:\/\/t.co\/5ElYgk9vA2","truncated":false,"entities":{"hashtags":[{"text":"LQvKK","indices":[42,48]},{"text":"HBLPSLV","indices":[49,57]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1236722715018567680,"id_str":"1236722715018567680","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1236722715018567680\/pu\/img\/r6nrJT3qZ4fKUjCu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1236722715018567680\/pu\/img\/r6nrJT3qZ4fKUjCu.jpg","url":"https:\/\/t.co\/5ElYgk9vA2","display_url":"pic.twitter.com\/5ElYgk9vA2","expanded_url":"https:\/\/twitter.com\/thePSLt20\/status\/1236722741455343618\/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":1236722715018567680,"id_str":"1236722715018567680","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1236722715018567680\/pu\/img\/r6nrJT3qZ4fKUjCu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1236722715018567680\/pu\/img\/r6nrJT3qZ4fKUjCu.jpg","url":"https:\/\/t.co\/5ElYgk9vA2","display_url":"pic.twitter.com\/5ElYgk9vA2","expanded_url":"https:\/\/twitter.com\/thePSLt20\/status\/1236722741455343618\/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":2736,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1236722715018567680\/pu\/pl\/i03uEAcC5dh6K56T.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1236722715018567680\/pu\/vid\/480x270\/uNXlbbdTv-jYsaq_.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1236722715018567680\/pu\/vid\/640x360\/tPj0_GEttuqem9kF.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1236722715018567680\/pu\/vid\/1280x720\/Z5kPWN27u_hkJEWB.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official + account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 + https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1473022,"friends_count":110,"listed_count":487,"created_at":"Wed + Aug 26 16:33:48 +0000 2015","favourites_count":256,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":11172,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2210,"favorite_count":11357,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2210,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Mar 08 18:35:53 +0000 2020","id":1236722321026625537,"id_str":"1236722321026625537","text":"RT + @ManUtd: MANCHESTER IS RED! \ud83d\udd34\ud83d\udd34\ud83d\udd34\n\n#MUFC + #MUNMCI","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[36,41]},{"text":"MUNMCI","indices":[42,49]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Mar 08 18:26:36 +0000 2020","id":1236719985818513410,"id_str":"1236719985818513410","text":"MANCHESTER + IS RED! \ud83d\udd34\ud83d\udd34\ud83d\udd34\n\n#MUFC #MUNMCI","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[24,29]},{"text":"MUNMCI","indices":[30,37]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21351983,"friends_count":128,"listed_count":22575,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2492,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":58236,"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\/1225681489544667136\/uhXbzNkl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225681489544667136\/uhXbzNkl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1583741154","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26626,"favorite_count":70774,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":26626,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Mar 08 18:35:46 +0000 2020","id":1236722292710875136,"id_str":"1236722292710875136","text":"First + derby double post Fergie. Manchester is Red \ud83d\udd34 #MUNMCI","truncated":false,"entities":{"hashtags":[{"text":"MUNMCI","indices":[52,59]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Mar 08 17:03:06 +0000 2020","id":1236698974385582085,"id_str":"1236698974385582085","text":"Dunk + for CM Punjab #LQvKK","truncated":false,"entities":{"hashtags":[{"text":"LQvKK","indices":[19,25]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"in"},{"created_at":"Sun + Mar 08 06:30:11 +0000 2020","id":1236539693497384961,"id_str":"1236539693497384961","text":"GitHub + Trending Archive, 06 Mar 2020, Ruby. logstash-plugins\/logstash-patterns-core, + ankane\/strong_migrations, zamm\u2026 https:\/\/t.co\/TwLDLcq6Yr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TwLDLcq6Yr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1236539693497384961","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.motakasoft.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"motakasoft","screen_name":"motakasoft","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":357,"friends_count":350,"listed_count":6,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32571,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Sat + Mar 07 17:43:31 +0000 2020","id":1236346757677801472,"id_str":"1236346757677801472","text":"#DamaDamMast + #LahoreQalandar","truncated":false,"entities":{"hashtags":[{"text":"DamaDamMast","indices":[0,12]},{"text":"LahoreQalandar","indices":[13,28]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Sat + Mar 07 12:08:54 +0000 2020","id":1236262545843015680,"id_str":"1236262545843015680","text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02 + https:\/\/t.co\/JqqpIOuBM7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JqqpIOuBM7","expanded_url":"https:\/\/twitter.com\/IsbUnited\/status\/1236241312988479490","display_url":"twitter.com\/IsbUnited\/stat\u2026","indices":[4,27]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1236241312988479490,"quoted_status_id_str":"1236241312988479490","quoted_status":{"created_at":"Sat + Mar 07 10:44:31 +0000 2020","id":1236241312988479490,"id_str":"1236241312988479490","text":"Hum + @PeshawarZalmi ko FINALLY catch pakarnay par MUBARAK BAAD pesh kartay hain + \ud83d\udc4f\ud83d\udc4f\n\nWell played Ingram \ud83d\ude4c\n\n#IUvPZ","truncated":false,"entities":{"hashtags":[{"text":"IUvPZ","indices":[105,111]}],"symbols":[],"user_mentions":[{"screen_name":"PeshawarZalmi","name":"PeshawarZalmi","id":4478726652,"id_str":"4478726652","indices":[4,18]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4489095797,"id_str":"4489095797","name":"Islamabad + United","screen_name":"IsbUnited","location":"Islamabad, Pakistan","description":"MOST + SUCCESSFUL PSL team. 2 Time Champions of @thepslt20 - #ISLU #UnitedWeWin #RangJeetKaLaalHai + #DimaghSe. For queries; partnerships@leonineglobalsports.com","url":"https:\/\/t.co\/3KuDUO5mhL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3KuDUO5mhL","expanded_url":"http:\/\/www.IslamabadUnited.com","display_url":"IslamabadUnited.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":798031,"friends_count":94,"listed_count":293,"created_at":"Tue + Dec 15 06:11:32 +0000 2015","favourites_count":1683,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":14204,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/977980292643414016\/YUXAxUcr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/977980292643414016\/YUXAxUcr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4489095797\/1582191282","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":264,"favorite_count":3506,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Sat + Mar 07 06:30:11 +0000 2020","id":1236177306818756608,"id_str":"1236177306818756608","text":"GitHub + Trending Archive, 05 Mar 2020, Ruby. zammad\/zammad, jnunemaker\/flipper, + thoughtbot\/shoulda-matchers, Homebre\u2026 https:\/\/t.co\/3WrfJbsMOX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3WrfJbsMOX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1236177306818756608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.motakasoft.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"motakasoft","screen_name":"motakasoft","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":357,"friends_count":350,"listed_count":6,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32571,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Fri + Mar 06 15:02:29 +0000 2020","id":1235943840760107009,"id_str":"1235943840760107009","text":"@jeremysternad + Twitter is not the best option for those kind of things - I suggest opening + a thread at our communit\u2026 https:\/\/t.co\/UKjYa4KC8f","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JeremySternad","name":"Jeremy + Sternad","id":2320888973,"id_str":"2320888973","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/UKjYa4KC8f","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235943840760107009","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1235578143546716160,"in_reply_to_status_id_str":"1235578143546716160","in_reply_to_user_id":2320888973,"in_reply_to_user_id_str":"2320888973","in_reply_to_screen_name":"JeremySternad","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":608,"friends_count":581,"listed_count":20,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":565,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"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"},{"created_at":"Fri + Mar 06 04:51:24 +0000 2020","id":1235790058575327232,"id_str":"1235790058575327232","text":"Rainy + days at 345 \ud83d\udc99 https:\/\/t.co\/GJQeihDTqS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235790046848040960,"id_str":"1235790046848040960","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/ESZogAdXQAAnUiY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESZogAdXQAAnUiY.jpg","url":"https:\/\/t.co\/GJQeihDTqS","display_url":"pic.twitter.com\/GJQeihDTqS","expanded_url":"https:\/\/twitter.com\/Zammad\/status\/1235790058575327232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235790046848040960,"id_str":"1235790046848040960","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/ESZogAdXQAAnUiY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESZogAdXQAAnUiY.jpg","url":"https:\/\/t.co\/GJQeihDTqS","display_url":"pic.twitter.com\/GJQeihDTqS","expanded_url":"https:\/\/twitter.com\/Zammad\/status\/1235790058575327232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":221,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"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"},{"created_at":"Fri + Mar 06 03:00:26 +0000 2020","id":1235762131083108355,"id_str":"1235762131083108355","text":"CVE-2020-10105 + | An issue was discovered in Zammad 3.0 through 3.2. It returns source code + of static resources when\u2026 https:\/\/t.co\/M74iDIXaYH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/M74iDIXaYH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235762131083108355","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 03:00:15 +0000 2020","id":1235762087806349313,"id_str":"1235762087806349313","text":"CVE-2020-10104 + (zammad) | An issue was discovered in Zammad 3.0 through 3.2. After authentication, + it transmits sen\u2026 https:\/\/t.co\/wcz5l2Uv2j","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wcz5l2Uv2j","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235762087806349313","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 03:00:05 +0000 2020","id":1235762044542074886,"id_str":"1235762044542074886","text":"CVE-2020-10103 + (zammad) | An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious + code can be provided by\u2026 https:\/\/t.co\/c5SohIlxHm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/c5SohIlxHm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235762044542074886","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 03:00:04 +0000 2020","id":1235762041501159425,"id_str":"1235762041501159425","text":"CVE-2020-10102 + (zammad) | An issue was discovered in Zammad 3.0 through 3.2. The Forgot Password + functionality is i\u2026 https:\/\/t.co\/uKGs3Q1a5s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uKGs3Q1a5s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235762041501159425","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 02:59:54 +0000 2020","id":1235761998169862145,"id_str":"1235761998169862145","text":"CVE-2020-10101 + (zammad) | An issue was discovered in Zammad 3.0 through 3.2. The WebSocket + server crashes when mess\u2026 https:\/\/t.co\/X6IcljDSuW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/X6IcljDSuW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235761998169862145","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 02:59:44 +0000 2020","id":1235761954972733441,"id_str":"1235761954972733441","text":"CVE-2020-10100 + (zammad) | An issue was discovered in Zammad 3.0 through 3.2. It allows for + users to view ticket cus\u2026 https:\/\/t.co\/kMWiFiSElS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kMWiFiSElS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235761954972733441","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 02:59:33 +0000 2020","id":1235761911297437697,"id_str":"1235761911297437697","text":"CVE-2020-10099 + (zammad) | An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious + code can be provided by\u2026 https:\/\/t.co\/oRSaXwSJkF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oRSaXwSJkF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235761911297437697","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 02:59:23 +0000 2020","id":1235761867982876673,"id_str":"1235761867982876673","text":"CVE-2020-10098 + (zammad) | An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious + code can be provided by\u2026 https:\/\/t.co\/QDcZ1Z6TMl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QDcZ1Z6TMl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235761867982876673","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 02:59:13 +0000 2020","id":1235761824706019329,"id_str":"1235761824706019329","text":"CVE-2020-10097 + (zammad) | An issue was discovered in Zammad 3.0 through 3.2. It may respond + with verbose error mess\u2026 https:\/\/t.co\/KkjKCAEzJB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KkjKCAEzJB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235761824706019329","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Mar 06 02:59:02 +0000 2020","id":1235761781303324675,"id_str":"1235761781303324675","text":"CVE-2020-10096 + (zammad) | An issue was discovered in Zammad 3.0 through 3.2. It does not + prevent caching of confide\u2026 https:\/\/t.co\/9gd2X4srx8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9gd2X4srx8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235761781303324675","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/www.intel-network.net\" rel=\"nofollow\"\u003eNetSecBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826932562048192512,"id_str":"826932562048192512","name":"ZeroSecVulns","screen_name":"ZeroSecVulns","location":"Matrix","description":"Follow + for the latest exploit and vulnerability information!\n\nBTC: 1B1E2ZRtk81CEsRhLH1uZXL2tZVEhi3LVk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":15,"listed_count":2,"created_at":"Wed + Feb 01 23:17:41 +0000 2017","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19724,"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\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190803454421286912\/Jh7C-9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826932562048192512\/1571249343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Mar 05 07:25:23 +0000 2020","id":1235466420533596160,"id_str":"1235466420533596160","text":"CVE-2020-10099\n\nAn + XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can be + provided by a low-priv\u2026 https:\/\/t.co\/sj1RjEddjG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sj1RjEddjG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235466420533596160","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 07:22:23 +0000 2020","id":1235465665571512321,"id_str":"1235465665571512321","text":"CVE-2020-10097\n\nAn + issue was discovered in Zammad 3.0 through 3.2. It may respond with verbose + error messages that\u2026 https:\/\/t.co\/jh8FxGprxw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jh8FxGprxw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235465665571512321","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 07:19:23 +0000 2020","id":1235464910680670208,"id_str":"1235464910680670208","text":"CVE-2020-10104\n\nAn + issue was discovered in Zammad 3.0 through 3.2. After authentication, it transmits + sensitive inf\u2026 https:\/\/t.co\/OxVbdcReKe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OxVbdcReKe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235464910680670208","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 07:16:23 +0000 2020","id":1235464155458658305,"id_str":"1235464155458658305","text":"CVE-2020-10098\n\nAn + XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can be + provided by a low-priv\u2026 https:\/\/t.co\/30qQZrNLKy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/30qQZrNLKy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235464155458658305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 07:13:22 +0000 2020","id":1235463398684381184,"id_str":"1235463398684381184","text":"CVE-2020-10101\n\nAn + issue was discovered in Zammad 3.0 through 3.2. The WebSocket server crashes + when messages in no\u2026 https:\/\/t.co\/4W7kjTBBx2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4W7kjTBBx2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235463398684381184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 07:10:22 +0000 2020","id":1235462643546087424,"id_str":"1235462643546087424","text":"CVE-2020-10103\n\nAn + XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can be + provided by a low-priv\u2026 https:\/\/t.co\/27RRyNV7QO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/27RRyNV7QO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235462643546087424","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 07:07:22 +0000 2020","id":1235461887426355200,"id_str":"1235461887426355200","text":"CVE-2020-10102\n\nAn + issue was discovered in Zammad 3.0 through 3.2. The Forgot Password functionality + is implemented\u2026 https:\/\/t.co\/T7i8YPlDJm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T7i8YPlDJm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235461887426355200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 07:04:22 +0000 2020","id":1235461132103471105,"id_str":"1235461132103471105","text":"CVE-2020-10096\n\nAn + issue was discovered in Zammad 3.0 through 3.2. It does not prevent caching + of confidential data\u2026 https:\/\/t.co\/4hBeSIBxYm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4hBeSIBxYm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235461132103471105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 07:01:22 +0000 2020","id":1235460376688349184,"id_str":"1235460376688349184","text":"CVE-2020-10100\n\nAn + issue was discovered in Zammad 3.0 through 3.2. It allows for users to view + ticket customer deta\u2026 https:\/\/t.co\/Fr3GCAnapH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Fr3GCAnapH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235460376688349184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 06:58:22 +0000 2020","id":1235459621273272320,"id_str":"1235459621273272320","text":"CVE-2020-10105\n\nAn + issue was discovered in Zammad 3.0 through 3.2. It returns source code of + static resources when\u2026 https:\/\/t.co\/UHr4x973wd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UHr4x973wd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235459621273272320","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon + Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability + Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":873,"friends_count":2,"listed_count":32,"created_at":"Thu + Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56373,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu + Mar 05 01:45:14 +0000 2020","id":1235380821328093186,"id_str":"1235380821328093186","text":"CVE-2020-10105 + An issue was discovered in Zammad 3.0 through 3.2. It returns source code + of static resources when s\u2026 https:\/\/t.co\/ZIQIyXKBUE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZIQIyXKBUE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380821328093186","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:14 +0000 2020","id":1235380819461627905,"id_str":"1235380819461627905","text":"CVE-2020-10104 + An issue was discovered in Zammad 3.0 through 3.2. After authentication, it + transmits sensitive info\u2026 https:\/\/t.co\/mmY4exhwXe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mmY4exhwXe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380819461627905","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:13 +0000 2020","id":1235380817347608579,"id_str":"1235380817347608579","text":"CVE-2020-10103 + An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can + be provided by a low-privi\u2026 https:\/\/t.co\/VRuNKa1GH6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VRuNKa1GH6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380817347608579","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:13 +0000 2020","id":1235380815019814912,"id_str":"1235380815019814912","text":"CVE-2020-10102 + An issue was discovered in Zammad 3.0 through 3.2. The Forgot Password functionality + is implemented\u2026 https:\/\/t.co\/Kq9J3LLnrx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Kq9J3LLnrx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380815019814912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:12 +0000 2020","id":1235380812666867715,"id_str":"1235380812666867715","text":"CVE-2020-10101 + An issue was discovered in Zammad 3.0 through 3.2. The WebSocket server crashes + when messages in non\u2026 https:\/\/t.co\/2voMsBIhys","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2voMsBIhys","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380812666867715","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:12 +0000 2020","id":1235380810812993536,"id_str":"1235380810812993536","text":"CVE-2020-10100 + An issue was discovered in Zammad 3.0 through 3.2. It allows for users to + view ticket customer detai\u2026 https:\/\/t.co\/Jq4ImWX1gR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Jq4ImWX1gR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380810812993536","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:11 +0000 2020","id":1235380808191537153,"id_str":"1235380808191537153","text":"CVE-2020-10099 + An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can + be provided by a low-privi\u2026 https:\/\/t.co\/ATnGRXqZli","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ATnGRXqZli","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380808191537153","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:10 +0000 2020","id":1235380805624623104,"id_str":"1235380805624623104","text":"CVE-2020-10098 + An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can + be provided by a low-privi\u2026 https:\/\/t.co\/4f7h2Avtn0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4f7h2Avtn0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380805624623104","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:10 +0000 2020","id":1235380802797613062,"id_str":"1235380802797613062","text":"CVE-2020-10097 + An issue was discovered in Zammad 3.0 through 3.2. It may respond with verbose + error messages that d\u2026 https:\/\/t.co\/ywbbEn7Zvk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ywbbEn7Zvk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380802797613062","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu + Mar 05 01:45:09 +0000 2020","id":1235380800188755968,"id_str":"1235380800188755968","text":"CVE-2020-10096 + An issue was discovered in Zammad 3.0 through 3.2. It does not prevent caching + of confidential data\u2026 https:\/\/t.co\/T7Elw04Fgg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T7Elw04Fgg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380800188755968","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official + account maintained by the CVE Team to notify the community of new CVE IDs. + For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19585,"friends_count":2,"listed_count":383,"created_at":"Wed + Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed + Mar 04 11:59:16 +0000 2020","id":1235172958110461955,"id_str":"1235172958110461955","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14697689,"id_str":"14697689","name":"Frank + Schmittlein","screen_name":"schmittlein77","location":"N\u00fcrnberg","description":"Creator + of WP-Dojo (https:\/\/t.co\/r9rbZLn3Q9) and Co-Organisator of N\u00fcrnberg + WordPress Meetup (https:\/\/t.co\/IG65OLgtrE) and Father\u00b3","url":"https:\/\/t.co\/MhS5IRPlWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MhS5IRPlWZ","expanded_url":"https:\/\/frank-schmittlein.de","display_url":"frank-schmittlein.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/r9rbZLn3Q9","expanded_url":"https:\/\/wp-dojo.de\/","display_url":"wp-dojo.de","indices":[20,43]},{"url":"https:\/\/t.co\/IG65OLgtrE","expanded_url":"https:\/\/www.meetup.com\/de-DE\/Nurnberg-WordPress-Meetup\/","display_url":"meetup.com\/de-DE\/Nurnberg\u2026","indices":[94,117]}]}},"protected":false,"followers_count":368,"friends_count":1157,"listed_count":23,"created_at":"Thu + May 08 08:03:22 +0000 2008","favourites_count":1678,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1287,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CEE3E6","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\/639398531393028097\/UBNg7gU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639398531393028097\/UBNg7gU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14697689\/1399559562","profile_link_color":"6A964D","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":608,"friends_count":581,"listed_count":20,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":565,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"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"},{"created_at":"Wed + Mar 04 11:52:11 +0000 2020","id":1235171177179598848,"id_str":"1235171177179598848","text":"Fokus + Security - es gibt ein wichtiges Update f\u00fcr #zammad \n\nhttps:\/\/t.co\/vIQiaeD2MM","truncated":false,"entities":{"hashtags":[{"text":"zammad","indices":[50,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vIQiaeD2MM","expanded_url":"https:\/\/zammad.com\/de\/news\/release-3-3","display_url":"zammad.com\/de\/news\/releas\u2026","indices":[60,83]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14697689,"id_str":"14697689","name":"Frank + Schmittlein","screen_name":"schmittlein77","location":"N\u00fcrnberg","description":"Creator + of WP-Dojo (https:\/\/t.co\/r9rbZLn3Q9) and Co-Organisator of N\u00fcrnberg + WordPress Meetup (https:\/\/t.co\/IG65OLgtrE) and Father\u00b3","url":"https:\/\/t.co\/MhS5IRPlWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MhS5IRPlWZ","expanded_url":"https:\/\/frank-schmittlein.de","display_url":"frank-schmittlein.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/r9rbZLn3Q9","expanded_url":"https:\/\/wp-dojo.de\/","display_url":"wp-dojo.de","indices":[20,43]},{"url":"https:\/\/t.co\/IG65OLgtrE","expanded_url":"https:\/\/www.meetup.com\/de-DE\/Nurnberg-WordPress-Meetup\/","display_url":"meetup.com\/de-DE\/Nurnberg\u2026","indices":[94,117]}]}},"protected":false,"followers_count":368,"friends_count":1157,"listed_count":23,"created_at":"Thu + May 08 08:03:22 +0000 2008","favourites_count":1678,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1287,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CEE3E6","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\/639398531393028097\/UBNg7gU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639398531393028097\/UBNg7gU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14697689\/1399559562","profile_link_color":"6A964D","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"},"geo":null,"coordinates":null,"place":{"id":"26066ea01f9fa118","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/26066ea01f9fa118.json","place_type":"city","name":"Nuremberg","full_name":"Nuremberg, + Germany","country_code":"DE","country":"Germany","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[10.988242,49.331892],[11.282478,49.331892],[11.282478,49.548082],[10.988242,49.548082]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},{"created_at":"Wed + Mar 04 08:46:11 +0000 2020","id":1235124366381404163,"id_str":"1235124366381404163","text":"Wir + sind auf der Suche nach neuen Kollegen und Kolleginnen. Wer hat Lust? Zammad + die Welt rocken... #zammad\u2026 https:\/\/t.co\/NVpi8HBrKv","truncated":true,"entities":{"hashtags":[{"text":"zammad","indices":[100,107]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NVpi8HBrKv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235124366381404163","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14697689,"id_str":"14697689","name":"Frank + Schmittlein","screen_name":"schmittlein77","location":"N\u00fcrnberg","description":"Creator + of WP-Dojo (https:\/\/t.co\/r9rbZLn3Q9) and Co-Organisator of N\u00fcrnberg + WordPress Meetup (https:\/\/t.co\/IG65OLgtrE) and Father\u00b3","url":"https:\/\/t.co\/MhS5IRPlWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MhS5IRPlWZ","expanded_url":"https:\/\/frank-schmittlein.de","display_url":"frank-schmittlein.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/r9rbZLn3Q9","expanded_url":"https:\/\/wp-dojo.de\/","display_url":"wp-dojo.de","indices":[20,43]},{"url":"https:\/\/t.co\/IG65OLgtrE","expanded_url":"https:\/\/www.meetup.com\/de-DE\/Nurnberg-WordPress-Meetup\/","display_url":"meetup.com\/de-DE\/Nurnberg\u2026","indices":[94,117]}]}},"protected":false,"followers_count":368,"friends_count":1157,"listed_count":23,"created_at":"Thu + May 08 08:03:22 +0000 2008","favourites_count":1678,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1287,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CEE3E6","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\/639398531393028097\/UBNg7gU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639398531393028097\/UBNg7gU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14697689\/1399559562","profile_link_color":"6A964D","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"},"geo":null,"coordinates":null,"place":{"id":"26066ea01f9fa118","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/26066ea01f9fa118.json","place_type":"city","name":"Nuremberg","full_name":"Nuremberg, + Germany","country_code":"DE","country":"Germany","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[10.988242,49.331892],[11.282478,49.331892],[11.282478,49.548082],[10.988242,49.548082]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},{"created_at":"Tue + Mar 03 15:01:12 +0000 2020","id":1234856357209280525,"id_str":"1234856357209280525","text":"RT + @call_user_func: [New]dogteam\/zammad Zammad for Laravel https:\/\/t.co\/pbrZ3gNW3o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"call_user_func","name":"function()\u007bexit;\u007d","id":2428165560,"id_str":"2428165560","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/pbrZ3gNW3o","expanded_url":"https:\/\/github.com\/DogTeams\/Zammad","display_url":"github.com\/DogTeams\/Zammad","indices":[59,82]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten + Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad + maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":46,"listed_count":1,"created_at":"Fri + May 02 14:31:56 +0000 2014","favourites_count":491,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":184,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Mar 03 14:10:30 +0000 2020","id":1234843595317731329,"id_str":"1234843595317731329","text":"[New]dogteam\/zammad + Zammad for Laravel https:\/\/t.co\/pbrZ3gNW3o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pbrZ3gNW3o","expanded_url":"https:\/\/github.com\/DogTeams\/Zammad","display_url":"github.com\/DogTeams\/Zammad","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/call_user_func\" rel=\"nofollow\"\u003ecomposer_release\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2428165560,"id_str":"2428165560","name":"function()\u007bexit;\u007d","screen_name":"call_user_func","location":"","description":"Packagist + watching bot, PHP.\n(by @uzulla)","url":"https:\/\/t.co\/YAOnTQklcV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YAOnTQklcV","expanded_url":"https:\/\/github.com\/uzulla\/call_user_func_twitter_bot","display_url":"github.com\/uzulla\/call_us\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":426,"friends_count":1,"listed_count":104,"created_at":"Sat + Apr 05 02:40:49 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":286685,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453113955255193600\/BMVSw7sC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453113955255193600\/BMVSw7sC_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Tue + Mar 03 14:10:30 +0000 2020","id":1234843595317731329,"id_str":"1234843595317731329","text":"[New]dogteam\/zammad + Zammad for Laravel https:\/\/t.co\/pbrZ3gNW3o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pbrZ3gNW3o","expanded_url":"https:\/\/github.com\/DogTeams\/Zammad","display_url":"github.com\/DogTeams\/Zammad","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/call_user_func\" rel=\"nofollow\"\u003ecomposer_release\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2428165560,"id_str":"2428165560","name":"function()\u007bexit;\u007d","screen_name":"call_user_func","location":"","description":"Packagist + watching bot, PHP.\n(by @uzulla)","url":"https:\/\/t.co\/YAOnTQklcV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YAOnTQklcV","expanded_url":"https:\/\/github.com\/uzulla\/call_user_func_twitter_bot","display_url":"github.com\/uzulla\/call_us\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":426,"friends_count":1,"listed_count":104,"created_at":"Sat + Apr 05 02:40:49 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":286685,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453113955255193600\/BMVSw7sC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453113955255193600\/BMVSw7sC_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"}],"search_metadata":{"completed_in":0.057,"max_id":1238126889941729283,"max_id_str":"1238126889941729283","next_results":"?max_id=1234843595317731328&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1238126889941729283&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1173614726431105024/8eDxeepU_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '0' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:27 GMT + Last-Modified: + - Mon, 16 Sep 2019 15:06:50 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/0 profile_images/1173614726431105024 + X-Cache: + - MISS + X-Connection-Hash: + - fc60e55614d1dc4711d4c8a198d7ae1d + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '112' + Content-Length: + - '2617' + body: + encoding: ASCII-8BIT + string: !binary |- + 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EbbgWC4ncwgEu34f/9oADAMBAAIAAwAAABDzX/zzz99bzw/TzexP9367zzzz/8QAJREBAAEDAwQBBQAAAAAAAAAAAREAITFRgaEgccHRQRBhkbHh/9oACAEDAQE/EKIqwj9tYJ0Fmb8x4pMkcH7Px2Xe2DUkIwnnw7a/UhCTNtj+18F3XPyX4plF9okvbR0jKYuA2xmxGKiCpVZ39Z4oyFe1uX1RuTHVu+uKcpK9X//EACURAQABAwMDBAMAAAAAAAAAAAERACExQXGhUWGRECDR8IGxwf/aAAgBAgEBPxCmfUy2zBl75xRkv5+98exYuj+i/s8UzAno1O5ruG5fLATIkj949YmBEytm4LzhE7lGGNlnw25q6Waw2v26zrH4vkAxNdRYg0u2OWhUy1QsusLba9ijDG5l8FuaSxNwfPNQBgpBz7f/xAAoEAEAAQMCBgICAwEAAAAAAAABEQAhMVFhEEFxgZGxIKHB8DBA0fH/2gAIAQEAAT8Q4iOE/hYioAlanbTCy2kK0mnOilOInsMvWTegB5IyPc+Yn7wUfmgTwsdqFspkP+b3ojfCGV5jWnXDRaI6clgZu3e2/wAtuz6At9pWDwh9qZ5T9Z/U1IhoMz5OyE7JVlQsHk6CBs/G/Gwerd+KXMCVbiZZGJo4BpT4XParNMjX9Jg/U0lScCweY5My510UM8VglpPyvuaN3wDvRQgADkFIdJyab/SG/wATslYZefvoXwtPwDgaraItNrQ1ijkubULamMkkPfiivYVh7o4jFt2J7t/HGz6AMumTU6aW5nh9VPS3JHpMBp5SBtpkwgxn1xIXMaQz7ogFEItjeFcku2T9HurrM5vvh+5rJRzQF75+QhBTDGP6f//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Northampton,%20MA&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:28 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1158762045325631493/0Y0m2-rR_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '0' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:28 GMT + Last-Modified: + - Tue, 06 Aug 2019 15:27:35 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/5 profile_images/1158762045325631493 + X-Cache: + - MISS + X-Connection-Hash: + - d8301fd7ed04e05b51e67698f3ed3db2 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '2973' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Northampton,%20MA&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:28 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:29 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=4 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/963860430832783360/kTyQ5tqC_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '71024' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:29 GMT + Last-Modified: + - Wed, 14 Feb 2018 19:38:09 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/5 profile_images/963860430832783360 + X-Cache: + - HIT + X-Connection-Hash: + - e7348090aa7d656dcf1d234f685584d5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '121' + Content-Length: + - '2261' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:29 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237805077534040064.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="c239eae91d94df96fd173524c5edbc7a", + oauth_signature="HI8SrKOxq8NVFnApwcKLGTUleGA%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2848' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:38 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:38 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403363886705801; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:38 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_ulIsQkHzYWIv5WX4danrLw=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:38 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 4ef4f0ee00b56e12d61d0a128ab730bb + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '899' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '150' + X-Transaction: + - 00d9506b005adc61 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Wed Mar 11 18:18:22 +0000 2020","id":1237805077534040064,"id_str":"1237805077534040064","text":"@sbkDiggi17 + @derschulmanager Danke, das ist ein super Angebot und eine vorbildliche Dienstleistung. + Aber bekommt ma\u2026 https:\/\/t.co\/qIDim0LvNe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sbkDiggi17","name":"Silke + Bettina Kargl","id":913060319601336322,"id_str":"913060319601336322","indices":[0,11]},{"screen_name":"derschulmanager","name":"Schulmanager + Online","id":960201549342543872,"id_str":"960201549342543872","indices":[12,28]}],"urls":[{"url":"https:\/\/t.co\/qIDim0LvNe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237805077534040064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1237778563966930946,"in_reply_to_status_id_str":"1237778563966930946","in_reply_to_user_id":913060319601336322,"in_reply_to_user_id_str":"913060319601336322","in_reply_to_screen_name":"sbkDiggi17","user":{"id":2181009514,"id_str":"2181009514","name":"Dieter + Herzberger","screen_name":"sportherz1","location":"K\u00f6ln, Deutschland","description":"#lehrer + #d\u00fcsseldorf Sport\/Technik und \u00e4hnliches \ud83d\ude09#medienbildung + #digital #ipad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":143,"friends_count":237,"listed_count":1,"created_at":"Thu + Nov 14 18:24:31 +0000 2013","favourites_count":807,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":911,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1142688660342607872\/zAJrFfkV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1142688660342607872\/zAJrFfkV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2181009514\/1404046841","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"de"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=K%C3%B6ln,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:39 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1142688660342607872/zAJrFfkV_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '0' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:39 GMT + Last-Modified: + - Sun, 23 Jun 2019 06:57:41 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1142688660342607872 + X-Cache: + - MISS + X-Connection-Hash: + - dc7316239aae71f37d36cf426a5e93e1 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '2617' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=K%C3%B6ln,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:39 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237778563966930946.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0249e36cb5aa138ed6c71307f96a88f7", + oauth_signature="hg9Gqi%2BQGZDBwi7o8oz5XEf3w94%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2848' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:40 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:40 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403364032193636; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_4+PdyLFHCwjd5WRfP7SquA=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 97fc0d35dd5ecec840a3adebc13b054d + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '898' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '129' + X-Transaction: + - 00fa3834008aa408 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Wed Mar 11 16:33:01 +0000 2020","id":1237778563966930946,"id_str":"1237778563966930946","text":"@derschulmanager + @sportherz1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"derschulmanager","name":"Schulmanager + Online","id":960201549342543872,"id_str":"960201549342543872","indices":[0,16]},{"screen_name":"sportherz1","name":"Dieter + Herzberger","id":2181009514,"id_str":"2181009514","indices":[17,28]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1237716773887193090,"in_reply_to_status_id_str":"1237716773887193090","in_reply_to_user_id":960201549342543872,"in_reply_to_user_id_str":"960201549342543872","in_reply_to_screen_name":"derschulmanager","user":{"id":913060319601336322,"id_str":"913060319601336322","name":"Silke + Bettina Kargl","screen_name":"sbkDiggi17","location":"K\u00f6ln, Deutschland","description":"|@schoolisopen + 4.0| Israel| \nGender-Equity| Inclusion & Diversity| Alles oder Nichts zum + Eishockey @Silke_Eventfan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":267,"friends_count":965,"listed_count":4,"created_at":"Wed + Sep 27 15:18:38 +0000 2017","favourites_count":14186,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10535,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976738492284854272\/wVMMw_v6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976738492284854272\/wVMMw_v6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913060319601336322\/1506540714","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"8abc99434d4f5d28","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8abc99434d4f5d28.json","place_type":"city","name":"Cologne","full_name":"Cologne, + Germany","country_code":"DE","country":"Germany","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[6.772567,50.830287],[7.162373,50.830287],[7.162373,51.0849471],[6.772567,51.0849471]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=K%C3%B6ln,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:40 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/976738492284854272/wVMMw_v6_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '520345' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:40 GMT + Last-Modified: + - Thu, 22 Mar 2018 08:30:58 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/976738492284854272 + X-Cache: + - HIT + X-Connection-Hash: + - 9765154f54e82c47dbe6160762f2bc98 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '117' + Content-Length: + - '3151' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=K%C3%B6ln,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:40 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237716773887193090.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="e15bd32ead84c0b8dc9d68709a027aa5", + oauth_signature="6H7OlexIOLROpHdHPoMJK66UkP0%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2996' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:41 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:41 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403364165554246; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:41 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_7LLgAyjf2MRW7ZqlI5l3mw=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:41 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - df8bd3952941e2b572548840f2f5444b + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '897' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '126' + X-Transaction: + - 00b2d9280061f9c5 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Wed Mar 11 12:27:29 +0000 2020","id":1237716773887193090,"id_str":"1237716773887193090","text":"Aufgrund + der virusbedingten Schulschlie\u00dfungen k\u00f6nnen bis Ende des Schuljahres + alle Schulen unser neues Nachrichtenm\u2026 https:\/\/t.co\/qGqODvbIye","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qGqODvbIye","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237716773887193090","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":960201549342543872,"id_str":"960201549342543872","name":"Schulmanager + Online","screen_name":"derschulmanager","location":"Germany","description":"Wir + vereinfachen die Organisation Ihres Schulalltags! Tweets @JStanggassinger + ^js @herrmayr ^cm Kontakt https:\/\/t.co\/VP2FaUjibL","url":"https:\/\/t.co\/8sXj8eGNit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8sXj8eGNit","expanded_url":"http:\/\/www.schulmanager-online.de","display_url":"schulmanager-online.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/VP2FaUjibL","expanded_url":"https:\/\/www.schulmanager-online.de\/impressum.html","display_url":"schulmanager-online.de\/impressum.html","indices":[104,127]}]}},"protected":false,"followers_count":623,"friends_count":528,"listed_count":3,"created_at":"Sun + Feb 04 17:21:03 +0000 2018","favourites_count":317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122,"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\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960201549342543872\/1519142578","profile_link_color":"428BCA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":139,"favorite_count":259,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"de"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:41 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/963860430832783360/kTyQ5tqC_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '71037' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:42 GMT + Last-Modified: + - Wed, 14 Feb 2018 19:38:09 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/5 profile_images/963860430832783360 + X-Cache: + - MISS + X-Connection-Hash: + - e7348090aa7d656dcf1d234f685584d5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '121' + Content-Length: + - '2261' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:42 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/963860430832783360/kTyQ5tqC_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '71037' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:42 GMT + Last-Modified: + - Wed, 14 Feb 2018 19:38:09 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/5 profile_images/963860430832783360 + X-Cache: + - HIT + X-Connection-Hash: + - e7348090aa7d656dcf1d234f685584d5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '121' + Content-Length: + - '2261' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237791568712601601.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fe18ee9b4af0930171e3b98c6d99d1ec", + oauth_signature="%2BiDY3p7Voay5%2B3DrG2ua93Wi4LA%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '3208' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:43 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:43 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403364339682686; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:43 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_3u4tPjLFgpSl50FeBVzgVQ=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:43 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 74d9f01a7fc1500633eafbdfc909aea0 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '896' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '147' + X-Transaction: + - '0032837f00238d8b' + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Wed Mar 11 17:24:41 +0000 2020","id":1237791568712601601,"id_str":"1237791568712601601","text":"@MaurerStef + @froehlichfresch Einfach gesagt:\n1. Zugang beantragen\n2. SuS+LuL importieren + (aus Excel-Datei oder per\u2026 https:\/\/t.co\/8iGUTZt9gF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaurerStef","name":"Stefanie + Maurer","id":37964821,"id_str":"37964821","indices":[0,11]},{"screen_name":"froehlichfresch","name":"Anna + Fr\u00f6hlich","id":1132233873444790272,"id_str":"1132233873444790272","indices":[12,28]}],"urls":[{"url":"https:\/\/t.co\/8iGUTZt9gF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237791568712601601","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":1237788932030500867,"in_reply_to_status_id_str":"1237788932030500867","in_reply_to_user_id":37964821,"in_reply_to_user_id_str":"37964821","in_reply_to_screen_name":"MaurerStef","user":{"id":960201549342543872,"id_str":"960201549342543872","name":"Schulmanager + Online","screen_name":"derschulmanager","location":"Germany","description":"Wir + vereinfachen die Organisation Ihres Schulalltags! Tweets @JStanggassinger + ^js @herrmayr ^cm Kontakt https:\/\/t.co\/VP2FaUjibL","url":"https:\/\/t.co\/8sXj8eGNit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8sXj8eGNit","expanded_url":"http:\/\/www.schulmanager-online.de","display_url":"schulmanager-online.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/VP2FaUjibL","expanded_url":"https:\/\/www.schulmanager-online.de\/impressum.html","display_url":"schulmanager-online.de\/impressum.html","indices":[104,127]}]}},"protected":false,"followers_count":623,"friends_count":528,"listed_count":3,"created_at":"Sun + Feb 04 17:21:03 +0000 2018","favourites_count":317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122,"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\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960201549342543872\/1519142578","profile_link_color":"428BCA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"de"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:43 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/963860430832783360/kTyQ5tqC_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '71038' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:43 GMT + Last-Modified: + - Wed, 14 Feb 2018 19:38:09 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/5 profile_images/963860430832783360 + X-Cache: + - HIT + X-Connection-Hash: + - e7348090aa7d656dcf1d234f685584d5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '121' + Content-Length: + - '2261' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gACAA4AEwAoAAphY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAEAAgMBAQAAAAAAAAAAAAAABQYBAwQHAv/EABoBAQACAwEAAAAAAAAAAAAAAAADBQECBAb/2gAMAwEAAhADEAAAAfgej86AAAAJfXbmttr+qm10QNlc8/lkT7F59Z1tfHbxpaJscUu/O+R4+zbESuYpKPwd/BZ1ob6LzRsxS3yhZwb9BJGGcAAAAAAf/8QAHxAAAgMAAgMBAQAAAAAAAAAAAwQBAgUAIBARQBM1/9oACAEBAAEFAvmVUYZlTFHXlQiqNvHXJxvPZX65lwVNHqI8mMINdRlM0+cf+lrfsfWq8+jamunIy6jLF3xnEbpgr2I3s0Is8vqKM1nITsQzyKNXmbNn6Z7QlMc7g3MjkGLA+3ueRMx9n//EACIRAAEEAAYDAQAAAAAAAAAAAAEAAgMRBBASISIxEyAjMP/aAAgBAwEBPwH1aNRpR4Rje906NrhRCxGHZH0coRcgVfR3KineSubqCfWrbKKUxmwpZTJRKv8AD//EACIRAAEEAAUFAAAAAAAAAAAAAAEAAgMRBBASIjETICEjMP/aAAgBAgEBPwHtcdItSYx7uPCbK9hsFYfEPk5GUxAjNq/W3bYTelextlMvSLyliEgoqKIR2Aq+H//EACwQAAECAwYEBgMAAAAAAAAAAAEAAgMREgQTICExUiIjQVEQQGGhwdFCYnH/2gAIAQEABj8C8tyoZI79FO0PrO0aK7bDaGdpKcLlO9lNzKm7m54QItmMYk5S+kOmCqK9rB6rkWfi36e2CD/fhCztf2pz0VFpYXt/b7VRc5p2yzV3YoJHrqVK0uqiET1nhEb8Iah25gqHyruOAwno7RCIKg3aDkruEATtYr1zQ3KUhha9+pLpDvmox0eG8TfC7ER4Yek8YE9FkfOf/8QAKBABAAECBAQGAwAAAAAAAAAAAREAISAxQVFhcYGxEDCRodHhQMHx/9oACAEBAAE/IfOhhYsZvkc0I2HWoN3Kfk1wvZENSLu0X9NScN4D6wx9zTTHY1AABoYOM6VnSax6/wDbrg937qKLIIWAomimnGrprpmZ6/aq7obPpKGoBc2p/mHK5dXdSIoOFkvkAiHmVlBo3X1+am5N82qAz6fdpzaAbBhuLRXm6D4DpdGS5w8G+fAuMagiTIbVISEkMan5n//aAAwDAQACAAMAAAAQBBJBBB+vzBSoxiBQBCBBBBBBB//EACERAQACAgEDBQAAAAAAAAAAAAEAESExURAg8DBBgZGh/9oACAEDAQE/EO0xTVzP5vz6leSTIfC788vopTklAFX44T2i1XMbY0r2dEW6qiOwFRTt9D//xAAiEQEAAgEDAwUAAAAAAAAAAAABABExECFRQWHwIDBxgZH/2gAIAQIBAT8Q9LqC6m37XbP7LghmyfeY88rR14MsoCvfkes6i4nBCaNPbQliu4bgrfxAGD2P/8QAIxABAAEDAwQDAQAAAAAAAAAAAREAITFRYYEgQXGRMECh0f/aAAgBAQABPxD5hCpSILDu9vgCE1v++WeJqEx3ZD2X+FOlYh5qIvzUr+vDM+WOE8VLzqOHVM8jpG3hZL8/YtGOqCEItgOh72Yh+AZXYqa5m5YcH6g9PdtXKx1pthYzRukwsxtScpof4kqU6QkfM+qdM7Ozax+rNIVGEQSAuJusW6TrLFZnAeFXjWkKRjLKBB2kh1GoHUgx+yI9CgAIl4ujkNhpDZzCgfWPlWmp8mLCKSuW7fpjaHW50egCXscFIqkRLaNTQ05afW0nHxPWbKkZkCyhpdmsrGmRJkdTb7n/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237788932030500867.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="e5f545908f7f4eb38ff87807bca601f8", + oauth_signature="Lj7ZiWW4RMj8Vc6LBQjEt%2BtSshI%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '3081' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:44 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:44 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403364441270640; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:44 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_vO/x6WOIDyICFJm2h5c19w=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:44 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 2c185fb82081aa5364a0a2eaaee3ff65 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '895' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '129' + X-Transaction: + - 00f5fbad000caa66 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Wed Mar 11 17:14:13 +0000 2020","id":1237788932030500867,"id_str":"1237788932030500867","text":"@froehlichfresch + @derschulmanager Hatte eine FAQ auf eurer Seite gesucht und nicht gefunden. + Deswegen hier: wie reg\u2026 https:\/\/t.co\/EUMXCHClN8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"froehlichfresch","name":"Anna + Fr\u00f6hlich","id":1132233873444790272,"id_str":"1132233873444790272","indices":[0,16]},{"screen_name":"derschulmanager","name":"Schulmanager + Online","id":960201549342543872,"id_str":"960201549342543872","indices":[17,33]}],"urls":[{"url":"https:\/\/t.co\/EUMXCHClN8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237788932030500867","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1237763052944216064,"in_reply_to_status_id_str":"1237763052944216064","in_reply_to_user_id":1132233873444790272,"in_reply_to_user_id_str":"1132233873444790272","in_reply_to_screen_name":"froehlichfresch","user":{"id":37964821,"id_str":"37964821","name":"Stefanie + Maurer","screen_name":"MaurerStef","location":"Dinslaken","description":"Rektorin + in Dinslaken | Lehrerfortbildung | iPads | #Sketchnotes | L\u00f6sungsfokussierung + | #BayernEdu | #NRWEdu | #PrimarEdu #Elternzeit","url":"https:\/\/t.co\/ow2BX5fwGb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ow2BX5fwGb","expanded_url":"http:\/\/sketchnotegame.wordpress.com","display_url":"sketchnotegame.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1678,"friends_count":634,"listed_count":35,"created_at":"Tue + May 05 16:55:39 +0000 2009","favourites_count":13181,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5130,"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\/1161170918221262849\/jroCT73B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161170918221262849\/jroCT73B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37964821\/1501259262","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"de"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dinslaken&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:44 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1161170918221262849/jroCT73B_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '0' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:44 GMT + Last-Modified: + - Tue, 13 Aug 2019 06:59:35 GMT + Server: + - ECS (tpe/68A0) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1161170918221262849 + X-Cache: + - MISS + X-Connection-Hash: + - 88083b2098a08b7bde259c8dfbc242bf + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3507' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dinslaken&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:45 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237763052944216064.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b3b1eba8767fa644e15fee7912ff7615", + oauth_signature="qhYu0qn7YMhs2aa4UPYy9TaKnwM%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2597' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:46 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:45 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403364595178655; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:45 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_4l4F3W6OhRa0uewSXt6YKg=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:45 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 5966d8fb6bb8a65564f1573c73a3fcd0 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '894' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '138' + X-Transaction: + - 00eeb7cc00f3f1a1 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Wed Mar 11 15:31:23 +0000 2020","id":1237763052944216064,"id_str":"1237763052944216064","text":"@derschulmanager + Wow! Ihr seid spitze!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"derschulmanager","name":"Schulmanager + Online","id":960201549342543872,"id_str":"960201549342543872","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":1237762949873270789,"in_reply_to_status_id_str":"1237762949873270789","in_reply_to_user_id":960201549342543872,"in_reply_to_user_id_str":"960201549342543872","in_reply_to_screen_name":"derschulmanager","user":{"id":1132233873444790272,"id_str":"1132233873444790272","name":"Anna + Fr\u00f6hlich","screen_name":"froehlichfresch","location":"Solingen, Deutschland","description":"strukturiert, + empathisch, ehrlich, L\u00e4uferin, Lernbegleiterin, Schulleiterin an einer + GS, Autorin, Referentin und Multiplikatorin, FRESCH-StrategieLiebhaberin","url":"https:\/\/t.co\/3DHM0JdWTd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3DHM0JdWTd","expanded_url":"http:\/\/froehlichfresch.com","display_url":"froehlichfresch.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":544,"friends_count":374,"listed_count":5,"created_at":"Sat + May 25 10:36:06 +0000 2019","favourites_count":1692,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1003,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198265525022924802\/b6wDR9X5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198265525022924802\/b6wDR9X5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1132233873444790272\/1558797373","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"de"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Solingen,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:46 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1198265525022924802/b6wDR9X5_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:46 GMT + Last-Modified: + - Sat, 23 Nov 2019 15:40:18 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/1 profile_images/1198265525022924802 + X-Cache: + - MISS + X-Connection-Hash: + - 8ab394b4b1a0278d2e01a79b60593c0f + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '2795' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Solingen,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:46 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237762949873270789.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7924cd87f2ae5b66df865d88f7581b15", + oauth_signature="qc42mKl8XDvETtQz6xDXgEz672w%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2848' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:47 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:47 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403364747280316; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:47 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_BJSuPuanIB5GLCnzGCqBew=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:47 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - '0395a7a604c807ccf00aace20c4c16af' + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '893' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '128' + X-Transaction: + - '001139a3006209fd' + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Wed Mar 11 15:30:58 +0000 2020","id":1237762949873270789,"id_str":"1237762949873270789","text":"@froehlichfresch + Ja, das gilt f\u00fcr alle Schulen.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"froehlichfresch","name":"Anna + Fr\u00f6hlich","id":1132233873444790272,"id_str":"1132233873444790272","indices":[0,16]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1237762109854879744,"in_reply_to_status_id_str":"1237762109854879744","in_reply_to_user_id":1132233873444790272,"in_reply_to_user_id_str":"1132233873444790272","in_reply_to_screen_name":"froehlichfresch","user":{"id":960201549342543872,"id_str":"960201549342543872","name":"Schulmanager + Online","screen_name":"derschulmanager","location":"Germany","description":"Wir + vereinfachen die Organisation Ihres Schulalltags! Tweets @JStanggassinger + ^js @herrmayr ^cm Kontakt https:\/\/t.co\/VP2FaUjibL","url":"https:\/\/t.co\/8sXj8eGNit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8sXj8eGNit","expanded_url":"http:\/\/www.schulmanager-online.de","display_url":"schulmanager-online.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/VP2FaUjibL","expanded_url":"https:\/\/www.schulmanager-online.de\/impressum.html","display_url":"schulmanager-online.de\/impressum.html","indices":[104,127]}]}},"protected":false,"followers_count":623,"friends_count":528,"listed_count":3,"created_at":"Sun + Feb 04 17:21:03 +0000 2018","favourites_count":317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122,"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\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963860430832783360\/kTyQ5tqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960201549342543872\/1519142578","profile_link_color":"428BCA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"de"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:47 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/963860430832783360/kTyQ5tqC_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '71042' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:47 GMT + Last-Modified: + - Wed, 14 Feb 2018 19:38:09 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/5 profile_images/963860430832783360 + X-Cache: + - HIT + X-Connection-Hash: + - e7348090aa7d656dcf1d234f685584d5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '121' + Content-Length: + - '2261' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237762109854879744.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="78bf9fa5401ea2589ead0c777ced4e8b", + oauth_signature="E61QfLvv2fca%2FXbF8NoMdkok64Q%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2627' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:48 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:48 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403364838946609; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:48 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_H2MRi+qRiDo3DDRiP4mpgQ=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:48 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 7320a0ad67abf51c1f66aec4fc3bbd26 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '892' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '137' + X-Transaction: + - 00cc62c7003a1135 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Wed Mar 11 15:27:38 +0000 2020","id":1237762109854879744,"id_str":"1237762109854879744","text":"@derschulmanager + Gilt das auch, wenn man den Manager noch nicht hat?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"derschulmanager","name":"Schulmanager + Online","id":960201549342543872,"id_str":"960201549342543872","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":1237716773887193090,"in_reply_to_status_id_str":"1237716773887193090","in_reply_to_user_id":960201549342543872,"in_reply_to_user_id_str":"960201549342543872","in_reply_to_screen_name":"derschulmanager","user":{"id":1132233873444790272,"id_str":"1132233873444790272","name":"Anna + Fr\u00f6hlich","screen_name":"froehlichfresch","location":"Solingen, Deutschland","description":"strukturiert, + empathisch, ehrlich, L\u00e4uferin, Lernbegleiterin, Schulleiterin an einer + GS, Autorin, Referentin und Multiplikatorin, FRESCH-StrategieLiebhaberin","url":"https:\/\/t.co\/3DHM0JdWTd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3DHM0JdWTd","expanded_url":"http:\/\/froehlichfresch.com","display_url":"froehlichfresch.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":544,"friends_count":374,"listed_count":5,"created_at":"Sat + May 25 10:36:06 +0000 2019","favourites_count":1692,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1003,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198265525022924802\/b6wDR9X5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198265525022924802\/b6wDR9X5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1132233873444790272\/1558797373","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"de"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Solingen,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:48 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1198265525022924802/b6wDR9X5_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '0' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:48 GMT + Last-Modified: + - Sat, 23 Nov 2019 15:40:18 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/1 profile_images/1198265525022924802 + X-Cache: + - MISS + X-Connection-Hash: + - 69c74aa8e713e94dba7d9c0e01d6f402 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '2795' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALABcADwAqABJhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAACAgMBAQAAAAAAAAAAAAADBgIFAAEEBwj/xAAZAQADAQEBAAAAAAAAAAAAAAABAwQCAAX/2gAMAwEAAhADEAAAAWQg59stRyKCmMdrVHS53JTXNcm9bwiikOYKd0BBLa/2alNTbO1r++7z5ZmtYoJiADxVq5YS2sbItdq3shOPqu8smQwjz7zkMOG29JbJ6WtKZUDO5+q+SXNcfu2oYD86TEUgZBdILeks6yl4zcx3z+5Wqm1g/wD/xAAoEAAABgAFBAEFAAAAAAAAAAAAAQIDBAUGEBETMRIUICEiFSMzNDX/2gAIAQEAAQUCLIhLs2I4+uq1jWTywhRKLMsr2UqNCiw1PmzT+3qt9sVR6xvHFR/br+I2ui/ZVxaI8CFy2RzUk+RVpvE/v2PeRUdHlZt7iK+TtCDIM5u/0vJ48JMhmM0drJlzGySoVpNtiQ5FhiO80+3lqLO0REEuQ9JXGXtvOJ+UGY/pdyVv2CVGQwxPN9jIzNR8gyEF1T7TfWllXyUKuT203XJJ5K9BjrJ7ET22jgj5QKh/frggFyoRPzYl/cMKCBhf+YP/xAAjEQABAwMCBwAAAAAAAAAAAAABAAIRAwQQEhMgISIxMkJR/9oACAEDAQE/AUxmpbCIg5otgSj9VTyObdxhF0cyiZM5oO9VcE6QOAd1cnrz/8QAIhEAAQQBAgcAAAAAAAAAAAAAAQADEBECBDESEyAiMkFh/9oACAECAQE/AU5nwrm/UDYl02ajDxl6rVXsgKEvY+0xv0FacdkFf//EAC4QAAEDAgMFBgcAAAAAAAAAAAEAAhEDEhAgISIxQlFxBBNBYWKxFFNyc4GCof/aAAgBAQAGPwLEgbbhyWlFqmpRAHkpGaWGHPNqvcbZ8ELav8V9LtBkawpO+dc3Z2zrfuQGNSPmOzMJHDMqaAnnqjSqPkRoUW2TTHgn+p85rwdWLdKmq14J9KNOo2LhsnMalZ4aPdWteaVA8ITqTuJAGjLhpOqa+u63vHoPovD2nlk7tgvq8vAK6s8u5eSafNBwKg2dVUudIabQtCQvhqriajNQSd4xJJknG1u09m9Oe/ZARdvl04Uq3J2vTL1Te7eRcY0Q7O3i35KL51tg9RkH1Kn9we6p9MPzh+5w/8QAJhABAAICAQMDBAMAAAAAAAAAAQARITFBEFFxYZGxIIGh8MHR4f/aAAgBAQABPyGDoyT42h5YKDIxVu5UwsBex+kSxChJwcw0nsIlmSzcZ0XqzDFLYXgw6kJYXIn1Yj0NExIaLIAtP5voOhujiOynRNsvuFe03IJdcCr3Bka7xd92e+HUgz7aatkGwtdjmVn80Fj01LVCsr33PM1wly4QQAFC8+gOZbBlVivl9ZVi9N1FliZA35rEfu9ltvscBNJ2FQl9FkL9y/1LfQ0deBxOytPmNZjkSHsWO7L9ojUQfBjP5it7TTKinyZ/z6XFTItXmNWI2zcuoAEEwuBmJvshXF0d4xjgj1LDKJZrqJeTcVjFkBBsLurFi8134RsKjrxxFmbPfBkvo0zaX6jsn575ms2Y1n7Xjp//2gAMAwEAAgADAAAAELjzS0xmTXd6EJDy83k5y+AOih//xAAbEQEAAgMBAQAAAAAAAAAAAAABABEQMUFRgf/aAAgBAwEBPxAjuW0hLgyndcVpAosM2OuSr4RkXcLcutfIRHYZ1RFnmCf/xAAcEQEAAwACAwAAAAAAAAAAAAABABARMUEgIVH/2gAIAQIBAT8QKW+YyGilBhkeiiCPuDkzAKDJlhhFp14cWAB+zuLGf//EACUQAQACAgEDBAIDAAAAAAAAAAEAESExQVFhcRCBkaGx8MHR4f/aAAgBAQABPxCN4rSoZlcLU3ThgxS0KwHD3jihrZunzA4Cww9K9WpwKVNC0fBXvDPxvLrq3GhUoVqVrMcu8oScn1F1cAu6MJNoejpm8o+wdsUJhzsBK1Hpl3mDQkpupq0TkNT2i4jzGVQmcWBDvdsCqeISj7vzBYqrtOMmc4esw2dVltmzNYavPEBTUEVrC/uLmDjczFCMxTqAtbHIXMLEoC1dIDCwnuwHsjmRD0RWXoJcwbLjqbanuicRBFwFx5S7EeYjtTpXd8q8ExfhSkuTCac/Up5GIO+2z8SxpWiKayUgMdebhZfu++TY9mKsMt1nkxKu2beFZz2e9R/faxV3BYGOIiilhOMD/Y3gWmRjxqm0gO9I316OIYHFp+JbAbKFU7xGzeqHHSubsHhIuJTpHrcvlS2qwApsw/xKAtDJW7IoMETdOMdZmTJVA4jgSYbNt3EDnTfjbEgBDfQPwvxABLRY9TiWS4lVoRs6waIEr17/ANyyByqAKx7RlUvTl6I8kwmO0tG8EHljJ6u+xAwPDO9i/gfeW9H1p9x66BPzv5n6nb0N/wC+PR//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1237439258291589122.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="6fc75eeb5d18af96eb6bb7c3c17f68f2", + oauth_signature="K9EXNJjJi%2BT3rmvHhdjMOqR9xY0%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2591' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:50 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:50 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403365050227108; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:50 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_IaLHmJ6Aq8CzM/0Gp+63Ug=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:50 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - a0b8ed384f1b8229c11a8b2187801f70 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '891' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '130' + X-Transaction: + - 001f2e9800b10bbb + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Tue Mar 10 18:04:44 +0000 2020","id":1237439258291589122,"id_str":"1237439258291589122","text":"ajao + sab!! Pick a peach and then check your inbox, no backing out. \n\n\ud83c\udf511\n\ud83c\udf512\n\ud83c\udf513\n\ud83c\udf514\n\ud83c\udf515\n\ud83c\udf516\n\ud83c\udf517\n\ud83c\udf518\n\ud83c\udf519\n\ud83c\udf5110\n\ud83c\udf5111\n\ud83c\udf5112\n\ud83c\udf5113\n\ud83c\udf5114\u2026 + https:\/\/t.co\/uIr3De78YF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uIr3De78YF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1237439258291589122","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,"user":{"id":2506638318,"id_str":"2506638318","name":"misfit + rao","screen_name":"lankynshady","location":"murree","description":"londay + aur manshiyat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2833,"friends_count":225,"listed_count":12,"created_at":"Mon + May 19 07:00:47 +0000 2014","favourites_count":9081,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":93342,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234951787188281346\/L2OhWRsb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234951787188281346\/L2OhWRsb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2506638318\/1581235384","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=murree&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:50 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1234951787188281346/L2OhWRsb_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '343139' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:51 GMT + Last-Modified: + - Tue, 03 Mar 2020 21:18:25 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/8 profile_images/1234951787188281346 + X-Cache: + - MISS + X-Connection-Hash: + - 71246309ca4b9d37eeb3d8aa3f5e2572 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '2795' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=murree&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:51 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=3 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=::1/128&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:51 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/584875332056023040/ah5EXa3A_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '409698' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:51 GMT + Last-Modified: + - Mon, 06 Apr 2015 00:26:40 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/5 profile_images/584875332056023040 + X-Cache: + - MISS + X-Connection-Hash: + - 5c3ddbdca0e90406ca8cb49ac8208b23 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '2083' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH3wAEAAYAAAAcAChhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMACAYGBwYFCAcHBwkJCAoMFA0MCwsMGRITDxQdGh8eHRocHCAkLicgIiwjHBwoNyksMDE0NDQfJzk9ODI8LjM0Mv/bAEMBCQkJDAsMGA0NGDIhHCEyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMv/AABEIAEkASQMBIgACEQEDEQH/xAAbAAACAgMBAAAAAAAAAAAAAAAABgMEAgUHAf/EAD0QAAEDAwAGBQkFCQEAAAAAAAEAAgMEBREGEhYhMZQTQVXS0xQiNVFUYXFzsRUjMlJiBzRCY3SBhMHD0f/EABsBAAICAwEAAAAAAAAAAAAAAAAFAwQBAgYH/8QALREAAgEDAQQKAgMAAAAAAAAAAAECAwQREgUhMaEUFTIzQVJTgbHRIlFhwfH/2gAMAwEAAhEDEQA/AO/oSAdN70Dj7Mt/NSdxG3F67Mt3NP7izpZY6LW8o/oSBtxeuzLfzUncRtxeuzLfzUncRpYdFreUf0LnMn7QbxHWQ0xtVAXSse8Hyp+Bq4/R+pSbd3rsu380/uKpWvbehLRUlhkE4uD0y3M6Ehc928vPZdv5p/cRt3euy7fzT+4outLP1Fz+jXKOhIXPdu712Xb+af3FntxeuzLfzUncR1pZ+ouf0GULVVRtqZC4vc3q83juJ/8AVGLedVgMuQwAAhnqOVeP4j8VzeGCfSG3Xu+TV1XFUU0sgpWxSlrYwwZG4cU1Y/quMXwy2dHQk2k00mdQ2iFlC+suFXT9I5okbGDgkHBPEnB3Jvic58LHvjMbnNBLCclp9SMkkKkZ9ko1Xpyi+RN9WLE27Jf98RrjBAb78rKq9OUXyJvqxU9J3V7dHKw23X8q1Rq6n4sZ349+Mrj9rOXT9EXjOkSX3fv2+Cy22NjId0rtxzkj35V4EEZBBB6wkaxOsjrRcJaerrppfJHCqpZ5iHDdvIB4erITHow+B+jNA6ljkjgMXmMkfrOAyeJ60uu6M4puTbw8b1jis/sqNYNsplCpkvkYPT+I/FIrrFf7bDdLZbIKWair5HObNJLquhDtxBHXuTVc62ejfmJjHt1HOIOcjG7OfVkhW4JOmp45fztDuGF6idJNRqS0+KEq8aM15tFHaqO20lXHBAGMqnTdHJFJnJcPd7k326CemtlLBUy9LPHE1skn5nAbyrSEYNoUoweUa6q9OUXyJvqxe3F1cyhe62xwyVQI1WzO1WkZ37/gvKr05RfIm+rFCy5PNa2B0YLTK6MvYCQMAY/2uO2xTlK9bis4SYkvu/ft8C22xXi5XOrudbSUtHI6jkp2RRSZ6RzgRlxTDo5Qz23R6io6lobNFHqvDTkA5PWtohK613OrDQ0kt3D+P9KmQUyhUypyAp1da6CqLAwOaMZH8Ts54fDChdd48ebG7huduITI7RLSJ7supLYTv41Tj/zXmyGkPsds5p3hr1DUh67mGd0+Qum7xY82J7twJwRu3ZWwB1mgjgRlbEaIaQjhR2sf5TvDWeymkns1t5t3ho1I2jdU12pchbqvTlF8ib6sUBuL2OLHBgeCdYAZwOrfnemKXQrSWSvgqehtoEUb2avlb9+tq/y/0rPYzSDGPI7XjOf3p3hrmtpWdWrcucYalheK/sVXclUquUeAvfacYA+7cc4xgjr4fT+ytxSCaFkgBAcM4K2+xukIORSWvPr8qd4ayGiGkgGBTW3H9W7w0snsq5a/Glj3X2VtLNSplsNkdJPZ7bzb/DWeymkns1u5t3hqF7IvfJzX2GlnSEIQu5JAQhCABCEIAEIQgAQhCAP/2SAgICAgICAgICAgICAgICAgICAgICAgIA== + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=::1/128&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:51 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:52 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '95940' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:52 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 8b5c4a0e4167a380abaa6c8902b879f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:52 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '95940' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:52 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 8b5c4a0e4167a380abaa6c8902b879f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALABoACwAFACFhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAACAwADAQAAAAAAAAAAAAAFBgMEBwABAgj/xAAZAQEAAwEBAAAAAAAAAAAAAAADAQIEAAX/2gAMAwEAAhADEAAAATFMqv50O15KnW91iaeGmur3QrG9OWfPt85dQclo0tdRTxa4uOyTDZl33fYr2gpzfxMIwrXK68QrmIkOBZM8SyxSjLvn0u4tlRs8IjrmTw7ElpY6TMSSwJxzNzyvB3Jg/o411mQdgeZEJ6EhPz6xhb3bXBDZuRoUjXGa/kf/xAAnEAABBAEEAAYDAQAAAAAAAAACAQMEBQAGERITFBUhIzI1EDEzNP/aAAgBAQABBQKUmzMIs3x8+tmig8YMsU3lCm0pEUNKukcPJg+ywvF3JfrGtJ6wa9ue5MOdYKbhOk5mkvxJTljqcXRXcVRFG9ZIq+oqnYdeTKqSMEGaaMxfxzJ4bZHXdrL1wQgO24R60JQ9sgk46aa2Yw8lhyCGiiSpmpH+yumNR4tQ51niKbmQR6om+LipviJxlcMs4/MLKc4jaqpFDZ4PxJjfLswvQLa2dbf0/J8WV3MZhv2D/mDJQksQLT6QIhOk5LlOC5Y9h5fl7Ve13JCqn3Ds23RcgSCadVw23bOXYymOPUCCu3Y5l7JXwtBCEaddkDV0RfDMiqvG8rAuGMqPfRzYsq1opB+WtZd/uq+oZzUP1Uf4P/46X+msvnp345//xAAeEQABBAMBAQEAAAAAAAAAAAABAAIQEQMSMSEEE//aAAgBAwEBPwGGOHE94PiCpDvqZWocqafYEDIGpzrgOK6iNuIgjsVUYRozYdX1j9Me5j//xAAfEQACAQQCAwAAAAAAAAAAAAAAAQIQERJBITEDMlH/2gAIAQIBAT8BLji27kINEu6MafqcjHTBiQxeFLsxQmtkmtFib4NkiPyn/8QAMhAAAQMBBQYDBwUAAAAAAAAAAQACAxEEEBIhMRMiMkFRcRRhcyAjUnKBsfAzQmKRwf/aAAgBAQAGPwJ56miIue/4RVeLnHv7RvuP2CIWiIT2OdXA7LyubfIP4lWZrInSe7GiLxAWtasLI60RDhRWg9rjcCnV0oVsGOwnAAFaZ5nZuZQNTqLNGMcDgXG+t7ZDzCbZ5dX1q6unRYjkqozU4sh7DmG7YnXKijJa+STmaIvALR5psYz5BRx/CKex3uY7npTqeiwVp0FLhtDR9KgLwxO8BW4vdk0albCyAZakhP8AFxRAtFcSgJlwMOZYEAyZ4Zixx4eoW0ktG1fTiLQCjaoq2iQDMdB5IOBwuJp2Ujw7dBo36L96ZhdSLicO34FNORoU18j3RAZgDVSRzuJezUlYAah2qNos5cKgOoE7bNcIh9Ag48buHyHW7iKDa5hxCilIzO8qjPFoE21c28fZBwyoVE+PTEWn7pkTKHajOvIKQO4SdztyRhGlKk9F+nL/AGn/ADKzemFD8in9I3H1G/6mqL85KTvd/8QAJhABAAIBAwMEAwEBAAAAAAAAAQARITFBUWFxgRCRobHB0fDx4f/aAAgBAQABPyECtsdjL+JR1fQWo2+wlIZyTYfgqPMbw+kRRHaNMwSuhNJccDgt8xKOsuZXuXxAAmR2YIKzbVizriFWOsQNbNn7lzyMS6dQCEl9VXaXi3kFZDmFWtC+4Pb/AIhNwid4Y0TB6ZS5XvKrpiaL2ZS0Ut+IfF38l4Kmy22+sx9ESyW8jUVqby5qllFtvicsxBoD4lWu4g4fEfAJFF7i04IjZlenXKjccr3TtgYC1FHQPJjAvkaDrKsZV0IdpJB/cAaFVxXEpzCnqdpoSxiury3gigAFhXsSjONzTlIzSzcrpJz+ZUs9PoveZdNYjmY33IjAcfma3IpuYH16JmlsNrV8e8LbG47rESDzTl/UaYGXfmW06I87MCwIBovTuMcKvKRR7byxuhsfw7SwTbPpTxoS9klgTT+f+RV/gNWVy3gJ7Hx+YplLF4mxlY4Wv2+09jhA18wtNwrH+VSni8B/lp8TP6XE/j4n9XiaPf0g+JPhH0nwf16f/9oADAMBAAIAAwAAABCq4ZIMy702HRiHiDY6g89xIbjr/8QAHhEBAQEBAQABBQAAAAAAAAAAAQARITFBEFFhwdH/2gAIAQMBAT8QD5ggBdoXiOImHxdDyxIZzmfR5GfklcZOechVsnXq45y2dDPkhcsD7BjP2P6H721v/8QAGxEBAQEBAAMBAAAAAAAAAAAAAQARIRAxQVH/2gAIAQIBAT8QH54PLhLcKHGX5aWKcGXW5t2Ob8bEhj2M3pjfkTg5elWIw5Frlwxv/8QAJxABAAIBBAEDBAMBAAAAAAAAAQARITFBUWGBccHwEJGhsSDR4fH/2gAIAQEAAT8QGCsQ39wfshuzAvyf4kQ6xTlFzmx9pm5QPOiOBRruEUBwK1jcWDxBJIl22dmGaTsCK06sfoQJlyrRzfb7Q20Ar4cf1LcwFcpq/XEZhQ6SqINwwaBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:53 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '95941' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:53 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 8b5c4a0e4167a380abaa6c8902b879f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '366868' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:53 GMT + Last-Modified: + - Wed, 16 May 2018 11:27:28 GMT + Server: + - ECS (tpe/68A9) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/9 profile_images/996714244090417152 + X-Cache: + - HIT + X-Connection-Hash: + - 67d042ecaa4e35b1dfe3f7de602c1ab5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAFABAACwAdAB5hY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAEBQADBgIBB//EABkBAAIDAQAAAAAAAAAAAAAAAAMEAAECBf/aAAwDAQACEAMQAAAB+Md8vISnisqM3pjllibLHFVFTS+iJNCxqtOEkwgo6QmnesLAXguSUpnKwE0UXsCNhMqC2Oc6Tk1j6oyr1npBRo83slexjeQtJfPoWR/uhis1eVZii1KcLx+YLEGp4WL5F3VqHazr5x2jY516tDp0lJJaP//EACYQAAICAgICAQMFAAAAAAAAAAIDAQQABRETEhQQFSM0ICIxMjP/2gAIAQEAAQUCwRkirU5YVgkDOg5LZsLlg0+wXLJTPiMV1rCnZZWdsBDr1sEF2ImcrzMU3Vjq45RpZlZYdFyqiu2+vtbT+3H7o2FGG8WGdTPFrp2FiLIZZ7q4qYHC/bXBku7YsrlZ2PsvtMqwiGJ4rsqA3wLNjZhrLHDFCIFXpcqEvUVNmUrITWc2bPtnW603eYy9CBCiNv15sythNhM3XJMdm5J112eomOR6fkMT9ZRlW1IVjF8ibfVXxK82pDFGhC26kArJrLYS2TZWGuyuzqazxUPisnPJMoeckKTlYt8cCFc2ndzPiu80zUVWsMMXxltPWa1UW4Yis7Vsnfpj+dV+NsPydN/Zv+nz/8QAJxEAAgIBAwIGAwEAAAAAAAAAAQIAAxEEEjETISJBUdHw8QUQQoH/2gAIAQMBAT8Bqr3mb6+jhR3hY9IV485bUrIGrE4nUWtNhTvEsHdv6hd9+4nBjKN+xG8MtQt4s5ltjb2VvT6hYlgPOayrSigdMjPzmU2EKUH3Px1oqUhiBKgbque4+f7BpmdGdjxN4csSOZbpywWvOMTVXB2CrwIjsh3LNAF1LbMYPqPaacVjVmnb29pqdUWJVRgfr//EACIRAAIBAwQCAwAAAAAAAAAAAAABAhESIQMQMUETIiNRYv/aAAgBAgEBPwEt7OilNoxT7LKvAoIf6G8mnk0409iDm5OpP5OWTUHwyPOeDyXOiK2ahqO2VUVby9l9Dk+Rbf/EADMQAAEEAAMFBQcEAwAAAAAAAAEAAgMREiExBBMyQVEiI0JhcRAgUpHR4fAUM2KBQ3LB/9oACAEBAAY/AlhaLJUgcf2xZCDYo/DnaZmNHa+icfNRlrqdJw3ojG/Ue4GRPO+dxH/gWNpq8neiikjAoji6puWeF2v+pVgFOt/aPADy6kIR7VHW8Ftz0RY8UfY+aVpLeGxyUJZNvInZl4Rmhb2Xcl+km/y5t/iVK95B8II550jGw4RLkTWgRNUapjfhHn5oOkcc+blFTR3TcF3mR5+zdWQx2dLC5zoj1GY+SDot1KNRh/LQM0TotosXXi+imEjsFkSf3afBAwEjjN0Gj4bUO8a17xf7enzQfOwhp8Id2nfZSdzI6wQztaLhTHkQ5O4aTtp3Z2e3V2RYTw6SF2d4zeILfN2nesbkQ5l1ajdOwlwOrcmn8pDeGIscMTGEa9S4q/0cFAZEGx+eq70tZ/LAmuecTAfmuBiiMON9tGJx0tbt0o2eCXNpdln5IwRmZ2dEyPq/6CpzafWhcS77IbUbYCaojmmSNiblkHYAbGv1QfuYyOrOyjLBs0bjfERbmev1URpu8Js5LgCk2dzWljs9MwVC90hf8AuyExjcI2jUuHg+63zs+Y8ytkgaeBtu9SnRyda8wpRiMsp4ezlXVYmOIVPgZv3E9qs/YH1Y5jqt9stOjeLLfqg4lzmni6ouEXdQmosWp/ChiNm7Ki8zZQ3seKMDttblZ6okx0eTeQV8uXtNZg6hYXzbnpkjEQXRHJtJjcTarVR95nG3hHiKEu0yk58HMrA1rYoryY33iipPRO9fc//EACYQAQACAgEDBAIDAQAAAAAAAAEAESFBMVFhgRBxkaGx0SDB8OH/2gAIAQEAAT8hhZGMAZZUSw5NcnvKlZyLKwAUZkXNKYoKVjpB4bo5HpcHwHpps+fUK0SkQVaG9kXqpS6rmOQKCHxvonFdo2LLZwgMoByhxBYA01XwHXzB8RW5SwcPs6+hLRQpydxYITpOz3lid9g10fP5siEKsET23zMVU6MEY/co1yValywQKv069W1dXxDpbiWvt2lF5oZhb9FJWRg5SMqDwfyQQO7ZQb7GINY8hR4PL6hcNExVCVrKRvxK2DoBvvcDrmBq0K5zfESk/NotLf6TcXgMkxZWZ3sUbUvpYpiplAJfslKhFo/RMKvY9GL69oOTe1oI1TboMqTJcW+gUbv/AJAwDifhmi984ivpzgZJq6hvHaUV2ueCf7v+T+nEVCL51iqjsyx0nkBL5D5YwVnqlvha889pQuJXMeQd8fcI0KuAl2rWniDjO5lPZ14SOw0EXhAPb+0DHGJxDXoGLwxbaVQCw4D2CtTPqlFaHgvfdqGZ2TL/AJxzHDuMTi9b8VEbXpZy2J/twXJC1ztmWLBizZE2X7DSsPpaX1hCXrQtft2l1r2Lxl1fHOGrp+zM/ime8FDaHU4/c2Vy37e/mY/DNmDqsbXBXq4wql3FyUuTeAjEpkGeZYlzgZQaKxtW68sOTFqvgrRDnPIeD9/x4J+b/Pjn/9oADAMBAAIAAwAAABCsZ3HVI+5SX0kgB4oJvKvc3lTz/8QAIBEBAAEEAwADAQAAAAAAAAAAAREAITFBUWFxgZHREP/aAAgBAwEBPxCQlgM/h3WmjlSVJtDq2bap2QE94Kim2uzYcRuFcYye0ioc0mYAVS4zPyJBzS0smTju3PFFUoWXZOZ3v5pFysZZD5OqgSEyMdQTjdJGmzHMApz9WlpxDAjRcWNat3Vx57ZiLwZvi9r4tUHAMrOhg559mpHwyGcmL8WtnmneQxGwkR6HGs9UIKRZzME61GHnNatkW02x9UtBDsTte+My6AmmQk4GInlfaNpCbqfIQymTY4XnqgMVO5Uyt6n7NTuqzdV9XXVj+f/EACURAQACAQQABgMBAAAAAAAAAAEAESExQVHwEHGBscHRYZGh4f/aAAgBAgEBPxALalkymKPdpbV4Wd0du/f7mI4PDv5R1vHz3tQK29NpYriwNXuunvBNmi9c/efaLegONf8AOsYDFXB/caxDY8ozBwHZNjj8/LMAHAB6dZTY+K29ZY3GIJTLDVwxpdzL1l8P/8QAJhABAAIDAQABBAICAwAAAAAAAREhADFBUWEQcZGhgbHB8NHh8f/aAAgBAQABPxDElxbk+DAQpJW6F7AaJusjMQnFtzeiIwzACgBUlic8y9NYRKJexhWWQfVo0134xJb41k8FJ8n1FlK6wTvpwgNC1FSu5rA/wHE6i9PR4mJpImWbKDoS+HymBdRWw34etZmP5YdEflgdDZRf8MawhQQLuP5sciKOwmyweifR+cBY3GPaI/nGWMCSSIOBunuEOiByhYp2dvJnJhuI7bIAfFJ2srQ0NBAhyoJsucRGLF2YfLkIthMeGS0IPZ6baSLhau8qE2huHWgjeGwNBAoBce/ZyMiVoIoICsl3gB8LMs7N0a1P2wk3i/pNMvYL7OWiaEuSBLZU+iY3j1hm6I6LTIOL0DEx/KpA6CAwpJ2WmNUt73AbAAoCPsbK1nXvKRB4CFEHcnQK4kwIekdz/ccPPxM9E4CUvpg5eAfUSIHGxfjCYbwLWIBij4/nJmZdFhAnk+UCrwYKmiNp5hUmFGKw2RX1/AQCJGYKhjAxkkxXDdbF9y2HJ4EHdDwMjLIZABkNpiZuM/0nAsg6m4zEXWmXDe/PSkO7bIN/jIJhH6PKzoKZNswjxAB4ai74Mf8ATWMBCCAKdGlY06zuUGgs0DT88nc0IXdIVfKTI7SSMhkEBNAXpjFWOW3qSNra1n/uH/GRGVKi7JGDj98Huy7hMp4y5dsZixelLdAgWqR7OkVF3O6K/g7mmjlFH3QA+MHryCeCE3DNd8YwcC6lKNx5UOW78EhTY+j5rEpjEFRo0XyJgyflyLA2HqXZPHx4xiaIAKDMBIlPdBhsjCCEoNzLvbj1BUed8E9HldMkn3QFAv7X85LohQxLEfx+2NXviFDXJNQ9l7TmNgJH1byuQIgijv8A1wyfpQyWWh6ePz/ZkhbUJPRD+zK17ZUFX2SWd5OlEtmFbTZWBCYwdIUAROicXiA1A/IFK8wOBoz7636t39XHP2DP1cfrmfvf6z99/f0Pp//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:53 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '95942' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:54 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 8b5c4a0e4167a380abaa6c8902b879f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:54 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '95942' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:54 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 8b5c4a0e4167a380abaa6c8902b879f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '366869' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:54 GMT + Last-Modified: + - Wed, 16 May 2018 11:27:28 GMT + Server: + - ECS (tpe/68A9) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/9 profile_images/996714244090417152 + X-Cache: + - HIT + X-Connection-Hash: + - 67d042ecaa4e35b1dfe3f7de602c1ab5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:55 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '95943' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:55 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 8b5c4a0e4167a380abaa6c8902b879f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:55 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '95943' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:55 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 8b5c4a0e4167a380abaa6c8902b879f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '366871' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:56 GMT + Last-Modified: + - Wed, 16 May 2018 11:27:28 GMT + Server: + - ECS (tpe/68A9) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/9 profile_images/996714244090417152 + X-Cache: + - HIT + X-Connection-Hash: + - 67d042ecaa4e35b1dfe3f7de602c1ab5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '34380' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:57 GMT + Last-Modified: + - Mon, 10 Oct 2016 09:31:36 GMT + Server: + - ECS (tpe/68A0) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/785412960797745152 + X-Cache: + - MISS + X-Connection-Hash: + - 7baebf5d04f91084e2ccc400cf0b8dfa + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '2617' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1235578143546716160.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="358cfdde7c7ce3301fd60096283da9c9", + oauth_signature="TEAmb6XkBBGTAc2Nh1Tw6I1sdP0%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '3805' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:20:58 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:20:58 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403365857836662; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:20:58 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_19Dj7jexnDiqwqngKsu4hg=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:20:58 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - d410ae39adfaadf554bd72682a96caab + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '890' + X-Rate-Limit-Reset: + - '1584034538' + X-Response-Time: + - '130' + X-Transaction: + - 00f1f89000792b28 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Thu Mar 05 14:49:20 +0000 2020","id":1235578143546716160,"id_str":"1235578143546716160","text":"@zammadhq + is it possible to retrieve time_accounting_ids entities over the API? Documentation + says nuts. https:\/\/t.co\/Id3u5HopuJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[],"media":[{"id":1235578135057481728,"id_str":"1235578135057481728","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWnxHhXQAAd75g.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWnxHhXQAAd75g.png","url":"https:\/\/t.co\/Id3u5HopuJ","display_url":"pic.twitter.com\/Id3u5HopuJ","expanded_url":"https:\/\/twitter.com\/JeremySternad\/status\/1235578143546716160\/photo\/1","type":"photo","sizes":{"small":{"w":441,"h":680,"resize":"fit"},"large":{"w":516,"h":796,"resize":"fit"},"medium":{"w":516,"h":796,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1235578135057481728,"id_str":"1235578135057481728","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWnxHhXQAAd75g.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWnxHhXQAAd75g.png","url":"https:\/\/t.co\/Id3u5HopuJ","display_url":"pic.twitter.com\/Id3u5HopuJ","expanded_url":"https:\/\/twitter.com\/JeremySternad\/status\/1235578143546716160\/photo\/1","type":"photo","sizes":{"small":{"w":441,"h":680,"resize":"fit"},"large":{"w":516,"h":796,"resize":"fit"},"medium":{"w":516,"h":796,"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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":2320888973,"id_str":"2320888973","name":"Jeremy + Sternad","screen_name":"JeremySternad","location":"Leonding, \u00d6sterreich","description":"Team + Vienna. Colorful.","url":"https:\/\/t.co\/EnMuuKgIPj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EnMuuKgIPj","expanded_url":"http:\/\/teamvienna.at","display_url":"teamvienna.at","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":305,"listed_count":4,"created_at":"Sun + Feb 02 23:33:57 +0000 2014","favourites_count":539,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":408,"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\/1194592858294108161\/OiE5Bmdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194592858294108161\/OiE5Bmdi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320888973\/1509711198","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Leonding,%20%C3%96sterreich&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:58 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1194592858294108161/OiE5Bmdi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '0' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:20:59 GMT + Last-Modified: + - Wed, 13 Nov 2019 12:26:26 GMT + Server: + - ECS (tpe/68A0) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/6 profile_images/1194592858294108161 + X-Cache: + - MISS + X-Connection-Hash: + - 66674d18a357ce4a2a97885f1e4de7b3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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8L/uXqp+s3gseg6XzKlzFV4aKvjBzGeLWHQ58WrsdxHeeSpOz5381HqpF3jiSVSzMp2zMzAdoF5btEBaTg+0XCP+RUU/rYYnvQL1DBY3uKdI8RuPlh0Q4C6z5JbxfiaT8PmOPlMmw0+P9lFllUiWdM+UpEuGU6ZQUMvwS1RZAhlSK6wwitIF1Gz2CY4Zg+rJpzufmj3KpGNI9rJwJnyRcRnossK68WfSAcUMo3UnxhM9qiVLgWPOP0IWZDCHVpYvxBZjKYlxXIxqWEg11vUHF1XyRGpB1uy0Ury3XiUldqNdEVtg/RbMcIrRDzs15g/TydgvkJaD1UuTrwBnLOeWU7+87s7g+3UaHdcgoxtvEp5YSBblVbpWmIdwjteDtuAgILMgYpRglHjiKNKapDYeFHh41EFyzWRs3e96ZRzTBVLH8QALzol/6EImlQXc31bhzVX7gFiu+UMi2lq9Mei7+JfVSJ2IPNj0R2dsrUirHFV1k9S5wOpZnsNZ38y/uvkQ83fuEZABD3Pb60pPpf3gDsJjZZr7Tab5DbL0sZsL67r9pmYKwtKI465li2FePw0LM88zfufaPBY+o/YhkL0RrkxxKyEFBigswT3z7pPsYvu59ln4Xufj+5qj9tn5br9H/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Leonding,%20%C3%96sterreich&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:20:59 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:00 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '95948' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:00 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 8b5c4a0e4167a380abaa6c8902b879f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:00 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232908' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:00 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:01 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:01 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232909' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:01 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALAAMAAQAeACphY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAGBwAEBQgDAv/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgQDBf/aAAwDAQACEAMQAAABcvzEWBaEDJ9UhWgWCjDhncwb6fQ0r2Ja3UO7RtZ5VVuJmAwZV9HnqXycC9jQWN3mPpLj353aC8KdGT62Nid8VC/4+1RBYpHBqRvKvo3z/aXq36VQINf7VbE3+Pm0i/GjroLnyzOWgpdFG9m2SvYgKQB6Z8GubLDRNGlM2L0mpJA//8QAJxAAAgICAQIGAgMAAAAAAAAAAwQCBQABBhATERIUICEzFSIjNEH/2gAIAQEAAQUCycowja8pEPZrK3bh6hrxWtbIG6zlXyAozi6TlGEeQ3U7Aut5SgkQNhXKkTKjLx3+u6W1NWnWMNgGc2f2MGeGUzzi+OA3uMd/yF1DuZwl/cD5yE22LoSbBAgBCGv9ri7IpKtGScKivjl2j6NlEsl3O+LOyRmzql5rpfiy7ItXhFER9ya6cmF563e/jzTy2jNK9rLmTTPQrcRa6cjnqNUsLvMekFnOEN7xMu124S1OGXKsjQRs/JGBwy1yVzR2OFobM9hxQMG8qjVrFPbyUxZ1VnWN165d20VgxrED2LKCok1ejARMCtOLTjthVpWUHGNZHb7mVnF2TYkoumD2n+mf9hP6fZ//xAAiEQABAwIGAwAAAAAAAAAAAAABAAIDBBEQEhMgITEzYXH/2gAIAQMBAT8BRNuUCD1sy3Cjm0iQ9R1DJDYYVTXubx0nVMjha6kDeMqg8gwKlp3MPpRTRuj05R8Khp2tOYbLY//EABwRAAIDAAMBAAAAAAAAAAAAAAABAgMREBIhMv/aAAgBAgEBPwEzjOEdsJ19/Ykq3FaMpaT9FTBEN90s+WMTIWKROuSl2gTtbWPnTtz/AP/EADgQAAIBAgMFBQMLBQAAAAAAAAECAwARBBIxECEiQWETIzJSgSA0cQUUUVNicpGSocHRM0KDsfD/2gAIAQEABj8CosxAA1Jox4GPtT9Y3hrOcU4HlQ5a94m/Oa4MZL8GNx+tBPlCL/JH/FCWFw6NoRtLMbKN5NGKElcKug83U7HEGRostmdtV9KRoMUrSJcNf413TAr9rWip5VdbtCfHH/3OknhbMji4OxcDGd8nFJ93asIu2GLb1odnAuQdd9FL5vLw02QEC+xsA7cD8UfQ7MS99Gyj0rtsvd6Zq8zczav4pNxJAsb1mdrfZXSvdwfia4f6T71qKdTvRwa1qWFLZjI2p60MPMouPUGnsQi34a4+8PWpMOMPKFjXNnI4fTaX5xm9b68TVOUNmWTMPXfUeHaIKTqb7VgklsH0G2S/9xAFRxLvLsF2R4+MacEn7Go5tcpoOpuDv2LLGCSuo6UI8QCbaOK4ZF/GhAhukevxo4xhwQ6dW2NFKuZGFiKI3tA3gf8Aauxmu0PL6VruZlPTnszm8bfSKyLiBK/LLyoRQD7zclFJh4Rwr+u0xTIHRtQaL4Bs6/Vsd/41aaCWM9VrhxMn56yr84m6C5oNjT2CeUb2NCHDxhF/37R9v//EACcQAQACAQMCBgMBAQAAAAAAAAEAESExQVEQYXGBkaGx0SDB8OHx/9oACAEBAAE/IYBdrRQEBkeNDyGrHSxdZwOAmoyvP3y1Y/8AgoWig4q+fpBk5a7HqB8thwEaaGDH9NCENN1B1wY2SqP8qXcSP0fHhDOwVVqjkpViH3X1sPc4g+FIulAkMHoPN+JjKYgEzONMI9n9TP8AcSlh2CPXpungf8iqQ4C3HGsuRW2bOp5mfLpnyPJ8JSLL5dLmjgtSLtCBWKG3EBm9DQ+cvuFVTVOJ8y5mHs5F25JQK9Euelvpfxq3TNYt00Gaja17X9SgAuvDBLOaVVHy6nW4o+GZJw6Qypnw/wDSWY/pwwXjrcplOfvjqTKn1JGLVYeL0tpVg/jt6SsDTXubw5A6J0KAaBvGytMjHcgpXZdavSbn8jedoH33D9HydA2JO3GVNR8bu7wgHhP4qEFN5V6OifeStD4k49kFPjeO0r6mrniH6lDw9XVbr36if6h4YE3Wwj4bvOV0rdD3geD2tEMw4DD2xEBOQ+kQkR41XK7v5e1nyTQ/H//aAAwDAQACAAMAAAAQiXat0Is5mThy1QXsA9JW8pN+8//EAB8RAQACAgICAwAAAAAAAAAAAAEAETFREEEhYSDR8P/aAAgBAwEBPxCAFYJnUvhQzG8OGGjxjuec9++KxWnl34l+QURSzvtjSvfAEpjai9vudNuDJ6dn7Eu8urK+ALuuf//EABwRAQACAwEBAQAAAAAAAAAAAAEAERAhMUFRgf/aAAgBAgEBPxALngIldj8YFE2alIhfkO5bOo7YRXDPyE3RViG20yyXejKtVFtwMj4irj//xAAmEAEAAgEEAgICAwEBAAAAAAABESEAMUFRYXGREIGhwSCx8NHx/9oACAEBAAE/EMUX4oFqq0GKqRUgvV7aPOIO+GbwwVjtlh1hxAb8G19uBInY3mTERhpGDu+u19ZBIo0Hn9bfLtswoRKrsBkf6ExMfR6C29JwSNwWYPxAWNgGRkY1pM4rI0KowlhRASQFVsQ5NEEFY1NEIoxF7XklhJapJGGHfCbPmo7z6HO+j0OFO8Ds8JomyPwiyeFYGPCTPXbAkhhtiZSJxkVSiwDLakKjcJKyPWuXJVgSai2PTjJAaiA1YkhBr1teTAQDEdSdzHUYqgjIABlNBJ+CnK5+JAV7qDj+RfvCyQ5ug8Auu8RhldJMguwMgEnK3ZpiGs4KACHBBRpWLX5XrKTyMnFiRBjEVljWe1vJeGREoR7yoyFSXmvW3WL46ngIPSSZ/qYhNiQaduHGfIF4j+eR5ydVkMhVJC4Kc0YEgHMxAijc8z4wUE5RKAfZUbDVfJeknmoL/Q/jNVC0pvWf+DiaF+OkxuIs3EBISUO7Hy3uGiyTogkkhb1jrfxF9VTqxU9DjdQ8OIfwudT6xZxAcaEq32qe8VbG53aepwMQVJEST4uCOepchujtw4YcEAk7N5jSS+cgyoICCSKrJwgU5RI2scwV5ca8EqKhiOZF84RgafnokJiNelyQcuxPcSdD/wAwreHnptm+BTE6VeFglmyZLsFGI3Ur1GJh95Eywqfssi8ZaaLmVbc8al+3H4xe47Vum35u+4R/weEsxeqUeEWofR7c2UzBfRIjscVXlLT+3AJNCAdwPbJjnlADip8rL1l7/wB1bxVpy/xfitL/AHXPzv1hp/D/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:02 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232910' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:02 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:02 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232910' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:02 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:03 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232911' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:03 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:03 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232911' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:03 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:04 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232912' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:04 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:04 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232912' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:04 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:05 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232913' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:05 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Matrix&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 12 Mar 2020 17:21:05 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1190803454421286912/Jh7C-9CX_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '232913' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Thu, 12 Mar 2020 17:21:05 GMT + Last-Modified: + - Sun, 03 Nov 2019 01:28:42 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/4 profile_images/1190803454421286912 + X-Cache: + - HIT + X-Connection-Hash: + - e8d2bd1cbd3fbd635dfe529f0c356449 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '111' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1234843595317731328&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="e86b710c72466ce11762d91e8e342ef4", + oauth_signature="jrzvxLprbm0dawJXiZQnGxIng0Q%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '272' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:21:11 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:21:10 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403367094053559; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:21:10 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_YcbEOet3A0uRjwx/mGR13w=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:21:10 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - f5827952166c51e4c8ef10cc89ea9fd0 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '178' + X-Rate-Limit-Reset: + - '1584034526' + X-Response-Time: + - '119' + X-Transaction: + - '005884c100239cbe' + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[],"search_metadata":{"completed_in":0.01,"max_id":1234843595317731328,"max_id_str":"1234843595317731328","query":"zammad","refresh_url":"?since_id=1234843595317731328&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1dbc5ee67e2ef898baefda5f841daec0", + oauth_signature="jxBYNDPZRvs%2B827Krz0HPJnnCQo%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034525", oauth_token="REDACTED", oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '279' + Content-Type: + - application/json;charset=utf-8 + Date: + - Thu, 12 Mar 2020 17:21:11 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Thu, 12 Mar 2020 17:21:11 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158403367171597176; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:21:11 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + - lang=en; Path=/ + - personalization_id="v1_ORGBxo+ZIwFnO1N8c3KgTg=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:21:11 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 388fbb84541bd960dc97a525ff2ab654 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '177' + X-Rate-Limit-Reset: + - '1584034526' + X-Response-Time: + - '119' + X-Transaction: + - 00365ac600ba6a94 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[],"search_metadata":{"completed_in":0.011,"max_id":1238153070854504448,"max_id_str":"1238153070854504448","query":"hash_tag1","refresh_url":"?since_id=1238153070854504448&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Thu, 12 Mar 2020 17:35:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=%20%EA%A8%84&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 02 Apr 2020 05:37:08 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Fri, 06 Mar 2020 09:29:09 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=%20%EA%A8%84&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Thu, 02 Apr 2020 05:37:09 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Fri, 06 Mar 2020 09:29:09 GMT recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_resumes_importing_again_after_15_minutes.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_resumes_importing_again_after_15_minutes.yml deleted file mode 100644 index 22c9c7efc..000000000 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_resumes_importing_again_after_15_minutes.yml +++ /dev/null @@ -1,29320 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fbeaf7b04f068bc6c7aed7d7f63744a7", - oauth_signature="zhWokeq%2BDLAZRk0sqSM7tJxuTBU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486945", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '527180' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:06 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:06 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348694656185155; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:06 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_8t5xadC6geGJ3go83yIwsA=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:06 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 1b1ba2c2836a8655dce2d3b4604fbdbb - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '179' - X-Rate-Limit-Reset: - - '1583487846' - X-Response-Time: - - '374' - X-Transaction: - - 00bfa9a7006eb9b5 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Wed Mar 04 16:52:19 +0000 2020","id":1235246706817630208,"id_str":"1235246706817630208","text":"Protect - yourself and your community from coronavirus with common sense precautions: - wash your hands, stay home when\u2026 https:\/\/t.co\/3J4CZwGJup","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3J4CZwGJup","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246706817630208","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"result_type":"popular","iso_language_code":"en"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":113461554,"friends_count":608659,"listed_count":229183,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15735,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":121548,"favorite_count":566178,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 17:15:46 +0000 2020","id":1235252608845197314,"id_str":"1235252608845197314","text":"Coronavirus - instructions. \nWait for it...https:\/\/t.co\/WvnKBwKUtb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235230117401710594,"id_str":"1235230117401710594","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235230117401710594\/pu\/img\/omiZASR09WTEx1JE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235230117401710594\/pu\/img\/omiZASR09WTEx1JE.jpg","url":"https:\/\/t.co\/WvnKBwKUtb","display_url":"pic.twitter.com\/WvnKBwKUtb","expanded_url":"https:\/\/twitter.com\/HolyCow_Inc\/status\/1235230134807990274\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":460,"h":258,"resize":"fit"},"medium":{"w":460,"h":258,"resize":"fit"},"small":{"w":460,"h":258,"resize":"fit"}},"source_status_id":1235230134807990274,"source_status_id_str":"1235230134807990274","source_user_id":27739855,"source_user_id_str":"27739855"}]},"extended_entities":{"media":[{"id":1235230117401710594,"id_str":"1235230117401710594","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235230117401710594\/pu\/img\/omiZASR09WTEx1JE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235230117401710594\/pu\/img\/omiZASR09WTEx1JE.jpg","url":"https:\/\/t.co\/WvnKBwKUtb","display_url":"pic.twitter.com\/WvnKBwKUtb","expanded_url":"https:\/\/twitter.com\/HolyCow_Inc\/status\/1235230134807990274\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":460,"h":258,"resize":"fit"},"medium":{"w":460,"h":258,"resize":"fit"},"small":{"w":460,"h":258,"resize":"fit"}},"source_status_id":1235230134807990274,"source_status_id_str":"1235230134807990274","source_user_id":27739855,"source_user_id_str":"27739855","video_info":{"aspect_ratio":[230,129],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235230117401710594\/pu\/pl\/4oAV0q5O9i6eTPEf.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235230117401710594\/pu\/vid\/460x258\/pJKwtQJYNriIdlCO.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"result_type":"popular","iso_language_code":"en"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":324703658,"id_str":"324703658","name":"Rex - Chapman\ud83c\udfc7\ud83c\udffc","screen_name":"RexChapman","location":"Lexington\/Phoenix - ","description":"I hold the microphone like a grudge","url":"https:\/\/t.co\/WW075Yadro","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WW075Yadro","expanded_url":"http:\/\/adultswim.com\/streams","display_url":"adultswim.com\/streams","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":524897,"friends_count":10352,"listed_count":1743,"created_at":"Mon - Jun 27 02:36:27 +0000 2011","favourites_count":126521,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":70743,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0E21F0","profile_background_image_url":"http:\/\/abs.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\/1055264484745494530\/QLX6B5o9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1055264484745494530\/QLX6B5o9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324703658\/1539742514","profile_link_color":"2C12EB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"100D14","profile_text_color":"EB0E20","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":63224,"favorite_count":209364,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Mar 05 15:39:10 +0000 2020","id":1235590684935143424,"id_str":"1235590684935143424","text":"Coronavirus - tips!\n\nIn addition to washing your hands, make sure you are also wiping - down:\n\n- Doorknobs \ud83d\udeaa\n- Light sw\u2026 https:\/\/t.co\/3nFofeM3QZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3nFofeM3QZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235590684935143424","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"result_type":"popular","iso_language_code":"en"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138203134,"id_str":"138203134","name":"Alexandria - Ocasio-Cortez","screen_name":"AOC","location":"Bronx + Queens, NYC","description":"US - Representative,NY-14 (BX & Queens). In a modern, moral, & wealthy society, - no American should be too poor to live. \ud83d\udcaf% People-Funded, no lobbyist\ud83d\udcb0. - She\/her.","url":"https:\/\/t.co\/BYjH4stRnI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BYjH4stRnI","expanded_url":"http:\/\/www.Ocasio2018.com\/","display_url":"Ocasio2018.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6477440,"friends_count":2158,"listed_count":16434,"created_at":"Wed - Apr 28 22:38:40 +0000 2010","favourites_count":21223,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9918,"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\/923274881197895680\/AbHcStkl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923274881197895680\/AbHcStkl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138203134\/1511815660","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10352,"favorite_count":48942,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859936090808321,"id_str":"1235859936090808321","text":"RT - @boxingbooth: Coronavirus control... let\u2019s stop footballers shaking hands... - but let\u2019s NOT insist that airlines clean their planes after\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"boxingbooth","name":"Adam - Booth","id":457675963,"id_str":"457675963","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760299865,"id_str":"760299865","name":"Conrad - Cummings","screen_name":"ChampCummings","location":"Dungannon","description":"Professional - boxer chasing my dreams. Sponsored by: @niscaffolding & @Aqualla__. Insta:\ud83d\udcf8 - https:\/\/t.co\/Ns0VNrL7CJ","url":"https:\/\/t.co\/GBkpOi5ths","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GBkpOi5ths","expanded_url":"http:\/\/www.conradcummings.co.uk","display_url":"conradcummings.co.uk","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Ns0VNrL7CJ","expanded_url":"http:\/\/instagram.com\/champcummings","display_url":"instagram.com\/champcummings","indices":[89,112]}]}},"protected":false,"followers_count":22940,"friends_count":752,"listed_count":49,"created_at":"Wed - Aug 15 22:30:38 +0000 2012","favourites_count":33570,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19301,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"141111","profile_background_image_url":"http:\/\/abs.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\/1141843664345452546\/EfKqfoo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141843664345452546\/EfKqfoo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760299865\/1546002239","profile_link_color":"009999","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 07:43:48 +0000 2020","id":1235833443151273986,"id_str":"1235833443151273986","text":"Coronavirus - control... let\u2019s stop footballers shaking hands... but let\u2019s NOT - insist that airlines clean their plane\u2026 https:\/\/t.co\/A0AiBBgLN2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A0AiBBgLN2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235833443151273986","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457675963,"id_str":"457675963","name":"Adam - Booth","screen_name":"boxingbooth","location":"LONDON","description":"Be polite, - kind and the best you can be at whatever you do!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":108111,"friends_count":1017,"listed_count":208,"created_at":"Sat - Jan 07 17:51:51 +0000 2012","favourites_count":93,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":3626,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234260637695561729\/FLcrwtn5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234260637695561729\/FLcrwtn5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457675963\/1583105643","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":343,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859936090787843,"id_str":"1235859936090787843","text":"RT - @leahchang940710: A 20-year old nurse took out a 80-year old coronavirus patient, - who has been in hospital for a month, to watch the bea\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"leahchang940710","name":"leah - chang","id":794127579355566080,"id_str":"794127579355566080","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1598177743,"id_str":"1598177743","name":"HeatherAnnCan","screen_name":"QueenWraps","location":"Indianapolis - ","description":"Owner of Body Wrap Queen LLC. REAL wraps for 14+ years-Results - GUARANTEED\u2014or it\u2019s FREE!!!\ud83d\udc63me @heatheranncan IG\/Snapchat\u2014NOT - affiliated w\/itworks!! #Bernie2020","url":"https:\/\/t.co\/2k4YnH5cU2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2k4YnH5cU2","expanded_url":"http:\/\/Www.facebook.com\/thebodywrapqueen","display_url":"facebook.com\/thebodywrapque\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":465,"friends_count":682,"listed_count":0,"created_at":"Tue - Jul 16 11:10:33 +0000 2013","favourites_count":17093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5663,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1139205092559769600\/Y4odDyL3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1139205092559769600\/Y4odDyL3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1598177743\/1551690498","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 03:19:57 +0000 2020","id":1235767046442569728,"id_str":"1235767046442569728","text":"A - 20-year old nurse took out a 80-year old coronavirus patient, who has been - in hospital for a month, to watch the\u2026 https:\/\/t.co\/jxMwzRkpSp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jxMwzRkpSp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235767046442569728","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":794127579355566080,"id_str":"794127579355566080","name":"leah - chang","screen_name":"leahchang940710","location":"Los Angeles, CA","description":"\u6d1b\u6749\u77f6\u534e\u4eba\u8d44\u8baf\u7f51 - HOW\u89c6\u9891\u65b0\u95fb\u4e3b\u64adLeah","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":61,"listed_count":0,"created_at":"Thu - Nov 03 10:42:23 +0000 2016","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":69,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/870165410569519104\/tbI0pwSl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/870165410569519104\/tbI0pwSl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/794127579355566080\/1478681457","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":755,"favorite_count":5241,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":755,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859935985930240,"id_str":"1235859935985930240","text":"RT - @franceinfo: Coronavirus : 138 nouveaux cas identifi\u00e9s en France dans - la seule journ\u00e9e de jeudi\n\nhttps:\/\/t.co\/4WUSD9VefW https:\/\/t.co\/BR\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"franceinfo","name":"franceinfo","id":38395124,"id_str":"38395124","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/4WUSD9VefW","expanded_url":"https:\/\/www.francetvinfo.fr\/sante\/maladie\/coronavirus\/coronavirus-138-nouveaux-cas-identifies-en-france-dans-la-seule-journee-de-jeudi_3854509.html","display_url":"francetvinfo.fr\/sante\/maladie\/\u2026","indices":[100,123]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950650945,"id_str":"2950650945","name":"Maurizio","screen_name":"Maurizio0901","location":"","description":"RT - a caso: nessuna condivisione, solo questione di culo.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":344,"friends_count":322,"listed_count":0,"created_at":"Tue - Dec 30 05:57:58 +0000 2014","favourites_count":7385,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11111,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"89C9FA","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\/549962085560381441\/StutxitY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549962085560381441\/StutxitY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950650945\/1432321197","profile_link_color":"1B95E0","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 08:31:33 +0000 2020","id":1235845459551211520,"id_str":"1235845459551211520","text":"Coronavirus - : 138 nouveaux cas identifi\u00e9s en France dans la seule journ\u00e9e de - jeudi\n\nhttps:\/\/t.co\/4WUSD9VefW https:\/\/t.co\/BR6aFS1JoC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4WUSD9VefW","expanded_url":"https:\/\/www.francetvinfo.fr\/sante\/maladie\/coronavirus\/coronavirus-138-nouveaux-cas-identifies-en-france-dans-la-seule-journee-de-jeudi_3854509.html","display_url":"francetvinfo.fr\/sante\/maladie\/\u2026","indices":[84,107]}],"media":[{"id":1235845446179778561,"id_str":"1235845446179778561","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaa4rDUcAEpHUn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaa4rDUcAEpHUn.jpg","url":"https:\/\/t.co\/BR6aFS1JoC","display_url":"pic.twitter.com\/BR6aFS1JoC","expanded_url":"https:\/\/twitter.com\/franceinfo\/status\/1235845459551211520\/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":1500,"h":842,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235845446179778561,"id_str":"1235845446179778561","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaa4rDUcAEpHUn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaa4rDUcAEpHUn.jpg","url":"https:\/\/t.co\/BR6aFS1JoC","display_url":"pic.twitter.com\/BR6aFS1JoC","expanded_url":"https:\/\/twitter.com\/franceinfo\/status\/1235845459551211520\/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":1500,"h":842,"resize":"fit"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":38395124,"id_str":"38395124","name":"franceinfo","screen_name":"franceinfo","location":"Paris, - France","description":"L''actualit\u00e9 en direct et en continu avec le m\u00e9dia - global du service public.","url":"https:\/\/t.co\/AzKd7bYBis","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AzKd7bYBis","expanded_url":"http:\/\/franceinfo.fr","display_url":"franceinfo.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1505452,"friends_count":1287,"listed_count":10229,"created_at":"Thu - May 07 08:17:50 +0000 2009","favourites_count":17769,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":243511,"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\/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\/1019886363515211776\/D2TBSqHw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019886363515211776\/D2TBSqHw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38395124\/1568032086","profile_link_color":"41505F","profile_sidebar_border_color":"FFEE00","profile_sidebar_fill_color":"FFEE00","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859935742685184,"id_str":"1235859935742685184","text":"RT - @mumbles_j: Coronavirus has no hope of being contained. Because the average - American is hilariously stupid","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mumbles_j","name":"Mr. - Nancy","id":416312423,"id_str":"416312423","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463278163,"id_str":"2463278163","name":"Goro - Majima","screen_name":"Nlsn__","location":"\u1d2e\u1d52\u207f\u1d49 \u1d57\u02b0\u1d49 - \u1d50\u1d49\u1d43\u1d57 \u1d52\u207f","description":"I''m lame as fck homie","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":103,"listed_count":7,"created_at":"Sat - Apr 05 21:08:03 +0000 2014","favourites_count":8067,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24393,"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\/1234582434433437696\/7ZwqqGog_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234582434433437696\/7ZwqqGog_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463278163\/1583016335","profile_link_color":"F58EA8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 02:02:52 +0000 2020","id":1235385259455320067,"id_str":"1235385259455320067","text":"Coronavirus - has no hope of being contained. Because the average American is hilariously - stupid https:\/\/t.co\/uFId3xUer8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uFId3xUer8","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1235363674451259392","display_url":"twitter.com\/thehill\/status\u2026","indices":[95,118]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416312423,"id_str":"416312423","name":"Mr. - Nancy","screen_name":"mumbles_j","location":"","description":"Have you ever - seen a Lamborghini commercial? Exactly. Do Not Die Dormant.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2796,"friends_count":1362,"listed_count":186,"created_at":"Sat - Nov 19 14:23:11 +0000 2011","favourites_count":2941,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":214516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215594526896721920\/7jlOShc9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215594526896721920\/7jlOShc9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416312423\/1550669384","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235363674451259392,"quoted_status_id_str":"1235363674451259392","quoted_status":{"created_at":"Thu - Mar 05 00:37:06 +0000 2020","id":1235363674451259392,"id_str":"1235363674451259392","text":"New - Hampshire coronavirus patient broke quarantine to attend Dartmouth Business - event https:\/\/t.co\/N9oGT1zkTT https:\/\/t.co\/sHC1kvuhXq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/N9oGT1zkTT","expanded_url":"http:\/\/hill.cm\/p4hGVqK","display_url":"hill.cm\/p4hGVqK","indices":[86,109]}],"media":[{"id":1235363672668729344,"id_str":"1235363672668729344","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/ESTktw3XcAAsdx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESTktw3XcAAsdx7.jpg","url":"https:\/\/t.co\/sHC1kvuhXq","display_url":"pic.twitter.com\/sHC1kvuhXq","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1235363674451259392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235363672668729344,"id_str":"1235363672668729344","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/ESTktw3XcAAsdx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESTktw3XcAAsdx7.jpg","url":"https:\/\/t.co\/sHC1kvuhXq","display_url":"pic.twitter.com\/sHC1kvuhXq","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1235363674451259392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1917731,"id_str":"1917731","name":"The - Hill","screen_name":"thehill","location":"Washington, DC","description":"The - Hill is the premier source for policy and political news. Follow for tweets - on what''s happening in Washington, breaking news and retweets of our reporters.","url":"http:\/\/t.co\/t414UtTRv4","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/t414UtTRv4","expanded_url":"http:\/\/www.thehill.com","display_url":"thehill.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3574390,"friends_count":261,"listed_count":27184,"created_at":"Thu - Mar 22 18:15:18 +0000 2007","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":700056,"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\/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\/907330975587336193\/tw7JPE5v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907330975587336193\/tw7JPE5v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1917731\/1434034905","profile_link_color":"FF0021","profile_sidebar_border_color":"ADADAA","profile_sidebar_fill_color":"EBEBEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":981,"favorite_count":2755,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":72513,"favorite_count":329343,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235363674451259392,"quoted_status_id_str":"1235363674451259392","retweet_count":72513,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859935491051523,"id_str":"1235859935491051523","text":"RT - @BrioEnfurecida: Llegar a los 99 a\u00f1os y morir por un coronavirus es como - haber ganado 6 Champions y despedirte del f\u00fatbol marcando de ch\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrioEnfurecida","name":"Brioche","id":958744320,"id_str":"958744320","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":706141609,"id_str":"706141609","name":"Guada - \ud83c\udf38","screen_name":"Guada_Fdez","location":"","description":"Muy - mia, muy a lo mio. \n''A traves de otros nos convertimos en nosotros mismos'' - \u2b50\n~\u03a8\n~Integracion Social (TSIS)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":401,"friends_count":429,"listed_count":2,"created_at":"Fri - Jul 20 01:18:05 +0000 2012","favourites_count":9071,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":34938,"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\/1224011772992073729\/js3Zyezr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224011772992073729\/js3Zyezr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/706141609\/1552906532","profile_link_color":"FF00BB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 14:48:40 +0000 2020","id":1235577978127437824,"id_str":"1235577978127437824","text":"Llegar - a los 99 a\u00f1os y morir por un coronavirus es como haber ganado 6 Champions - y despedirte del f\u00fatbol marcando d\u2026 https:\/\/t.co\/4ppZYuo6bq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4ppZYuo6bq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235577978127437824","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":958744320,"id_str":"958744320","name":"Brioche","screen_name":"BrioEnfurecida","location":"","description":"CONTACTO: - brioenfurecida@gmail.com FACEBOOK, INSTAGRAM Y SNAPCHAT: brioenfurecida","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":99865,"friends_count":550,"listed_count":170,"created_at":"Mon - Nov 19 22:30:15 +0000 2012","favourites_count":36913,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":74911,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1056677910751428609\/VsSFGCvc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1056677910751428609\/VsSFGCvc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/958744320\/1579696275","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235504599055941632,"quoted_status_id_str":"1235504599055941632","quoted_status":{"created_at":"Thu - Mar 05 09:57:05 +0000 2020","id":1235504599055941632,"id_str":"1235504599055941632","text":"\u00daLTIMA - HORA | Una mujer de 99 a\u00f1os de Madrid, tercera fallecida con coronavirus - en Espa\u00f1a https:\/\/t.co\/x6eieIZuMm https:\/\/t.co\/WWv5vTHGp5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/x6eieIZuMm","expanded_url":"http:\/\/bit.ly\/2TC1LFz","display_url":"bit.ly\/2TC1LFz","indices":[90,113]}],"media":[{"id":1235503715660058625,"id_str":"1235503715660058625","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESVkFVqX0AE5u48.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESVkFVqX0AE5u48.jpg","url":"https:\/\/t.co\/WWv5vTHGp5","display_url":"pic.twitter.com\/WWv5vTHGp5","expanded_url":"https:\/\/twitter.com\/el_pais\/status\/1235504599055941632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":338,"resize":"fit"},"medium":{"w":600,"h":338,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235503715660058625,"id_str":"1235503715660058625","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESVkFVqX0AE5u48.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESVkFVqX0AE5u48.jpg","url":"https:\/\/t.co\/WWv5vTHGp5","display_url":"pic.twitter.com\/WWv5vTHGp5","expanded_url":"https:\/\/twitter.com\/el_pais\/status\/1235504599055941632\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":338,"resize":"fit"},"medium":{"w":600,"h":338,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"}},"video_info":{"aspect_ratio":[300,169],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/ESVkFVqX0AE5u48.mp4"}]}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":7996082,"id_str":"7996082","name":"EL - PA\u00cdS","screen_name":"el_pais","location":"Madrid","description":"Noticias, - reportajes, opini\u00f3n, an\u00e1lisis y la \u00faltima hora de la informaci\u00f3n - m\u00e1s relevante. Con nuestra mirada puesta en Espa\u00f1a, Europa y Am\u00e9rica","url":"https:\/\/t.co\/0o6oj1LRF2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0o6oj1LRF2","expanded_url":"http:\/\/www.elpais.com","display_url":"elpais.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7295107,"friends_count":761,"listed_count":57206,"created_at":"Mon - Aug 06 16:20:09 +0000 2007","favourites_count":1706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":542979,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/815456059322036224\/o_RQNEOh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/815456059322036224\/o_RQNEOh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7996082\/1450772084","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F1F4F9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":318,"favorite_count":401,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":251,"favorite_count":1047,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1235504599055941632,"quoted_status_id_str":"1235504599055941632","retweet_count":251,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859935335821314,"id_str":"1235859935335821314","text":"RT - @rumireports: Less tourists in Nara = less people feeding the deer in the - parks \ud83c\udf37\ud83c\udf31 Now they''re venturing out into the city eating - flower\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rumireports","name":"Kurumi - Mori","id":104349985,"id_str":"104349985","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2259616956,"id_str":"2259616956","name":"J\u00daLIA - BONA \ud83e\uddf6","screen_name":"chalkytalkle","location":"Curitiba, Brasil","description":"bissexual - degenerada \u2022 membro da medbolha UFPR desde 2016\nhttps:\/\/t.co\/GfZtFnIP6z","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/GfZtFnIP6z","expanded_url":"http:\/\/curiouscat.me\/chalkytalkie","display_url":"curiouscat.me\/chalkytalkie","indices":[58,81]}]}},"protected":false,"followers_count":184,"friends_count":199,"listed_count":0,"created_at":"Tue - Dec 24 01:19:40 +0000 2013","favourites_count":39687,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38881,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221473539615797248\/5ZxG6-Rz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221473539615797248\/5ZxG6-Rz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2259616956\/1497047420","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 05:29:22 +0000 2020","id":1235799612264333313,"id_str":"1235799612264333313","text":"Less - tourists in Nara = less people feeding the deer in the parks \ud83c\udf37\ud83c\udf31 - Now they''re venturing out into the city eating\u2026 https:\/\/t.co\/4CAgbKTMY4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4CAgbKTMY4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235799612264333313","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104349985,"id_str":"104349985","name":"Kurumi - Mori","screen_name":"rumireports","location":"Tokyo, Japan","description":"Reporter - @Bloomberg in Tokyo. Former CNBC, ESPN, ABC, CBS, TheStreet \ud83c\udfa5 M.S. - @columbiajourn RTs\u2260endorsements. Opinions my own. IG: @rumireports","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10624,"friends_count":1985,"listed_count":185,"created_at":"Wed - Jan 13 02:23:08 +0000 2010","favourites_count":17225,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":3140,"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\/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\/1062979758051344384\/CB94r0B7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062979758051344384\/CB94r0B7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104349985\/1568045266","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"},"geo":null,"coordinates":null,"place":{"id":"06ef846bfc783874","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/06ef846bfc783874.json","place_type":"country","name":"Japan","full_name":"Japan","country_code":"JP","country":"Japan","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[122.9040343,24.0133434],[153.9976966,24.0133434],[153.9976966,45.562897],[122.9040343,45.562897]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":425,"favorite_count":640,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"is_quote_status":false,"retweet_count":425,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859935180640256,"id_str":"1235859935180640256","text":"RT - @moonpolysoft: If you''re a well paid tech worker and your office is shutting - down due to coronavirus concerns, show some solidarity and\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"moonpolysoft","name":"coughing - in the grocery store as a bit","id":14204623,"id_str":"14204623","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":985459409655615488,"id_str":"985459409655615488","name":"litty - gillespie","screen_name":"littygillespie","location":"","description":"Polisci - grad student like\/retweet-ing your tweets for myself so I can laugh\/read\/write - essays later. I used to be private so I have no followers. Not a bot \ud83d\ude29","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":515,"listed_count":0,"created_at":"Sun - Apr 15 10:06:47 +0000 2018","favourites_count":15313,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6530,"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\/985465349939318784\/BxPyxfI4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/985465349939318784\/BxPyxfI4_normal.jpg","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 02:55:56 +0000 2020","id":1235760999396827137,"id_str":"1235760999396827137","text":"If - you''re a well paid tech worker and your office is shutting down due to coronavirus - concerns, show some solidarit\u2026 https:\/\/t.co\/3YsJWByz5Y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3YsJWByz5Y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235760999396827137","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14204623,"id_str":"14204623","name":"coughing - in the grocery store as a bit","screen_name":"moonpolysoft","location":"computer","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5219,"friends_count":1362,"listed_count":257,"created_at":"Mon - Mar 24 01:05:35 +0000 2008","favourites_count":53604,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":90487,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4F69B6","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\/660859241486381058\/21euHnp7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660859241486381058\/21euHnp7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14204623\/1411149541","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":108,"favorite_count":303,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":108,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859934987739137,"id_str":"1235859934987739137","text":"RT - @lutfullahgoktas: #Koronavir\u00fcs g\u00fcnlerinde Roma\u2019dan 4 kare.\n\ud83d\udcf8\nRoma - ai tempi del #coronavirus. https:\/\/t.co\/jiaLGalTew","truncated":false,"entities":{"hashtags":[{"text":"Koronavir\u00fcs","indices":[21,33]},{"text":"coronavirus","indices":[82,94]}],"symbols":[],"user_mentions":[{"screen_name":"lutfullahgoktas","name":"Lutfullah - Goktas","id":1088422334103457792,"id_str":"1088422334103457792","indices":[3,19]}],"urls":[],"media":[{"id":1235859103055921163,"id_str":"1235859103055921163","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTm4UwAsFj4r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTm4UwAsFj4r.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1462,"resize":"fit"},"small":{"w":680,"h":485,"resize":"fit"},"medium":{"w":1200,"h":857,"resize":"fit"}},"source_status_id":1235859130117525506,"source_status_id_str":"1235859130117525506","source_user_id":1088422334103457792,"source_user_id_str":"1088422334103457792"}]},"extended_entities":{"media":[{"id":1235859103055921163,"id_str":"1235859103055921163","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTm4UwAsFj4r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTm4UwAsFj4r.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1462,"resize":"fit"},"small":{"w":680,"h":485,"resize":"fit"},"medium":{"w":1200,"h":857,"resize":"fit"}},"source_status_id":1235859130117525506,"source_status_id_str":"1235859130117525506","source_user_id":1088422334103457792,"source_user_id_str":"1088422334103457792"},{"id":1235859103030730756,"id_str":"1235859103030730756","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTmyUYAQe9XA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTmyUYAQe9XA.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":857,"resize":"fit"},"large":{"w":2048,"h":1462,"resize":"fit"},"small":{"w":680,"h":485,"resize":"fit"}},"source_status_id":1235859130117525506,"source_status_id_str":"1235859130117525506","source_user_id":1088422334103457792,"source_user_id_str":"1088422334103457792"},{"id":1235859103039119361,"id_str":"1235859103039119361","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTm0UYAENxSJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTm0UYAENxSJ.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":485,"resize":"fit"},"medium":{"w":1200,"h":857,"resize":"fit"},"large":{"w":2048,"h":1462,"resize":"fit"}},"source_status_id":1235859130117525506,"source_status_id_str":"1235859130117525506","source_user_id":1088422334103457792,"source_user_id_str":"1088422334103457792"},{"id":1235859103110463492,"id_str":"1235859103110463492","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTnFVAAQo02v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTnFVAAQo02v.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":857,"resize":"fit"},"small":{"w":680,"h":485,"resize":"fit"},"large":{"w":2048,"h":1462,"resize":"fit"}},"source_status_id":1235859130117525506,"source_status_id_str":"1235859130117525506","source_user_id":1088422334103457792,"source_user_id_str":"1088422334103457792"}]},"metadata":{"result_type":"recent","iso_language_code":"tr"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905450893620989952,"id_str":"905450893620989952","name":"Yusuf - Karata\u015f","screen_name":"yusufrkaratas","location":"Bologna, Emilia Romagna","description":"Alma - Mater Studiorum - Universit\u00e0 di Bologna (History and Oriental Studies)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":602,"listed_count":0,"created_at":"Wed - Sep 06 15:21:30 +0000 2017","favourites_count":3667,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2311,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1190290454128005125\/lbZiX6Up_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190290454128005125\/lbZiX6Up_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905450893620989952\/1504712045","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:25:52 +0000 2020","id":1235859130117525506,"id_str":"1235859130117525506","text":"#Koronavir\u00fcs - g\u00fcnlerinde Roma\u2019dan 4 kare.\n\ud83d\udcf8\nRoma ai tempi del #coronavirus. - https:\/\/t.co\/jiaLGalTew","truncated":false,"entities":{"hashtags":[{"text":"Koronavir\u00fcs","indices":[0,12]},{"text":"coronavirus","indices":[61,73]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235859103055921163,"id_str":"1235859103055921163","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTm4UwAsFj4r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTm4UwAsFj4r.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1462,"resize":"fit"},"small":{"w":680,"h":485,"resize":"fit"},"medium":{"w":1200,"h":857,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859103055921163,"id_str":"1235859103055921163","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTm4UwAsFj4r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTm4UwAsFj4r.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1462,"resize":"fit"},"small":{"w":680,"h":485,"resize":"fit"},"medium":{"w":1200,"h":857,"resize":"fit"}}},{"id":1235859103030730756,"id_str":"1235859103030730756","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTmyUYAQe9XA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTmyUYAQe9XA.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":857,"resize":"fit"},"large":{"w":2048,"h":1462,"resize":"fit"},"small":{"w":680,"h":485,"resize":"fit"}}},{"id":1235859103039119361,"id_str":"1235859103039119361","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTm0UYAENxSJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTm0UYAENxSJ.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":485,"resize":"fit"},"medium":{"w":1200,"h":857,"resize":"fit"},"large":{"w":2048,"h":1462,"resize":"fit"}}},{"id":1235859103110463492,"id_str":"1235859103110463492","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESanTnFVAAQo02v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESanTnFVAAQo02v.jpg","url":"https:\/\/t.co\/jiaLGalTew","display_url":"pic.twitter.com\/jiaLGalTew","expanded_url":"https:\/\/twitter.com\/lutfullahgoktas\/status\/1235859130117525506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":857,"resize":"fit"},"small":{"w":680,"h":485,"resize":"fit"},"large":{"w":2048,"h":1462,"resize":"fit"}}}]},"metadata":{"result_type":"recent","iso_language_code":"tr"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088422334103457792,"id_str":"1088422334103457792","name":"Lutfullah - Goktas","screen_name":"lutfullahgoktas","location":"Italia","description":"T.C. - Vatikan B\u00fcy\u00fckel\u00e7isi \ud83c\uddf9\ud83c\uddf7 Ambassador of - Turkey to the Holy See","url":"https:\/\/t.co\/q2STw9vpW2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/q2STw9vpW2","expanded_url":"http:\/\/www.instagram.com\/lutfullah.goktas","display_url":"instagram.com\/lutfullah.gokt\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5394,"friends_count":217,"listed_count":12,"created_at":"Thu - Jan 24 13:04:41 +0000 2019","favourites_count":200,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":300,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1174371494509649921\/6EBCyC8M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1174371494509649921\/6EBCyC8M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088422334103457792\/1582576701","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"7d588036fe12e124","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7d588036fe12e124.json","place_type":"city","name":"Rome","full_name":"Rome, - Lazio","country_code":"IT","country":"Italy","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[12.2344266,41.6558738],[12.8558641,41.6558738],[12.8558641,42.140959],[12.2344266,42.140959]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859934916427783,"id_str":"1235859934916427783","text":"River - Cottage is struggling and coronavirus is coming... is this the end for the - high street restaurant?\u2026 https:\/\/t.co\/e5B7Lm6v16","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e5B7Lm6v16","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859934916427783","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[106,129]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":67262147,"id_str":"67262147","name":"Deplorable - Potter","screen_name":"potterthebookie","location":"Laying a new patio","description":"World - Class Gammon.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1327,"friends_count":968,"listed_count":28,"created_at":"Thu - Aug 20 08:12:45 +0000 2009","favourites_count":14352,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44674,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1151576189250805760\/JlZUKVAD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1151576189250805760\/JlZUKVAD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67262147\/1411117571","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859934685696000,"id_str":"1235859934685696000","text":"RT - @BNODesk: BREAKING: Vatican City reports first case of coronavirus https:\/\/t.co\/eUoE2bjB9j","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BNODesk","name":"BNO - Newsroom","id":2985479932,"id_str":"2985479932","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/eUoE2bjB9j","expanded_url":"https:\/\/bnonews.com\/index.php\/2020\/02\/the-latest-coronavirus-cases\/","display_url":"bnonews.com\/index.php\/2020\u2026","indices":[70,93]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2919623560,"id_str":"2919623560","name":"Suricate","screen_name":"Meerkatig","location":"France - - Rh\u00f4ne-Alpes - Ain","description":"Independent Investor. Like the meerkat, - remain vigilant. \"#GlobalWarming provides a marvelous excuse for global socialism\" - Margaret Thatcher. #GrandSolarMinimum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":198,"friends_count":772,"listed_count":6,"created_at":"Sat - Dec 13 13:09:39 +0000 2014","favourites_count":15871,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4628,"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\/881269157752385536\/9prSpOFi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/881269157752385536\/9prSpOFi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2919623560\/1521578338","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:26:24 +0000 2020","id":1235859262850523136,"id_str":"1235859262850523136","text":"BREAKING: - Vatican City reports first case of coronavirus https:\/\/t.co\/eUoE2bjB9j","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eUoE2bjB9j","expanded_url":"https:\/\/bnonews.com\/index.php\/2020\/02\/the-latest-coronavirus-cases\/","display_url":"bnonews.com\/index.php\/2020\u2026","indices":[57,80]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2985479932,"id_str":"2985479932","name":"BNO - Newsroom","screen_name":"BNODesk","location":"Worldwide","description":"Live - updates from the team behind BNO News. Currently covering coronavirus. For - our regular news coverage, follow our main account: @BNONews","url":"https:\/\/t.co\/by7zZiBwBe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/by7zZiBwBe","expanded_url":"http:\/\/www.bnonews.com","display_url":"bnonews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":127524,"friends_count":5,"listed_count":1839,"created_at":"Mon - Jan 19 09:28:21 +0000 2015","favourites_count":4637,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5368,"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\/882093872452698113\/kPkSnGlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882093872452698113\/kPkSnGlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2985479932\/1499139659","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":103,"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"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859934677331968,"id_str":"1235859934677331968","text":"RT - @BBC_Hyung: WOW. A man in Incheon, west of Seoul - who contracted #coronavirus - - has documented his symptoms and activities for past 25\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[69,81]}],"symbols":[],"user_mentions":[{"screen_name":"BBC_Hyung","name":"Hyung - Eun Kim","id":962153417400602624,"id_str":"962153417400602624","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2265401839,"id_str":"2265401839","name":"LoVedream''S!","screen_name":"yumenas51","location":"","description":"\ud83c\udf52 - Keep Positive Thingking \ud83c\udf52","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":203,"friends_count":397,"listed_count":6,"created_at":"Sat - Dec 28 05:18:04 +0000 2013","favourites_count":1450,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10362,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875061592789983232\/nJcXFCLT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875061592789983232\/nJcXFCLT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2265401839\/1412218665","profile_link_color":"92A644","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 05:25:24 +0000 2020","id":1235436227140055040,"id_str":"1235436227140055040","text":"WOW. - A man in Incheon, west of Seoul - who contracted #coronavirus - has documented - his symptoms and activities for\u2026 https:\/\/t.co\/FJBaFIH7nZ","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[54,66]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FJBaFIH7nZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235436227140055040","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":962153417400602624,"id_str":"962153417400602624","name":"Hyung - Eun Kim","screen_name":"BBC_Hyung","location":"Seoul, Republic of Korea","description":"Reporter - at @BBC Korea, covering the Koreas. Formerly @JoongAngDaily @archaeologymag. - Jakarta-bred. Views are my own.","url":"https:\/\/t.co\/CzfRMAodqs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CzfRMAodqs","expanded_url":"http:\/\/www.bbc.com\/korean","display_url":"bbc.com\/korean","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":713,"friends_count":258,"listed_count":15,"created_at":"Sat - Feb 10 02:37:05 +0000 2018","favourites_count":1069,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":402,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129252424617680896\/L9B7hgQQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129252424617680896\/L9B7hgQQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/962153417400602624\/1577966418","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5193,"favorite_count":6378,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5193,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859934341783552,"id_str":"1235859934341783552","text":"The - Prime Minister''s Office has opened the Information Center for Covid-19 Response - Measures for the first day toda\u2026 https:\/\/t.co\/GnacRofB0y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GnacRofB0y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859934341783552","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131453353458786304,"id_str":"1131453353458786304","name":"NBT - WORLD News","screen_name":"NBTWORLDNews","location":"Bangkok, Thailand","description":"National - News Bureau of Thailand \nPublic Relation Department of Thailand\n\nEnglish-language - TV programs can now be watched on NBT World via c-band set top boxes","url":"https:\/\/t.co\/rEhmlJzDVG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rEhmlJzDVG","expanded_url":"http:\/\/thainews.prd.go.th\/en\/home","display_url":"thainews.prd.go.th\/en\/home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":439,"friends_count":31,"listed_count":2,"created_at":"Thu - May 23 06:54:35 +0000 2019","favourites_count":319,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":293,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184322514115158017\/RLoqQ5QW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184322514115158017\/RLoqQ5QW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131453353458786304\/1571199822","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859934283042816,"id_str":"1235859934283042816","text":"\u2018No - Time To Die\u2019 Release Delayed Over Coronavirus Scare https:\/\/t.co\/bNtnJ6RcVI - https:\/\/t.co\/Zh0SniedQ1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bNtnJ6RcVI","expanded_url":"https:\/\/odunews.com\/movies\/03\/2020\/no-time-to-die-release-delayed-over-coronavirus-scare\/?utm_source=dlvr.it&utm_medium=twitter","display_url":"odunews.com\/movies\/03\/2020\u2026","indices":[56,79]}],"media":[{"id":1235859932651503616,"id_str":"1235859932651503616","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoD5XUwAAt5n1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoD5XUwAAt5n1.jpg","url":"https:\/\/t.co\/Zh0SniedQ1","display_url":"pic.twitter.com\/Zh0SniedQ1","expanded_url":"https:\/\/twitter.com\/OduNewsNG\/status\/1235859934283042816\/photo\/1","type":"photo","sizes":{"medium":{"w":948,"h":435,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":312,"resize":"fit"},"large":{"w":948,"h":435,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859932651503616,"id_str":"1235859932651503616","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoD5XUwAAt5n1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoD5XUwAAt5n1.jpg","url":"https:\/\/t.co\/Zh0SniedQ1","display_url":"pic.twitter.com\/Zh0SniedQ1","expanded_url":"https:\/\/twitter.com\/OduNewsNG\/status\/1235859934283042816\/photo\/1","type":"photo","sizes":{"medium":{"w":948,"h":435,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":312,"resize":"fit"},"large":{"w":948,"h":435,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":460650831,"id_str":"460650831","name":"OduNews.com","screen_name":"OduNewsNG","location":"Ikeja, - Nigeria","description":"Nigerian-based news platform Follow for prompt news - updates across Nigeria tips@odunews.com","url":"https:\/\/t.co\/Bar8u9GhzK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Bar8u9GhzK","expanded_url":"https:\/\/odunews.com","display_url":"odunews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":3,"listed_count":2,"created_at":"Wed - Jan 11 00:08:43 +0000 2012","favourites_count":187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10548,"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\/1225812983777026048\/ktApZFYh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225812983777026048\/ktApZFYh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/460650831\/1576071248","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859934073389056,"id_str":"1235859934073389056","text":"RT - @Abdi10i: Seeing the Ka\u2019baa being closed due to Coronavirus precautions - feels so odd and discomforting. https:\/\/t.co\/dp7XX3imSC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Abdi10i","name":"abdi++","id":1000654784167317505,"id_str":"1000654784167317505","indices":[3,11]}],"urls":[],"media":[{"id":1235574755169878016,"id_str":"1235574755169878016","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1235574763411714048,"source_status_id_str":"1235574763411714048","source_user_id":1000654784167317505,"source_user_id_str":"1000654784167317505"}]},"extended_entities":{"media":[{"id":1235574755169878016,"id_str":"1235574755169878016","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1235574763411714048,"source_status_id_str":"1235574763411714048","source_user_id":1000654784167317505,"source_user_id_str":"1000654784167317505"},{"id":1235574755161501696,"id_str":"1235574755161501696","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYbXcAAp1I5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYbXcAAp1I5.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":1235574763411714048,"source_status_id_str":"1235574763411714048","source_user_id":1000654784167317505,"source_user_id_str":"1000654784167317505"},{"id":1235574755367038976,"id_str":"1235574755367038976","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksZMXsAAJpum.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksZMXsAAJpum.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/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_status_id":1235574763411714048,"source_status_id_str":"1235574763411714048","source_user_id":1000654784167317505,"source_user_id_str":"1000654784167317505"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3323018416,"id_str":"3323018416","name":"Mohamed - Alnaqeep","screen_name":"Alnaqeep19","location":"Cairo, Egypt","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":459,"friends_count":224,"listed_count":8,"created_at":"Sat - Jun 13 12:52:24 +0000 2015","favourites_count":8018,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2291,"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\/1226593081123917830\/ZmQNf8Y0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226593081123917830\/ZmQNf8Y0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3323018416\/1582901379","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 14:35:54 +0000 2020","id":1235574763411714048,"id_str":"1235574763411714048","text":"Seeing - the Ka\u2019baa being closed due to Coronavirus precautions feels so odd and - discomforting. https:\/\/t.co\/dp7XX3imSC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235574755169878016,"id_str":"1235574755169878016","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235574755169878016,"id_str":"1235574755169878016","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"}}},{"id":1235574755161501696,"id_str":"1235574755161501696","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYbXcAAp1I5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYbXcAAp1I5.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}},{"id":1235574755367038976,"id_str":"1235574755367038976","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksZMXsAAJpum.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksZMXsAAJpum.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1000654784167317505,"id_str":"1000654784167317505","name":"abdi++","screen_name":"Abdi10i","location":"MN","description":"@ManUtd - | Muslim |","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2185,"friends_count":665,"listed_count":5,"created_at":"Sun - May 27 08:27:46 +0000 2018","favourites_count":1244,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2303,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233925721938067457\/cFRigVr5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233925721938067457\/cFRigVr5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1000654784167317505\/1580092201","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25605,"favorite_count":40011,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":25605,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859933985267714,"id_str":"1235859933985267714","text":"RT - @seattletimes: The number of new coronavirus cases is expected to grow now - that UW Medicine is testing for the virus, in addition to tes\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"seattletimes","name":"The - Seattle Times","id":14352556,"id_str":"14352556","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":345212812,"id_str":"345212812","name":"Ana - Maria Meyer","screen_name":"VovoMeyer","location":"Brazil","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":338,"friends_count":31,"listed_count":3,"created_at":"Sat - Jul 30 06:45:01 +0000 2011","favourites_count":359445,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71600,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3640082934\/80b20538a437ac4ab92f4f07c30c710d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3640082934\/80b20538a437ac4ab92f4f07c30c710d_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 02:21:14 +0000 2020","id":1235752269351661571,"id_str":"1235752269351661571","text":"The - number of new coronavirus cases is expected to grow now that UW Medicine is - testing for the virus, in addition\u2026 https:\/\/t.co\/13f5kvYttV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/13f5kvYttV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235752269351661571","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":14352556,"id_str":"14352556","name":"The - Seattle Times","screen_name":"seattletimes","location":"Seattle, WA","description":"Local - news, sports, business, politics, entertainment, travel, restaurants and opinion - for Seattle and the Pacific Northwest. Subscribe here: https:\/\/t.co\/sm48xeS8Ko","url":"https:\/\/t.co\/hVRvUcOJ8o","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hVRvUcOJ8o","expanded_url":"http:\/\/SeattleTimes.com","display_url":"SeattleTimes.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/sm48xeS8Ko","expanded_url":"http:\/\/st.news\/subscribe","display_url":"st.news\/subscribe","indices":[142,165]}]}},"protected":false,"followers_count":645351,"friends_count":12656,"listed_count":7161,"created_at":"Thu - Apr 10 16:15:09 +0000 2008","favourites_count":1720,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":177067,"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\/1163913052355362816\/hZR3qQB7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163913052355362816\/hZR3qQB7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14352556\/1522086791","profile_link_color":"003355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D8DFE8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859933976920064,"id_str":"1235859933976920064","text":"RT - @chitolinase: as pessoas divulgando as not\u00edcias das pesquisas brasileiras - fodas sobre coronav\u00edrus dizendo \"ai pq a medicina \u00e9 1 \u00e1rea - t\u00e3o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chitolinase","name":"Isabela - Chitolina","id":732013431361015808,"id_str":"732013431361015808","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163092444,"id_str":"163092444","name":"corotinho","screen_name":"_RafaDi","location":"SP","description":"\u2022 - https:\/\/t.co\/TFhsQNyHo7: rafadi_ \ud83d\udcf7: @_rafadi","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/TFhsQNyHo7","expanded_url":"http:\/\/Last.fm","display_url":"Last.fm","indices":[2,25]}]}},"protected":false,"followers_count":623,"friends_count":935,"listed_count":30,"created_at":"Mon - Jul 05 14:43:25 +0000 2010","favourites_count":43133,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":49320,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1208782619036602370\/RdoFLO5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208782619036602370\/RdoFLO5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163092444\/1579618241","profile_link_color":"2FC2EF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 11:39:27 +0000 2020","id":1235530361909608448,"id_str":"1235530361909608448","text":"as - pessoas divulgando as not\u00edcias das pesquisas brasileiras fodas sobre - coronav\u00edrus dizendo \"ai pq a medicina \u00e9 1 \u00e1\u2026 https:\/\/t.co\/piwexVkIiJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/piwexVkIiJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235530361909608448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":732013431361015808,"id_str":"732013431361015808","name":"Isabela - Chitolina","screen_name":"chitolinase","location":"","description":"biotecnologista - pela ufrgs\nhumilhada pela vida\n\ndegradando o nome da fam\u00edlia desde - 1997","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":153,"listed_count":0,"created_at":"Mon - May 16 01:02:56 +0000 2016","favourites_count":7778,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1910,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1064705905571315716\/7Yw-vox9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064705905571315716\/7Yw-vox9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/732013431361015808\/1511392455","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5753,"favorite_count":23605,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":5753,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859933783982081,"id_str":"1235859933783982081","text":"RT - @grungemxry: mucho se habla del coronavirus y poco se habla de que nuestro - profesor de filosof\u00eda cant\u00f3 una canci\u00f3n con bruno mars, en - fi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"grungemxry","name":"Mery\ud83d\udc09","id":749623660231725057,"id_str":"749623660231725057","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":810450693765156864,"id_str":"810450693765156864","name":"Hikari. - \ud83c\udf1f","screen_name":"maariiaa_132","location":"Espa\u00f1a","description":"miau.\ud83d\ude10","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":61,"listed_count":0,"created_at":"Sun - Dec 18 11:44:37 +0000 2016","favourites_count":4892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1632,"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\/1072515937310523392\/6g6zUfvJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1072515937310523392\/6g6zUfvJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/810450693765156864\/1544542701","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 22:01:36 +0000 2020","id":1235686930714484736,"id_str":"1235686930714484736","text":"mucho - se habla del coronavirus y poco se habla de que nuestro profesor de filosof\u00eda - cant\u00f3 una canci\u00f3n con bruno mar\u2026 https:\/\/t.co\/brQUXrzrPT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/brQUXrzrPT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235686930714484736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":749623660231725057,"id_str":"749623660231725057","name":"Mery\ud83d\udc09","screen_name":"grungemxry","location":"Arroyo - de la Luz, Espa\u00f1a","description":"Nightmares come true | Estudios ingleses - \ud83c\uddec\ud83c\udde7","url":"https:\/\/t.co\/2Ftu6Xw2yE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2Ftu6Xw2yE","expanded_url":"http:\/\/Instagram.com\/grungemxry","display_url":"Instagram.com\/grungemxry","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":103,"listed_count":0,"created_at":"Sun - Jul 03 15:19:42 +0000 2016","favourites_count":5893,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1672,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196217297356120064\/YBU0L8Cz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196217297356120064\/YBU0L8Cz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/749623660231725057\/1541031892","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859933653905408,"id_str":"1235859933653905408","text":"Why - are patients who recover from coronavirus testing positive again? https:\/\/t.co\/8xI118HJ1u - https:\/\/t.co\/OBdMZojBHT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8xI118HJ1u","expanded_url":"https:\/\/fortune.com\/2020\/03\/06\/coronavirus-recover-test-positive-twice\/?utm_source=dlvr.it&utm_medium=twitter","display_url":"fortune.com\/2020\/03\/06\/cor\u2026","indices":[70,93]}],"media":[{"id":1235859931766517761,"id_str":"1235859931766517761","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoD2EU8AEn1AP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoD2EU8AEn1AP.jpg","url":"https:\/\/t.co\/OBdMZojBHT","display_url":"pic.twitter.com\/OBdMZojBHT","expanded_url":"https:\/\/twitter.com\/AndyVermaut\/status\/1235859933653905408\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":600,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859931766517761,"id_str":"1235859931766517761","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoD2EU8AEn1AP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoD2EU8AEn1AP.jpg","url":"https:\/\/t.co\/OBdMZojBHT","display_url":"pic.twitter.com\/OBdMZojBHT","expanded_url":"https:\/\/twitter.com\/AndyVermaut\/status\/1235859933653905408\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":600,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":283604227,"id_str":"283604227","name":"Andy - Vermaut","screen_name":"AndyVermaut","location":"Diksmuide, Belgi\u00eb","description":"Official - account of Belgian human rights activist Andy Vermaut - for media and work - as speaker for events, contact me via Whatsapp-message on +32499357495","url":"https:\/\/t.co\/ozEP3TC3W8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ozEP3TC3W8","expanded_url":"https:\/\/www.facebook.com\/vermaut.andy","display_url":"facebook.com\/vermaut.andy","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":31084,"friends_count":26122,"listed_count":42,"created_at":"Sun - Apr 17 16:39:35 +0000 2011","favourites_count":951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":585245,"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\/697901842194300928\/TPPojwr3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/697901842194300928\/TPPojwr3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283604227\/1562965050","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:04 +0000 2020","id":1235859933645529088,"id_str":"1235859933645529088","text":"RT - @mmpadellan: Anyone ELSE think they''re so slow getting more coronavirus test - kits out because they KNOW the number of infected people wi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mmpadellan","name":"BrooklynDad_Defiant!","id":1640929196,"id_str":"1640929196","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":748465336408772608,"id_str":"748465336408772608","name":"Angry - cat","screen_name":"JaneDav45507892","location":"Houston","description":"cat - goes after the Rat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1864,"friends_count":1823,"listed_count":11,"created_at":"Thu - Jun 30 10:36:56 +0000 2016","favourites_count":180303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":201168,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233730376427802625\/wXD6RLqI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233730376427802625\/wXD6RLqI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 04:36:37 +0000 2020","id":1235786338676469761,"id_str":"1235786338676469761","text":"Anyone - ELSE think they''re so slow getting more coronavirus test kits out because - they KNOW the number of infected p\u2026 https:\/\/t.co\/RJDC3dNBQD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RJDC3dNBQD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235786338676469761","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1640929196,"id_str":"1640929196","name":"BrooklynDad_Defiant!","screen_name":"mmpadellan","location":"Brooklyn, - NY","description":"Proud papa. Perpetually pissed. #BlueWave2020, #Feminist. - #TheResistance, #ImpeachTheMF.\n\nAuthor of The Liddle''est President, available - for pre-order NOW.","url":"https:\/\/t.co\/yQH9yUf58o","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yQH9yUf58o","expanded_url":"http:\/\/www.brooklyndaddefiant.com","display_url":"brooklyndaddefiant.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":393460,"friends_count":36342,"listed_count":1746,"created_at":"Fri - Aug 02 17:20:38 +0000 2013","favourites_count":166561,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":83518,"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\/1080313621241126918\/0i3MHxWt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080313621241126918\/0i3MHxWt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1640929196\/1569818621","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1107,"favorite_count":4759,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1107,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859933427421184,"id_str":"1235859933427421184","text":"RT - @drsanjaymayukh: Coronavirus: Be aware but don''''t panic, Nitish tells people - https:\/\/t.co\/lo1fwNM08r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"drsanjaymayukh","name":"Sanjay - Mayukh","id":3234899364,"id_str":"3234899364","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/lo1fwNM08r","expanded_url":"https:\/\/www.outlookindia.com\/newsscroll\/coronavirus-be-aware-but-dont-panic-nitish-tells-people\/1753382","display_url":"outlookindia.com\/newsscroll\/cor\u2026","indices":[80,103]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287760143,"id_str":"287760143","name":"rahul - kumar singh","screen_name":"rahulsinghcaptn","location":"\u0928\u0908 \u0926\u093f\u0932\u094d\u0932\u0940, - \u092d\u093e\u0930\u0924","description":"\u091c\u093f\u0938\u0938\u0947 \u0915\u094b\u0908 - \u0909\u092e\u094d\u092e\u0940\u0926 \u0928\u0939\u0940 \u0939\u094b\u0924\u0940 - \u0905\u0915\u094d\u0938\u0930 \u0935\u0939\u0940 \u0932\u094b\u0917 \u0915\u092e\u093e\u0932 - \u0915\u0930\u0924\u0947 \u0939\u0948\u0902!\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":458,"listed_count":0,"created_at":"Mon - Apr 25 16:40:00 +0000 2011","favourites_count":11957,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2258,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167672983453929474\/yzHBIcRW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167672983453929474\/yzHBIcRW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287760143\/1488747898","profile_link_color":"FAB81E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:28:49 +0000 2020","id":1235859874589765634,"id_str":"1235859874589765634","text":"Coronavirus: - Be aware but don''''t panic, Nitish tells people https:\/\/t.co\/lo1fwNM08r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lo1fwNM08r","expanded_url":"https:\/\/www.outlookindia.com\/newsscroll\/coronavirus-be-aware-but-dont-panic-nitish-tells-people\/1753382","display_url":"outlookindia.com\/newsscroll\/cor\u2026","indices":[60,83]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3234899364,"id_str":"3234899364","name":"Sanjay - Mayukh","screen_name":"drsanjaymayukh","location":"Patna, India","description":"MLC - from Bihar. National Media Co-Head @BJP4India \u0930\u093e\u0937\u094d\u091f\u094d\u0930\u0935\u093e\u0926 - \u0939\u092e\u093e\u0930\u0940 \u092a\u094d\u0930\u0947\u0930\u0923\u093e - \u0939\u0948, \u0905\u0928\u094d\u0924\u094d\u092f\u094b\u0926\u092f \u0939\u092e\u093e\u0930\u093e - \u0926\u0930\u094d\u0936\u0928 \u0939\u0948 \u0914\u0930 \u0938\u0941\u0936\u093e\u0938\u0928 - \u0939\u092e\u093e\u0930\u093e \u092e\u0902\u0924\u094d\u0930 \u0939\u0948\u0964","url":"https:\/\/t.co\/cjXqo5t9hJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjXqo5t9hJ","expanded_url":"http:\/\/www.bjp.org","display_url":"bjp.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13436,"friends_count":142,"listed_count":19,"created_at":"Wed - Jun 03 10:12:52 +0000 2015","favourites_count":830,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":2538,"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\/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\/1156541706738663424\/7yUlZ9gU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1156541706738663424\/7yUlZ9gU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3234899364\/1546597485","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"},"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859933347762180,"id_str":"1235859933347762180","text":"Antisipasi - Coronavirus, Stasiun Malang Kota Baru Siagakan Pos Kesehatan https:\/\/t.co\/Gzln0sn1Gb - https:\/\/t.co\/3ZgsiOdhUx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Gzln0sn1Gb","expanded_url":"https:\/\/radarmalang.jawapos.com\/antisipasi-coronavirus-stasiun-malang-kota-baru-siagakan-pos-kesehatan\/?utm_source=dlvr.it&utm_medium=twitter","display_url":"radarmalang.jawapos.com\/antisipasi-cor\u2026","indices":[72,95]}],"media":[{"id":1235859930663383040,"id_str":"1235859930663383040","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDx9UcAA-VaC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDx9UcAA-VaC.jpg","url":"https:\/\/t.co\/3ZgsiOdhUx","display_url":"pic.twitter.com\/3ZgsiOdhUx","expanded_url":"https:\/\/twitter.com\/radar_malang\/status\/1235859933347762180\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1032,"h":774,"resize":"fit"},"large":{"w":1032,"h":774,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859930663383040,"id_str":"1235859930663383040","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDx9UcAA-VaC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDx9UcAA-VaC.jpg","url":"https:\/\/t.co\/3ZgsiOdhUx","display_url":"pic.twitter.com\/3ZgsiOdhUx","expanded_url":"https:\/\/twitter.com\/radar_malang\/status\/1235859933347762180\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1032,"h":774,"resize":"fit"},"large":{"w":1032,"h":774,"resize":"fit"}}}]},"metadata":{"iso_language_code":"in","result_type":"recent"},"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,"user":{"id":528590547,"id_str":"528590547","name":"radar_malang","screen_name":"radar_malang","location":"Jalan - Kawi 11B, Kota Malang","description":"Akun resmi Jawa Pos Radar Malang - online@radarmalang.id - - 0341363700 - Fax 0341348638","url":"https:\/\/t.co\/aSSxehy0rE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aSSxehy0rE","expanded_url":"http:\/\/www.radarmalang.id","display_url":"radarmalang.id","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":108863,"friends_count":543,"listed_count":126,"created_at":"Sun - Mar 18 15:12:12 +0000 2012","favourites_count":1021,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":199854,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/871021681636069376\/t3mQBI0g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/871021681636069376\/t3mQBI0g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528590547\/1560604576","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859933339332614,"id_str":"1235859933339332614","text":"RT - @marianofake: Yo no s\u00e9 si el coronavirus acabar\u00e1 con la Humanidad.\nLo - que s\u00ed s\u00e9 es que el #CorinnaVirus puede acabar con la Monarqu\u00eda.","truncated":false,"entities":{"hashtags":[{"text":"CorinnaVirus","indices":[93,106]}],"symbols":[],"user_mentions":[{"screen_name":"marianofake","name":"MARIANO - RAJOY FAKE \ud83c\uddea\ud83c\uddf8","id":3143935509,"id_str":"3143935509","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":390390209,"id_str":"390390209","name":"tibiti\ud83d\udd3b","screen_name":"_tibiti","location":"Espa\u00f1a - ","description":"Obrero+Explorador","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":170,"friends_count":375,"listed_count":19,"created_at":"Thu - Oct 13 22:20:31 +0000 2011","favourites_count":3810,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20125,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590962154314014722\/21wrIteP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590962154314014722\/21wrIteP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/390390209\/1449849975","profile_link_color":"3B94D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:07:20 +0000 2020","id":1235854466944921600,"id_str":"1235854466944921600","text":"Yo - no s\u00e9 si el coronavirus acabar\u00e1 con la Humanidad.\nLo que s\u00ed - s\u00e9 es que el #CorinnaVirus puede acabar con la Monarqu\u00eda.","truncated":false,"entities":{"hashtags":[{"text":"CorinnaVirus","indices":[76,89]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3143935509,"id_str":"3143935509","name":"MARIANO - RAJOY FAKE \ud83c\uddea\ud83c\uddf8","screen_name":"marianofake","location":"","description":"A - veces, .... en ocasiones, ...... bloqueo a simpatizantes de Vox.\nEspa\u00f1ol.\nParodia.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17715,"friends_count":6090,"listed_count":49,"created_at":"Tue - Apr 07 14:13:05 +0000 2015","favourites_count":12456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206874085856284672\/lwg1kibU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206874085856284672\/lwg1kibU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3143935509\/1578469110","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":30,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932785692672,"id_str":"1235859932785692672","text":"RT - @le_gorafi: #Covid19 L''OMS confirme qu''un bon gros kebab sauce samoura\u00ef - est une protection efficace contre le coronavirus https:\/\/t.co\/x\u2026","truncated":false,"entities":{"hashtags":[{"text":"Covid19","indices":[15,23]}],"symbols":[],"user_mentions":[{"screen_name":"le_gorafi","name":"Le - Gorafi","id":492648852,"id_str":"492648852","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1559746147,"id_str":"1559746147","name":"\u039f\u03bb\u03ac - \u039a\u03b1\u03bb\u03ac","screen_name":"Florelsssan","location":"Poitiers, - France","description":"et dans 50 ans les ours polaires seront des ours tout - court","url":"https:\/\/t.co\/mxMjQFeBPo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mxMjQFeBPo","expanded_url":"https:\/\/www.instagram.com\/florelsssan\/","display_url":"instagram.com\/florelsssan\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":292,"friends_count":97,"listed_count":6,"created_at":"Mon - Jul 01 05:29:37 +0000 2013","favourites_count":10536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28489,"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\/1221181721460248579\/diSc2Unh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221181721460248579\/diSc2Unh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1559746147\/1582499031","profile_link_color":"2567B8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:04:30 +0000 2020","id":1235853753183420416,"id_str":"1235853753183420416","text":"#Covid19 - L''OMS confirme qu''un bon gros kebab sauce samoura\u00ef est une protection - efficace contre le coronavirus\u2026 https:\/\/t.co\/fym9Hcz8BR","truncated":true,"entities":{"hashtags":[{"text":"Covid19","indices":[0,8]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fym9Hcz8BR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235853753183420416","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":492648852,"id_str":"492648852","name":"Le - Gorafi","screen_name":"le_gorafi","location":"Paris, New-York, Montmartre","description":"Contradictoire, - depuis 1826. https:\/\/t.co\/GQqnqAa6lA l''Atlas des r\u00e9gions Gorafi","url":"https:\/\/t.co\/4gc8My3XXc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4gc8My3XXc","expanded_url":"http:\/\/www.legorafi.fr","display_url":"legorafi.fr","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/GQqnqAa6lA","expanded_url":"https:\/\/amzn.to\/2qoCJPk","display_url":"amzn.to\/2qoCJPk","indices":[29,52]}]}},"protected":false,"followers_count":1269793,"friends_count":748,"listed_count":3031,"created_at":"Tue - Feb 14 23:41:32 +0000 2012","favourites_count":322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":21227,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/757531728286195713\/iZCcALkw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/757531728286195713\/iZCcALkw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492648852\/1441088042","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":288,"favorite_count":828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":288,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932773154817,"id_str":"1235859932773154817","text":"RT - @MarcoCantamessa: Coronavirus, in Germania a gennaio il primo contagiato europeo: - \"Da lui l''infezione fino in Italia\" - la Repubblica ht\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarcoCantamessa","name":"Marco - Cantamessa","id":559899927,"id_str":"559899927","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350920742,"id_str":"350920742","name":"fra - luca","screen_name":"bes_d_f","location":"in air Klepero","description":"Copernicano - in Tolemaica patria, ingegnere, contabile, disegnatore, #Libertario #pragmatico - \ud83c\uddf5\ud83c\uddf1","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":533,"friends_count":520,"listed_count":2,"created_at":"Mon - Aug 08 14:29:26 +0000 2011","favourites_count":15597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18184,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3E5966","profile_background_image_url":"http:\/\/abs.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\/982296331074064384\/EmUVMjMs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/982296331074064384\/EmUVMjMs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350920742\/1364715926","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 06:29:11 +0000 2020","id":1235814664962899968,"id_str":"1235814664962899968","text":"Coronavirus, - in Germania a gennaio il primo contagiato europeo: \"Da lui l''infezione fino - in Italia\" - la Repubblica https:\/\/t.co\/R5lmVHupJW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/R5lmVHupJW","expanded_url":"https:\/\/www.repubblica.it\/salute\/medicina-e-ricerca\/2020\/03\/05\/news\/il_primo_caso_di_covid-19_in_europa_descritto_in_germania_il_24_gennaio_scorso-250303955\/","display_url":"repubblica.it\/salute\/medicin\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":559899927,"id_str":"559899927","name":"Marco - Cantamessa","screen_name":"MarcoCantamessa","location":"Torino - Italia","description":"Professor - at @PoliTOnews working for a dream: hearing my alumni (and my daughter) say - \u201cItaly is now cool, I\u2019d like to come back\u201d. And then, sailling - in the Med.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7268,"friends_count":296,"listed_count":140,"created_at":"Sat - Apr 21 19:33:07 +0000 2012","favourites_count":21475,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33676,"lang":null,"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\/809147098692284416\/RhYNqKVM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809147098692284416\/RhYNqKVM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"it"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932714373120,"id_str":"1235859932714373120","text":"Coronavirus, - primo caso in Vaticano. In Toscana contagiata una bimba di 45 giorni \nhttps:\/\/t.co\/2NccSgAknd - v\u00eda @repubblica","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"repubblica","name":"la - Repubblica","id":18935802,"id_str":"18935802","indices":[111,122]}],"urls":[{"url":"https:\/\/t.co\/2NccSgAknd","expanded_url":"https:\/\/www.repubblica.it\/cronaca\/2020\/03\/06\/news\/toscana_contagiata_una_bimba_di_45_giorni-250393465\/","display_url":"repubblica.it\/cronaca\/2020\/0\u2026","indices":[83,106]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":256508537,"id_str":"256508537","name":"Euprepio - Padula","screen_name":"EuprepioPadula","location":"Madrid y el mundo","description":"Experto - en liderazgo pol\u00edtico y empresarial. Presidente de Padula&Partners.Conferenciante - y colaborador en MEDIASET y TELEMADRID.","url":"https:\/\/t.co\/L16hHQu4KD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/L16hHQu4KD","expanded_url":"http:\/\/www.padulapartners.com","display_url":"padulapartners.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":29966,"friends_count":5197,"listed_count":219,"created_at":"Wed - Feb 23 13:46:46 +0000 2011","favourites_count":22856,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39195,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217843437120167936\/4ZH7_0TG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217843437120167936\/4ZH7_0TG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256508537\/1578262254","profile_link_color":"000080","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932617928707,"id_str":"1235859932617928707","text":"Due - to the coronavirus as a precautionary measure Brodies LLP have decided to - postpone their career insight days in\u2026 https:\/\/t.co\/TQ8uUB69nN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TQ8uUB69nN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859932617928707","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2395013177,"id_str":"2395013177","name":"Fraserburgh - Academy","screen_name":"FraserburghAcad","location":"Fraserburgh","description":"Secondary - School","url":"https:\/\/t.co\/jUhjDmnFEI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jUhjDmnFEI","expanded_url":"http:\/\/fraserburgh.aberdeenshire.sch.uk\/","display_url":"fraserburgh.aberdeenshire.sch.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":659,"friends_count":84,"listed_count":7,"created_at":"Sat - Mar 08 21:56:10 +0000 2014","favourites_count":1056,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1194,"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\/1164095158314524672\/URLXMoW8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164095158314524672\/URLXMoW8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2395013177\/1538807094","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235120430882541571,"quoted_status_id_str":"1235120430882541571","quoted_status":{"created_at":"Wed - Mar 04 08:30:32 +0000 2020","id":1235120430882541571,"id_str":"1235120430882541571","text":"Are - you a S4\/S5\/S6 pupil and interested in studying law?Brodies LLP are holding - a Career Insight Day in Aberdeen on\u2026 https:\/\/t.co\/jrwzLhTOjx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jrwzLhTOjx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235120430882541571","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2395013177,"id_str":"2395013177","name":"Fraserburgh - Academy","screen_name":"FraserburghAcad","location":"Fraserburgh","description":"Secondary - School","url":"https:\/\/t.co\/jUhjDmnFEI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jUhjDmnFEI","expanded_url":"http:\/\/fraserburgh.aberdeenshire.sch.uk\/","display_url":"fraserburgh.aberdeenshire.sch.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":659,"friends_count":84,"listed_count":7,"created_at":"Sat - Mar 08 21:56:10 +0000 2014","favourites_count":1056,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1194,"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\/1164095158314524672\/URLXMoW8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164095158314524672\/URLXMoW8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2395013177\/1538807094","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"},"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"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932592783360,"id_str":"1235859932592783360","text":"RT - @NCStinn: Scientists: you should wash your hands because of Coronavirus.\n\nPeople: - I''m gonna stop flying, hoard masks, work from home & t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NCStinn","name":"Nathaniel - Stinnett","id":920899075,"id_str":"920899075","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":613619434,"id_str":"613619434","name":"Beardy - Jam","screen_name":"jhthebrit","location":"Norwich\/Kent","description":"Were - you expecting someone else?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":170,"friends_count":330,"listed_count":0,"created_at":"Wed - Jun 20 17:38:59 +0000 2012","favourites_count":830,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1653,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517785612011982848\/KdK812Kk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517785612011982848\/KdK812Kk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/613619434\/1435792170","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:21:08 +0000 2020","id":1235238858020843522,"id_str":"1235238858020843522","text":"Scientists: - you should wash your hands because of Coronavirus.\n\nPeople: I''m gonna stop - flying, hoard masks, work fr\u2026 https:\/\/t.co\/dhSKvJJEpu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dhSKvJJEpu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235238858020843522","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":920899075,"id_str":"920899075","name":"Nathaniel - Stinnett","screen_name":"NCStinn","location":"Boston, MA","description":"Executive - Director of the Environmental Voter Project (@Enviro_Voter), political advisor, - proud father & husband. RTs are not endorsements. Views are my own.","url":"https:\/\/t.co\/IDhQzVUrg5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IDhQzVUrg5","expanded_url":"http:\/\/www.environmentalvoter.org","display_url":"environmentalvoter.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4209,"friends_count":2060,"listed_count":96,"created_at":"Fri - Nov 02 12:06:21 +0000 2012","favourites_count":2811,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6294,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1209063307610599424\/AuF-HeZl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209063307610599424\/AuF-HeZl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/920899075\/1404649302","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":101302,"favorite_count":346860,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":101302,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932433399812,"id_str":"1235859932433399812","text":"RT - @jucilMadrid: \u00bfDONDE ESTA EL PLAN DE ACTUACION PREVIA PARA SITUACI\u00d3N - DE PANDEMIA EN LA GUARDIA CIVIL ? NO HAY MASCARILLAS Y LOS GUANTES\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jucilMadrid","name":"Jucil - Madrid","id":983479784255746049,"id_str":"983479784255746049","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983396409473929217,"id_str":"983396409473929217","name":"Jucil - Palencia","screen_name":"jucilpalencia","location":"","description":"Cuenta - Oficial Provincial Jucil Palencia, con proyectos y sin ataduras. #EquiparacionYa - #GrupoB_ReclasificacionYa\n\ncontacto: palencia@jucil.es","url":"https:\/\/t.co\/WKX70gmtyZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WKX70gmtyZ","expanded_url":"http:\/\/jucil.es","display_url":"jucil.es","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1198,"friends_count":576,"listed_count":3,"created_at":"Mon - Apr 09 17:29:09 +0000 2018","favourites_count":26812,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30649,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214611757433606144\/oCEPMq7e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214611757433606144\/oCEPMq7e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/983396409473929217\/1581951669","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 08:37:08 +0000 2020","id":1235846866710851584,"id_str":"1235846866710851584","text":"\u00bfDONDE - ESTA EL PLAN DE ACTUACION PREVIA PARA SITUACI\u00d3N DE PANDEMIA EN LA GUARDIA - CIVIL ? NO HAY MASCARILLAS Y LOS G\u2026 https:\/\/t.co\/0yO61sIWtV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0yO61sIWtV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235846866710851584","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983479784255746049,"id_str":"983479784255746049","name":"Jucil - Madrid","screen_name":"jucilMadrid","location":"Madrid, Espa\u00f1a","description":"Cuenta - Oficial Provincial Jucil Madrid, con proyectos y sin ataduras. #EquiparacionYa - #GrupoB_ReclasificacionYa contacto: Madrid@jucil.es","url":"https:\/\/t.co\/pjTN8obTzF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pjTN8obTzF","expanded_url":"http:\/\/www.jucil.es","display_url":"jucil.es","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1072,"friends_count":332,"listed_count":3,"created_at":"Mon - Apr 09 23:00:27 +0000 2018","favourites_count":1456,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":988,"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\/1039277730582474757\/iPAMoMNa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039277730582474757\/iPAMoMNa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/983479784255746049\/1531152330","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932068503554,"id_str":"1235859932068503554","text":"How - does coronavirus compare to flu, Sars, and other diseases? https:\/\/t.co\/n0jKTxPwvk - @Telegraph https:\/\/t.co\/1I2raHZvgZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Telegraph","name":"The - Telegraph","id":16343974,"id_str":"16343974","indices":[87,97]}],"urls":[{"url":"https:\/\/t.co\/n0jKTxPwvk","expanded_url":"http:\/\/dlvr.it\/RRM1xp","display_url":"dlvr.it\/RRM1xp","indices":[63,86]}],"media":[{"id":1235859929769988102,"id_str":"1235859929769988102","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDuoUUAYBQ54.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDuoUUAYBQ54.jpg","url":"https:\/\/t.co\/1I2raHZvgZ","display_url":"pic.twitter.com\/1I2raHZvgZ","expanded_url":"https:\/\/twitter.com\/my_amigouk\/status\/1235859932068503554\/photo\/1","type":"photo","sizes":{"large":{"w":1280,"h":799,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":749,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859929769988102,"id_str":"1235859929769988102","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDuoUUAYBQ54.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDuoUUAYBQ54.jpg","url":"https:\/\/t.co\/1I2raHZvgZ","display_url":"pic.twitter.com\/1I2raHZvgZ","expanded_url":"https:\/\/twitter.com\/my_amigouk\/status\/1235859932068503554\/photo\/1","type":"photo","sizes":{"large":{"w":1280,"h":799,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":749,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":21790700,"id_str":"21790700","name":"\ud83c\uddec\ud83c\udde7 - My Amigo \ud83d\udcf0 \u26bd \ud83c\udfa7 \ud83d\udcb3","screen_name":"my_amigouk","location":"Teesdale - Park, Thornaby, UK","description":"My Amigo is your friend on the internet. - News, sport, music and shopping. \ud83c\uddec\ud83c\udde7 \ud83d\udcf0 \u26bd - \ud83c\udfa7 \ud83d\udcb3 \ud83d\ude03 = Brexit, Trump, Free Speech. \ud83d\ude20 - = EU, PC, Lords, TV Licence","url":"https:\/\/t.co\/L1CmfHyfXH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/L1CmfHyfXH","expanded_url":"https:\/\/www.my-amigo.com","display_url":"my-amigo.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21333,"friends_count":21362,"listed_count":84,"created_at":"Tue - Feb 24 20:05:34 +0000 2009","favourites_count":75301,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":860588,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F9FA","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\/1213122485438337025\/eFohDcpL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213122485438337025\/eFohDcpL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21790700\/1583094166","profile_link_color":"981CEB","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932064272385,"id_str":"1235859932064272385","text":"Afrika - ta Kudu ta sanar da bullar annobar Coronavirus https:\/\/t.co\/3YS23QhfkQ - https:\/\/t.co\/ce2uOvW4wR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3YS23QhfkQ","expanded_url":"https:\/\/rfi.my\/5VQi.t","display_url":"rfi.my\/5VQi.t","indices":[54,77]}],"media":[{"id":1235859929900040192,"id_str":"1235859929900040192","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDvHUwAAntnc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDvHUwAAntnc.jpg","url":"https:\/\/t.co\/ce2uOvW4wR","display_url":"pic.twitter.com\/ce2uOvW4wR","expanded_url":"https:\/\/twitter.com\/RFI_Ha\/status\/1235859932064272385\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859929900040192,"id_str":"1235859929900040192","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDvHUwAAntnc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDvHUwAAntnc.jpg","url":"https:\/\/t.co\/ce2uOvW4wR","display_url":"pic.twitter.com\/ce2uOvW4wR","expanded_url":"https:\/\/twitter.com\/RFI_Ha\/status\/1235859932064272385\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"}}}]},"metadata":{"iso_language_code":"in","result_type":"recent"},"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,"user":{"id":128164488,"id_str":"128164488","name":"RFI - Hausa","screen_name":"RFI_Ha","location":"Lagos, Nigeria","description":"Sashen - Hausa na @RFI na maraba da ku a shafin Twitter","url":"http:\/\/t.co\/W2BZ0hF9ce","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/W2BZ0hF9ce","expanded_url":"http:\/\/ha.rfi.fr","display_url":"ha.rfi.fr","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":101198,"friends_count":258,"listed_count":66,"created_at":"Wed - Mar 31 08:42:27 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":36338,"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\/875659389335728128\/TP7OdwbC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875659389335728128\/TP7OdwbC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128164488\/1494943381","profile_link_color":"E20000","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932043284485,"id_str":"1235859932043284485","text":"RT - @chitolinase: as pessoas divulgando as not\u00edcias das pesquisas brasileiras - fodas sobre coronav\u00edrus dizendo \"ai pq a medicina \u00e9 1 \u00e1rea - t\u00e3o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chitolinase","name":"Isabela - Chitolina","id":732013431361015808,"id_str":"732013431361015808","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2830050586,"id_str":"2830050586","name":"L\u00edvia - Bitencourt","screen_name":"liviab91","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":94,"listed_count":0,"created_at":"Tue - Oct 14 18:09:10 +0000 2014","favourites_count":10929,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":684,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612970440873668608\/tUheqlHm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612970440873668608\/tUheqlHm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830050586\/1434978538","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 11:39:27 +0000 2020","id":1235530361909608448,"id_str":"1235530361909608448","text":"as - pessoas divulgando as not\u00edcias das pesquisas brasileiras fodas sobre - coronav\u00edrus dizendo \"ai pq a medicina \u00e9 1 \u00e1\u2026 https:\/\/t.co\/piwexVkIiJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/piwexVkIiJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235530361909608448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":732013431361015808,"id_str":"732013431361015808","name":"Isabela - Chitolina","screen_name":"chitolinase","location":"","description":"biotecnologista - pela ufrgs\nhumilhada pela vida\n\ndegradando o nome da fam\u00edlia desde - 1997","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":153,"listed_count":0,"created_at":"Mon - May 16 01:02:56 +0000 2016","favourites_count":7778,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1910,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1064705905571315716\/7Yw-vox9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064705905571315716\/7Yw-vox9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/732013431361015808\/1511392455","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5753,"favorite_count":23605,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":5753,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859932018143235,"id_str":"1235859932018143235","text":"RT - @NCStinn: Scientists: you should wash your hands because of Coronavirus.\n\nPeople: - I''m gonna stop flying, hoard masks, work from home & t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NCStinn","name":"Nathaniel - Stinnett","id":920899075,"id_str":"920899075","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40117593,"id_str":"40117593","name":"merlouko","screen_name":"merlouko","location":"Quadrant - Alfa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":559,"listed_count":17,"created_at":"Thu - May 14 23:32:01 +0000 2009","favourites_count":17081,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16706,"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\/608507145655566336\/3xAYJjL-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608507145655566336\/3xAYJjL-_normal.jpg","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:21:08 +0000 2020","id":1235238858020843522,"id_str":"1235238858020843522","text":"Scientists: - you should wash your hands because of Coronavirus.\n\nPeople: I''m gonna stop - flying, hoard masks, work fr\u2026 https:\/\/t.co\/dhSKvJJEpu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dhSKvJJEpu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235238858020843522","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":920899075,"id_str":"920899075","name":"Nathaniel - Stinnett","screen_name":"NCStinn","location":"Boston, MA","description":"Executive - Director of the Environmental Voter Project (@Enviro_Voter), political advisor, - proud father & husband. RTs are not endorsements. Views are my own.","url":"https:\/\/t.co\/IDhQzVUrg5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IDhQzVUrg5","expanded_url":"http:\/\/www.environmentalvoter.org","display_url":"environmentalvoter.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4209,"friends_count":2060,"listed_count":96,"created_at":"Fri - Nov 02 12:06:21 +0000 2012","favourites_count":2811,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6294,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1209063307610599424\/AuF-HeZl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209063307610599424\/AuF-HeZl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/920899075\/1404649302","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":101302,"favorite_count":346860,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":101302,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859931963650048,"id_str":"1235859931963650048","text":"RT - @Reuters: An Australian newspaper known for its tongue-in-cheek antics published - eight blank pages saying it was giving readers what the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Reuters","name":"Reuters","id":1652541,"id_str":"1652541","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1223854274657976320,"id_str":"1223854274657976320","name":"Coronavirus - India","screen_name":"CoronavirusIN","location":"","description":"tracking - coronavirus, #coronavirusindia","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":154,"listed_count":3,"created_at":"Sun - Feb 02 06:23:04 +0000 2020","favourites_count":1536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":402,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235467757275115520\/64mZ-hLj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235467757275115520\/64mZ-hLj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1223854274657976320\/1581997512","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:05:00 +0000 2020","id":1235853878152835073,"id_str":"1235853878152835073","text":"An - Australian newspaper known for its tongue-in-cheek antics published eight - blank pages saying it was giving reade\u2026 https:\/\/t.co\/DWIJWffz8A","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DWIJWffz8A","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235853878152835073","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1652541,"id_str":"1652541","name":"Reuters","screen_name":"Reuters","location":"Around - the world","description":"Top and breaking news, pictures and videos from - Reuters. For more breaking business news, follow @ReutersBiz.","url":"http:\/\/t.co\/BmHxhkm3Mh","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/BmHxhkm3Mh","expanded_url":"http:\/\/www.reuters.com","display_url":"reuters.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":21316085,"friends_count":1114,"listed_count":121485,"created_at":"Tue - Mar 20 17:46:05 +0000 2007","favourites_count":750,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":502216,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"444444","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194751949821939712\/3VBu4_Sa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194751949821939712\/3VBu4_Sa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652541\/1573687397","profile_link_color":"006F97","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F5F5F5","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":146,"favorite_count":281,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":146,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859931607097350,"id_str":"1235859931607097350","text":"El - Vaticano reporta un primer caso de coronavirus https:\/\/t.co\/M6Qlp5jZNc - #Internacionales https:\/\/t.co\/YjsnNEXYeV","truncated":false,"entities":{"hashtags":[{"text":"Internacionales","indices":[74,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/M6Qlp5jZNc","expanded_url":"http:\/\/dlvr.it\/RRM1xX","display_url":"dlvr.it\/RRM1xX","indices":[50,73]}],"media":[{"id":1235859929606455296,"id_str":"1235859929606455296","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDuBVAAAvqxD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDuBVAAAvqxD.png","url":"https:\/\/t.co\/YjsnNEXYeV","display_url":"pic.twitter.com\/YjsnNEXYeV","expanded_url":"https:\/\/twitter.com\/sinaloahoy\/status\/1235859931607097350\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":848,"h":565,"resize":"fit"},"large":{"w":848,"h":565,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1235859929606455296,"id_str":"1235859929606455296","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDuBVAAAvqxD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDuBVAAAvqxD.png","url":"https:\/\/t.co\/YjsnNEXYeV","display_url":"pic.twitter.com\/YjsnNEXYeV","expanded_url":"https:\/\/twitter.com\/sinaloahoy\/status\/1235859931607097350\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":848,"h":565,"resize":"fit"},"large":{"w":848,"h":565,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"result_type":"recent","iso_language_code":"ca"},"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,"user":{"id":1114707324,"id_str":"1114707324","name":"SinaloaHoy","screen_name":"sinaloahoy","location":"Sinaloa","description":"SinaloaHoy, - noticias que se ven mejor :). S\u00f3lo lo que te interesa sobre el Mundo, - Deporte, Tecnolog\u00eda y Sinaloa. Nuestro SinaloaBot trabaja 24 hrs para - ti.","url":"https:\/\/t.co\/jrnf50TWvZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jrnf50TWvZ","expanded_url":"http:\/\/www.sinaloahoy.com.mx","display_url":"sinaloahoy.com.mx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":582,"friends_count":112,"listed_count":16,"created_at":"Wed - Jan 23 16:10:50 +0000 2013","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":155197,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/760751468852883456\/kcxRJchR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/760751468852883456\/kcxRJchR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859931552604161,"id_str":"1235859931552604161","text":"RT - @julialindau: I just landed at JFK after reporting on #coronavirus in Milan - and Lombardy \u2014the epicenter of Italy\u2019s outbreak\u2014 for @vicen\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[57,69]}],"symbols":[],"user_mentions":[{"screen_name":"julialindau","name":"Julia - Lindau","id":375687601,"id_str":"375687601","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23450703,"id_str":"23450703","name":"\ud835\udd65.","screen_name":"thaneDee","location":"","description":"RETWEET - IS NOT ENDORSEMENT. Sometimes it''s more of - my people, come see this madness.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7353,"friends_count":3420,"listed_count":40,"created_at":"Mon - Mar 09 15:53:10 +0000 2009","favourites_count":1714,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5820,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E7C1EB","profile_background_image_url":"http:\/\/abs.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\/1178027937070800896\/6ZDryIKg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1178027937070800896\/6ZDryIKg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23450703\/1563602100","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 23:50:16 +0000 2020","id":1235714275752267776,"id_str":"1235714275752267776","text":"I - just landed at JFK after reporting on #coronavirus in Milan and Lombardy \u2014the - epicenter of Italy\u2019s outbreak\u2014 for\u2026 https:\/\/t.co\/YZFfu02dhT","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[40,52]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YZFfu02dhT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235714275752267776","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375687601,"id_str":"375687601","name":"Julia - Lindau","screen_name":"julialindau","location":"Brooklyn","description":"Producer - @ViceNews. Send me things julia.lindau@vice.com. Good retweeter. Views are - my own.","url":"https:\/\/t.co\/cmsF9Wuqlx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cmsF9Wuqlx","expanded_url":"http:\/\/news.vice.com","display_url":"news.vice.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4821,"friends_count":1607,"listed_count":68,"created_at":"Sun - Sep 18 15:27:28 +0000 2011","favourites_count":5010,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":4363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ED0928","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\/1159918303500034048\/vj3-l3lK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159918303500034048\/vj3-l3lK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375687601\/1388732227","profile_link_color":"FF691F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F5DA27","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"},"geo":null,"coordinates":null,"place":{"id":"00c39537733fa112","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00c39537733fa112.json","place_type":"city","name":"Queens","full_name":"Queens, - NY","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-73.962582,40.541722],[-73.699793,40.541722],[-73.699793,40.8000371],[-73.962582,40.8000371]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":32558,"favorite_count":102113,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":32558,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859931397378052,"id_str":"1235859931397378052","text":"\u2615\ufe0f Coronavirus - (Covid-19) : t\u00e9l\u00e9travail ou arr\u00eat maladie si vous devez garder - vos enfants \u00e0 la maison\u2026 https:\/\/t.co\/Lx43wJ7WXr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Lx43wJ7WXr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859931397378052","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":14813709,"id_str":"14813709","name":"Next - INpact.com","screen_name":"nextinpact","location":"France","description":"Vous - informer aujourd''hui, sur les r\u00e9volutions num\u00e9riques de demain - (ex-PC INpact) #FrenchTech depuis 2003. Suivez aussi @bonsplanstech et @inpacthardware","url":"https:\/\/t.co\/7FEmXzWMg1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7FEmXzWMg1","expanded_url":"http:\/\/NextINpact.com","display_url":"NextINpact.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":50605,"friends_count":1433,"listed_count":1838,"created_at":"Sat - May 17 19:11:26 +0000 2008","favourites_count":1388,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":62156,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/982490227641061381\/s9kAAu5J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/982490227641061381\/s9kAAu5J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813709\/1576997745","profile_link_color":"E88228","profile_sidebar_border_color":"000000","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859931313532928,"id_str":"1235859931313532928","text":"Coronavirus - in Canada: Latest timeline of 33 COVID-19 cases https:\/\/t.co\/SJMzXgn5GM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SJMzXgn5GM","expanded_url":"https:\/\/vancouverisland.ctvnews.ca\/coronavirus-in-canada-latest-timeline-of-33-covid-19-cases-1.4836883","display_url":"vancouverisland.ctvnews.ca\/coronavirus-in\u2026","indices":[60,83]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1013478805,"id_str":"1013478805","name":"gem333 - \ud83d\udc8e\ud83d\udca8\ud83d\udca8","screen_name":"gem333_","location":"Canada","description":"\u00a4 - winter `20 ~ ***\n\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\u2661\n27\/BC - \ud83d\udc8e\ud83d\udca8\ud83d\udca8\ud83d\udca8\ud83d\udca8\ud83d\udca8\ud83d\udca8\nfollow - me on Snapchat:gem3-33\nIG:gem333_\nthe Weedtube gem333_","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":274,"listed_count":1,"created_at":"Sat - Dec 15 15:57:52 +0000 2012","favourites_count":719,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":537,"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\/1161412350856929280\/mqwMN5_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161412350856929280\/mqwMN5_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1013478805\/1579126177","profile_link_color":"9D0EF0","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859931242196993,"id_str":"1235859931242196993","text":"RT - @JimmyDeuxFois__: Mdr, bon... D\u2019apr\u00e8s des m\u00e9decins chinois, - le coronavirus est un genre de \u00ab\u00a0mix entre la grippe et le SIDA\u00a0\u00bb. - Ce truc e\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JimmyDeuxFois__","name":"Jimmy","id":895309295591489539,"id_str":"895309295591489539","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1260174547,"id_str":"1260174547","name":"Yamichella","screen_name":"YamaLegrand","location":"","description":"Welcome - to the end of the rope","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":521,"friends_count":308,"listed_count":5,"created_at":"Mon - Mar 11 18:54:11 +0000 2013","favourites_count":18000,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27081,"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\/1182370575517392901\/HDNLkNlB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182370575517392901\/HDNLkNlB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1260174547\/1576754028","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:26:21 +0000 2020","id":1235859252763217920,"id_str":"1235859252763217920","text":"Mdr, - bon... D\u2019apr\u00e8s des m\u00e9decins chinois, le coronavirus est un - genre de \u00ab\u00a0mix entre la grippe et le SIDA\u00a0\u00bb. Ce tru\u2026 - https:\/\/t.co\/F4IjSIu2kI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/F4IjSIu2kI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859252763217920","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":895309295591489539,"id_str":"895309295591489539","name":"Jimmy","screen_name":"JimmyDeuxFois__","location":"Nice, - France","description":"Mal gar\u00e9 sur le droit chemin. | 2nd : @JimmyTrois - \ud83d\udce8 contact.jimmydeuxfois@gmail.com FC \ud83e\udda6","url":"https:\/\/t.co\/t7AuteCD5X","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/t7AuteCD5X","expanded_url":"https:\/\/instagram.com\/instassouan","display_url":"instagram.com\/instassouan","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":55017,"friends_count":307,"listed_count":70,"created_at":"Wed - Aug 09 15:42:24 +0000 2017","favourites_count":31593,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31697,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218179947140919297\/sI71VDU3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218179947140919297\/sI71VDU3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/895309295591489539\/1548797576","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":68,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859931049283585,"id_str":"1235859931049283585","text":"Lees - \"Bethlehem afgesloten van de buitenwereld om coronavrees\" op Nieuwsblik - - https:\/\/t.co\/6Yc6X5fhma - In het geb\u2026 https:\/\/t.co\/8AaCH58IZX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6Yc6X5fhma","expanded_url":"https:\/\/nieuwsblik.nl\/bethlehem-afgesloten-van-de-buitenwereld-om-coronavrees\/","display_url":"nieuwsblik.nl\/bethlehem-afge\u2026","indices":[79,102]},{"url":"https:\/\/t.co\/8AaCH58IZX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859931049283585","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"nl","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/nieuwsblik.nl\" rel=\"nofollow\"\u003eNieuwsblik\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1037266384235966464,"id_str":"1037266384235966464","name":"Nieuwsbliknl","screen_name":"nieuwsbliknl","location":"Amsterdam, - Nederland","description":"Snelnieuws voor koppensnellers en forenzen. Nieuws - verzameld via RSS-feeds. Follow back.","url":"https:\/\/t.co\/u5ZQITHNGy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/u5ZQITHNGy","expanded_url":"http:\/\/nieuwsblik.nl","display_url":"nieuwsblik.nl","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1306,"friends_count":1704,"listed_count":5,"created_at":"Wed - Sep 05 09:09:12 +0000 2018","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":233308,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1037268516540481536\/eadXnPAD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1037268516540481536\/eadXnPAD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1037266384235966464\/1536139073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930986373121,"id_str":"1235859930986373121","text":"RT - @agirlinthepark: On the 3\/6 ep of Park Myung Soo\u2019s radio show, big data - expert Jun Min Ki discussed the coronavirus & stars\u2019 donations.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"agirlinthepark","name":"JP\ud83c\udfe1\ud83d\ude0a","id":787778195131170817,"id_str":"787778195131170817","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":728001353230876673,"id_str":"728001353230876673","name":"sasa\u2077","screen_name":"salshassi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2323,"friends_count":2174,"listed_count":2,"created_at":"Wed - May 04 23:20:23 +0000 2016","favourites_count":4590,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44445,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235737796007972864\/0p4_G0rB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235737796007972864\/0p4_G0rB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/728001353230876673\/1581921192","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 03:54:14 +0000 2020","id":1235775672729116673,"id_str":"1235775672729116673","text":"On - the 3\/6 ep of Park Myung Soo\u2019s radio show, big data expert Jun Min Ki - discussed the coronavirus & stars\u2019 donatio\u2026 https:\/\/t.co\/4J7X0alJ8W","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4J7X0alJ8W","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235775672729116673","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":787778195131170817,"id_str":"787778195131170817","name":"JP\ud83c\udfe1\ud83d\ude0a","screen_name":"agirlinthepark","location":"","description":"Just - a fan \ud83d\udc9c 100% human! \ud83c\uddf0\ud83c\uddf7\ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/poxAYoPpVZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/poxAYoPpVZ","expanded_url":"http:\/\/whitepaperproject.com","display_url":"whitepaperproject.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":191957,"friends_count":353,"listed_count":2491,"created_at":"Sun - Oct 16 22:12:12 +0000 2016","favourites_count":284,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15776,"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\/1112738393530814464\/MhfMzLza_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1112738393530814464\/MhfMzLza_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/787778195131170817\/1554132468","profile_link_color":"62CDAD","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1500,"favorite_count":3349,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1500,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930982187011,"id_str":"1235859930982187011","text":"RT - @LassanaDT: \"dites bien \u00e0 vos \u00e9l\u00e8ves qu''il n''y aura pas - de savon dans les toilettes : l''amiante dans les murs interdit d''y percer - des tr\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LassanaDT","name":"Lassana - D.","id":723124984554508288,"id_str":"723124984554508288","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1306680870,"id_str":"1306680870","name":"B\u00e9atrice - NAS","screen_name":"bnasw","location":"La R\u00e9union, Bourgogne.","description":"ex-prof, - France, US, Indonesia, Africa, R\u00e9union. Gauche? Droite?(Re?)devenue sceptique, - \u2019\u2019je suis comme une truie qui doute\u2019\u2019 (Duneton). mill\u00e9sime - 47.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":525,"friends_count":771,"listed_count":2,"created_at":"Wed - Mar 27 06:31:17 +0000 2013","favourites_count":39238,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":46232,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186265868633890817\/k7V9LhrP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186265868633890817\/k7V9LhrP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:49:12 +0000 2020","id":1234460751324221441,"id_str":"1234460751324221441","text":"\"dites - bien \u00e0 vos \u00e9l\u00e8ves qu''il n''y aura pas de savon dans les toilettes - : l''amiante dans les murs interdit d''y perc\u2026 https:\/\/t.co\/LQEQILGBa0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LQEQILGBa0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234460751324221441","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":723124984554508288,"id_str":"723124984554508288","name":"Lassana - D.","screen_name":"LassanaDT","location":"Paris, France","description":"\u1d57\u02b0\u1d49 - \u1d57\u1da6\u1db0\u1d4d \u1d4d\u1d52 \u02e2\u1d4f\u02b3\u02b3\u02b3\u1d43 - \u1d3e\u1d43\u1d56 \u1d3e\u1d43\u1d56 \u1d4f\u1d43 \u1d4f\u1d43 \u02e2\u1d4f\u1da6\u1d48\u1da6\u1d4f\u1da6 - \u1d3e\u1d43\u1d56 \u1d3e\u1d43\u1d56 \u1d43\u1db0\u1d48 \u1d43 \u1d3e\u1d41 - \u1d3e\u1d41 \u1d48\u02b3\u02b3\u02b3\u02b3 \u1d2e\u1d52\u1d52\u1d50 \u02e2\u1d37\u02b8\u1d2c\u1d2c\u1d2c - \u1d48\u1d58 \u1d48\u1d58 \u1d4f\u1d58 \u1d4f\u1d58 \u1d57\u1d58\u1db0 \u1d57\u1d58\u1db0 - \u1d56\u1d52\u1d52\u1d50 \u1d56\u1d52\u1d52\u1d50","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1519,"friends_count":658,"listed_count":31,"created_at":"Thu - Apr 21 12:23:26 +0000 2016","favourites_count":52395,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/974913884745322496\/UU8CNjbs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/974913884745322496\/UU8CNjbs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/723124984554508288\/1487837086","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3149,"favorite_count":9723,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":3149,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930885677059,"id_str":"1235859930885677059","text":"Coronavirus - Outbreak LIVE Updates: Flight from Tehran carrying samples of over 300 stranded - Indians expected to lan\u2026 https:\/\/t.co\/U9oX1tN0Us","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U9oX1tN0Us","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859930885677059","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":937022017471111168,"id_str":"937022017471111168","name":"Travel - To Tokyo","screen_name":"TravelToTokyo","location":"Tokyo, Japan","description":"Traveling - to #Tokyo, #Japan? Read Tokyo 4 Free: Hundreds of Awesome and Free Things - to Do in Tokyo (Kindle Edition) by Kei D. Nalto.","url":"https:\/\/t.co\/3xcjCexJaU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3xcjCexJaU","expanded_url":"http:\/\/amzn.to\/2i9ORfp","display_url":"amzn.to\/2i9ORfp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":39,"listed_count":1,"created_at":"Sat - Dec 02 18:13:52 +0000 2017","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2471,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/937045056900362240\/SxvXlP6Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/937045056900362240\/SxvXlP6Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/937022017471111168\/1512243648","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930822791168,"id_str":"1235859930822791168","text":"RT - @Reuters: An Australian newspaper known for its tongue-in-cheek antics published - eight blank pages saying it was giving readers what the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Reuters","name":"Reuters","id":1652541,"id_str":"1652541","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1615220089,"id_str":"1615220089","name":"Mark - F. Chalker","screen_name":"mark_chalker","location":"Adelaide SA","description":"Oil - & Gas Consultant. Purveyor of fine food, European Wine & Cuban cigars. Libertarian - Conservative with no time for Political Correctness.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":972,"friends_count":1900,"listed_count":18,"created_at":"Tue - Jul 23 12:50:16 +0000 2013","favourites_count":110164,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47649,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432026678764634113\/lImT-G9d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432026678764634113\/lImT-G9d_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:05:00 +0000 2020","id":1235853878152835073,"id_str":"1235853878152835073","text":"An - Australian newspaper known for its tongue-in-cheek antics published eight - blank pages saying it was giving reade\u2026 https:\/\/t.co\/DWIJWffz8A","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DWIJWffz8A","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235853878152835073","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1652541,"id_str":"1652541","name":"Reuters","screen_name":"Reuters","location":"Around - the world","description":"Top and breaking news, pictures and videos from - Reuters. For more breaking business news, follow @ReutersBiz.","url":"http:\/\/t.co\/BmHxhkm3Mh","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/BmHxhkm3Mh","expanded_url":"http:\/\/www.reuters.com","display_url":"reuters.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":21316085,"friends_count":1114,"listed_count":121485,"created_at":"Tue - Mar 20 17:46:05 +0000 2007","favourites_count":750,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":502216,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"444444","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194751949821939712\/3VBu4_Sa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194751949821939712\/3VBu4_Sa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652541\/1573687397","profile_link_color":"006F97","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F5F5F5","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":146,"favorite_count":281,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":146,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930734706690,"id_str":"1235859930734706690","text":"\u2018No - Time To Die\u2019 Release Delayed Over Coronavirus Scare https:\/\/t.co\/PMAulfMgEq - #Movies #CaryJojiFukunaga https:\/\/t.co\/BNZCjt2DKY","truncated":false,"entities":{"hashtags":[{"text":"Movies","indices":[80,87]},{"text":"CaryJojiFukunaga","indices":[88,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PMAulfMgEq","expanded_url":"http:\/\/dlvr.it\/RRM1xR","display_url":"dlvr.it\/RRM1xR","indices":[56,79]}],"media":[{"id":1235859928725651457,"id_str":"1235859928725651457","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDqvVAAEMpTE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDqvVAAEMpTE.jpg","url":"https:\/\/t.co\/BNZCjt2DKY","display_url":"pic.twitter.com\/BNZCjt2DKY","expanded_url":"https:\/\/twitter.com\/FocusOgun\/status\/1235859930734706690\/photo\/1","type":"photo","sizes":{"medium":{"w":948,"h":435,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":312,"resize":"fit"},"large":{"w":948,"h":435,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859928725651457,"id_str":"1235859928725651457","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDqvVAAEMpTE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDqvVAAEMpTE.jpg","url":"https:\/\/t.co\/BNZCjt2DKY","display_url":"pic.twitter.com\/BNZCjt2DKY","expanded_url":"https:\/\/twitter.com\/FocusOgun\/status\/1235859930734706690\/photo\/1","type":"photo","sizes":{"medium":{"w":948,"h":435,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":312,"resize":"fit"},"large":{"w":948,"h":435,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2841708765,"id_str":"2841708765","name":"Focus - Ogun","screen_name":"FocusOgun","location":"Ogun","description":"Reflecting - The Good Values Of Ogun People -","url":"http:\/\/t.co\/3ggK3pFCSJ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/3ggK3pFCSJ","expanded_url":"http:\/\/focusogun.com","display_url":"focusogun.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":226,"friends_count":133,"listed_count":3,"created_at":"Thu - Oct 23 06:30:25 +0000 2014","favourites_count":73,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4519,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543830909154512897\/iCrUDbqG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543830909154512897\/iCrUDbqG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2841708765\/1414161224","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930646597632,"id_str":"1235859930646597632","text":"RT - @pakornwut: \u0e1d\u0e32\u0e01\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e46\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e1c\u0e25\u0e31\u0e01\u0e14\u0e31\u0e19\u0e42\u0e1b\u0e23\u0e40\u0e08\u0e04\u0e19\u0e35\u0e49\u0e15\u0e48\u0e2d\u0e14\u0e49\u0e27\u0e22\u0e04\u0e23\u0e31\u0e1a - \u0e23\u0e48\u0e27\u0e21\u0e01\u0e31\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22\n\n#COVID\u30fc19\n#coronavirus\n#\u0e42\u0e04\u0e27\u0e34\u0e1419\nhttps\u2026","truncated":false,"entities":{"hashtags":[{"text":"COVID\u30fc19","indices":[102,111]},{"text":"coronavirus","indices":[112,124]},{"text":"\u0e42\u0e04\u0e27\u0e34\u0e1419","indices":[125,133]}],"symbols":[],"user_mentions":[{"screen_name":"pakornwut","name":"Earth - Pakornwut \ud83e\udde1 \\7","id":4013102233,"id_str":"4013102233","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2840389976,"id_str":"2840389976","name":"rp,,","screen_name":"rtnphn","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":154,"friends_count":131,"listed_count":0,"created_at":"Sat - Oct 04 16:18:23 +0000 2014","favourites_count":29501,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4996,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217508723427438592\/_cGO0wiY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217508723427438592\/_cGO0wiY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2840389976\/1579111784","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 08:14:11 +0000 2020","id":1235841090021818368,"id_str":"1235841090021818368","text":"\u0e1d\u0e32\u0e01\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e46\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e1c\u0e25\u0e31\u0e01\u0e14\u0e31\u0e19\u0e42\u0e1b\u0e23\u0e40\u0e08\u0e04\u0e19\u0e35\u0e49\u0e15\u0e48\u0e2d\u0e14\u0e49\u0e27\u0e22\u0e04\u0e23\u0e31\u0e1a - \u0e23\u0e48\u0e27\u0e21\u0e01\u0e31\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22\n\n#COVID\u30fc19\n#coronavirus\u2026 - https:\/\/t.co\/GfAuQ1za0D","truncated":true,"entities":{"hashtags":[{"text":"COVID\u30fc19","indices":[87,96]},{"text":"coronavirus","indices":[97,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GfAuQ1za0D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235841090021818368","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4013102233,"id_str":"4013102233","name":"Earth - Pakornwut \ud83e\udde1 \\7","screen_name":"pakornwut","location":"BKK","description":"\u0e1c\u0e39\u0e49\u0e41\u0e17\u0e19\u0e23\u0e32\u0e29\u0e0e\u0e23 - \u0e1e\u0e23\u0e23\u0e04\u0e2d\u0e19\u0e32\u0e04\u0e15\u0e43\u0e2b\u0e21\u0e48 - \u0e23\u0e30\u0e1a\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d","url":"https:\/\/t.co\/maOJHvvAtT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/maOJHvvAtT","expanded_url":"http:\/\/fb.com\/EarthPakornwut","display_url":"fb.com\/EarthPakornwut","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2352,"friends_count":113,"listed_count":8,"created_at":"Sun - Oct 25 12:00:50 +0000 2015","favourites_count":371,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":334,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1122792793468833792\/M3qxuF-G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1122792793468833792\/M3qxuF-G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4013102233\/1582303044","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1125,"favorite_count":300,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},"is_quote_status":false,"retweet_count":1125,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"th"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930617241606,"id_str":"1235859930617241606","text":"RT - @fresh_sadegh: It is interesting that @Tasnimnews_Fa removes parts of Salami\u2019s - remarks about possible #US role in creating #Coronavirus\u2026","truncated":false,"entities":{"hashtags":[{"text":"US","indices":[105,108]},{"text":"Coronavirus","indices":[126,138]}],"symbols":[],"user_mentions":[{"screen_name":"fresh_sadegh","name":"Fereshteh - Sadeghi \u0641\u0631\u0634\u062a\u0647 \u0635\u0627\u062f\u0642\u06cc","id":30444566,"id_str":"30444566","indices":[3,16]},{"screen_name":"Tasnimnews_Fa","name":"\u062e\u0628\u0631\u06af\u0632\u0627\u0631\u06cc - \u062a\u0633\u0646\u06cc\u0645 \ud83c\uddee\ud83c\uddf7","id":2739506010,"id_str":"2739506010","indices":[41,55]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":862245448580464640,"id_str":"862245448580464640","name":"Shayan - Arkian","screen_name":"ShayanArkian","location":"Middle East and Europe","description":"Political - analyst on Iran & Shia & Middle East affairs. Chief Editor of @IranAnders. - Of course RTs & MTs are not necessarily endorsements.","url":"https:\/\/t.co\/f6crguoVnr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/f6crguoVnr","expanded_url":"http:\/\/www.irananders.de","display_url":"irananders.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":483,"listed_count":6,"created_at":"Wed - May 10 09:58:29 +0000 2017","favourites_count":280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1587,"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\/862269137334226944\/fDYW6ejy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/862269137334226944\/fDYW6ejy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/862245448580464640\/1560949781","profile_link_color":"36648B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 12:44:24 +0000 2020","id":1235546704868306945,"id_str":"1235546704868306945","text":"It - is interesting that @Tasnimnews_Fa removes parts of Salami\u2019s remarks - about possible #US role in creating\u2026 https:\/\/t.co\/K7oJXaDlaY","truncated":true,"entities":{"hashtags":[{"text":"US","indices":[87,90]}],"symbols":[],"user_mentions":[{"screen_name":"Tasnimnews_Fa","name":"\u062e\u0628\u0631\u06af\u0632\u0627\u0631\u06cc - \u062a\u0633\u0646\u06cc\u0645 \ud83c\uddee\ud83c\uddf7","id":2739506010,"id_str":"2739506010","indices":[23,37]}],"urls":[{"url":"https:\/\/t.co\/K7oJXaDlaY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235546704868306945","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235545263433035777,"in_reply_to_status_id_str":"1235545263433035777","in_reply_to_user_id":30444566,"in_reply_to_user_id_str":"30444566","in_reply_to_screen_name":"fresh_sadegh","user":{"id":30444566,"id_str":"30444566","name":"Fereshteh - Sadeghi \u0641\u0631\u0634\u062a\u0647 \u0635\u0627\u062f\u0642\u06cc","screen_name":"fresh_sadegh","location":"Tehran.Iran","description":"Iran - \ud83c\uddee\ud83c\uddf7 Farsi\/Eng\/Tur . RT not endorsement. Header photo: - David Burnett, 1979 Islamic Revolution","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5897,"friends_count":2306,"listed_count":184,"created_at":"Sat - Apr 11 13:10:08 +0000 2009","favourites_count":39008,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39256,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"2E3E33","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232769986982268934\/5MAxpX_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232769986982268934\/5MAxpX_3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30444566\/1493445806","profile_link_color":"981CEB","profile_sidebar_border_color":"98B7C3","profile_sidebar_fill_color":"F9DCE3","profile_text_color":"818D8D","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930407550979,"id_str":"1235859930407550979","text":"#\u65b0\u578b\u30b3\u30ed\u30ca\u30a6\u30a4\u30eb\u30b9\u80ba\u708e - \n#\u30ab\u30ca\u30c0 \n\n\u4eca\u30d3\u30b6\u7533\u8acb\u4e2d\u306a\u3093\u3060\u3051\u3069\u964d\u308a\u305f\u3068\u3053\u308d\u3067\u5165\u56fd\u3067\u304d\u308b\u304b\u602a\u3057\u304f\u306a\u3063\u3066\u304d\u305f\u3002\n\n\u3010\u901f\u5831\u3011\u65b0\u578b\u30b3\u30ed\u30ca\u30a6\u30a4\u30eb\u30b9\u3001\u30ab\u30ca\u30c0\u3067\u3082\u65e5\u672c\u4eba\u3078\u306e\u5165\u56fd\u5f8c\u306e\u5236\u9650\u304c\u767a\u4ee4\u3002\u30c8\u30ed\u30f3\u30c8\u304c\u3042\u308b\u30aa\u30f3\u30bf\u30ea\u30aa\u5dde\u3092\u542b\u30809\u3064\u306e\u5dde\u306a\u3069 - |\u2026 https:\/\/t.co\/J4GCVojJ2z","truncated":true,"entities":{"hashtags":[{"text":"\u65b0\u578b\u30b3\u30ed\u30ca\u30a6\u30a4\u30eb\u30b9\u80ba\u708e","indices":[0,12]},{"text":"\u30ab\u30ca\u30c0","indices":[14,18]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/J4GCVojJ2z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859930407550979","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1154217170542317568,"id_str":"1154217170542317568","name":"TETSU@\ud83c\uddef\ud83c\uddf5\ud83c\udde8\ud83c\udde6\ud83c\udde6\ud83c\uddfa","screen_name":"tetsuyawz","location":"KELOWNA","description":"\ud83d\udc64Japanese\/\ud83c\udfe0Canada\/\u2708\ufe0f\ud83c\uddef\ud83c\uddf5\ud83c\udde6\ud83c\uddfa\ud83c\udde8\ud83c\udde6 - \n\u73fe\u5728\u306f\u30ab\u30ca\u30c0\u3067\u30b7\u30a7\u30d5\u3092\u3057\u306a\u304c\u3089\u82f1\u8a9e\u3084\u6587\u5316\u3092\u5b66\u3073\u6c38\u4f4f\u6a29\u3092\u53d6\u5f97\u3092\u76ee\u6307\u3057\u3066\u3044\u307e\u3059\u3002\n - \u5c06\u6765\u306f\u65e5\u672c\u3068\u6d77\u5916\u3092\u7d50\u3073\u8272\u3005\u306a\u5f62\u3067\u4e16\u306b\u8ca2\u732e\u3057\u307e\u3059\u3002\ncurrently, - I live in Canada.","url":"https:\/\/t.co\/K642QLvINB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/K642QLvINB","expanded_url":"https:\/\/www.meetup.com\/en-AU\/KELOWNA-Japanese-English-Language-Exchange-Community\/","display_url":"meetup.com\/en-AU\/KELOWNA-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":171,"listed_count":0,"created_at":"Thu - Jul 25 02:29:52 +0000 2019","favourites_count":78,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227192454153064454\/LwbQi-TN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227192454153064454\/LwbQi-TN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154217170542317568\/1567569297","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930319482882,"id_str":"1235859930319482882","text":"RT - @Conflits_FR: \ud83c\uddeb\ud83c\uddf7 FLASH - Premier cas de coronavirus - confirm\u00e9 en Haute-Garonne. R\u00e9sidant \u00e0 Muret, l''homme de 70 - ans revenait d''Egypte ave\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Conflits_FR","name":"Conflits","id":1214315619031478272,"id_str":"1214315619031478272","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1223665551551188994,"id_str":"1223665551551188994","name":"\ud83d\udca1\ud83e\udda0 - COVID19 INFO\ud83d\udde3\ud83d\ude37\ud83c\uddeb\ud83c\uddf7","screen_name":"covid19_info","location":"Ile-de-France, - France","description":"Citoyen adepte du principe de pr\u00e9caution. Objecteur - de conscience et relayeur d''infos sur #COVID19. T\u00e9moignages recherch\u00e9s - \ud83d\udc49 DM ou covid19info.fr@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":570,"friends_count":132,"listed_count":9,"created_at":"Sat - Feb 01 17:53:18 +0000 2020","favourites_count":864,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1017,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235286097799892998\/-JEoATGf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235286097799892998\/-JEoATGf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1223665551551188994\/1580655432","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 07:31:12 +0000 2020","id":1235830275399012354,"id_str":"1235830275399012354","text":"\ud83c\uddeb\ud83c\uddf7 - FLASH - Premier cas de coronavirus confirm\u00e9 en Haute-Garonne. R\u00e9sidant - \u00e0 Muret, l''homme de 70 ans revenait d''Egy\u2026 https:\/\/t.co\/iOe9AHYKZS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iOe9AHYKZS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235830275399012354","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214315619031478272,"id_str":"1214315619031478272","name":"Conflits","screen_name":"Conflits_FR","location":"\ud83c\uddeb\ud83c\uddf7 - \/ \ud83c\udde9\ud83c\uddea","description":"Traque les conflits du globe en - temps r\u00e9el & en fran\u00e7ais. (G\u00e9o)politique, terrorisme, espionnage, - cyber-s\u00e9curit\u00e9, sant\u00e9. Backup : @ConflitsS. https:\/\/t.co\/5LQDx0g3n2.","url":"https:\/\/t.co\/Ve7b3t0FON","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ve7b3t0FON","expanded_url":"https:\/\/www.instagram.com\/conflits_fr\/","display_url":"instagram.com\/conflits_fr\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/5LQDx0g3n2","expanded_url":"http:\/\/t.me\/conflitsfra","display_url":"t.me\/conflitsfra","indices":[142,165]}]}},"protected":false,"followers_count":96007,"friends_count":24,"listed_count":223,"created_at":"Mon - Jan 06 22:40:00 +0000 2020","favourites_count":2734,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3684,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214315619031478272\/1580759618","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":82,"favorite_count":258,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":82,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930306863107,"id_str":"1235859930306863107","text":"RT - @DrAmalinaBakri: Here\u2019s my post about COVID-19. I will post another update - this weekend. Stay tuned... https:\/\/t.co\/Br48bM3ezi https:\/\/t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrAmalinaBakri","name":"Dr. - Amalina","id":4870788316,"id_str":"4870788316","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/Br48bM3ezi","expanded_url":"https:\/\/www.dramalina.com\/blog\/coronavirus","display_url":"dramalina.com\/blog\/coronavir\u2026","indices":[106,129]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320131168,"id_str":"320131168","name":"Memey\ud83c\udf38","screen_name":"sheismemey","location":"Puchong - , selangor","description":"","url":"https:\/\/t.co\/doxG45xcal","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/doxG45xcal","expanded_url":"http:\/\/Instagram.com\/lyanashamimie\/","display_url":"Instagram.com\/lyanashamimie\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1952,"friends_count":899,"listed_count":6,"created_at":"Sun - Jun 19 10:53:35 +0000 2011","favourites_count":1815,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":95246,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D7E7E6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1142412646274088961\/vjhAE56f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1142412646274088961\/vjhAE56f_normal.jpg","profile_link_color":"856755","profile_sidebar_border_color":"97B8AB","profile_sidebar_fill_color":"C1D9D0","profile_text_color":"C28C77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:12:28 +0000 2020","id":1235855758857625600,"id_str":"1235855758857625600","text":"Here\u2019s - my post about COVID-19. I will post another update this weekend. Stay tuned... - https:\/\/t.co\/Br48bM3ezi https:\/\/t.co\/FJdXkGTaN5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Br48bM3ezi","expanded_url":"https:\/\/www.dramalina.com\/blog\/coronavirus","display_url":"dramalina.com\/blog\/coronavir\u2026","indices":[86,109]}],"media":[{"id":1235855750724874242,"id_str":"1235855750724874242","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/ESakQeeUcAISU5C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESakQeeUcAISU5C.jpg","url":"https:\/\/t.co\/FJdXkGTaN5","display_url":"pic.twitter.com\/FJdXkGTaN5","expanded_url":"https:\/\/twitter.com\/DrAmalinaBakri\/status\/1235855758857625600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"},"large":{"w":946,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235855750724874242,"id_str":"1235855750724874242","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/ESakQeeUcAISU5C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESakQeeUcAISU5C.jpg","url":"https:\/\/t.co\/FJdXkGTaN5","display_url":"pic.twitter.com\/FJdXkGTaN5","expanded_url":"https:\/\/twitter.com\/DrAmalinaBakri\/status\/1235855758857625600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"},"large":{"w":946,"h":2048,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4870788316,"id_str":"4870788316","name":"Dr. - Amalina","screen_name":"DrAmalinaBakri","location":"London, England","description":"General - Surgeon (Specialist Trainee) & PhD Breast Research Fellow @imperialcollege - \ud83d\udc69\ud83c\udffb\u200d\u2695\ufe0f-Edinburgh & Cambridge educated. - BRACELET study @NIHRresearch","url":"https:\/\/t.co\/f2NaJmirs5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/f2NaJmirs5","expanded_url":"http:\/\/www.DrAmalina.com","display_url":"DrAmalina.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":540690,"friends_count":503,"listed_count":238,"created_at":"Mon - Feb 01 23:03:53 +0000 2016","favourites_count":1817,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8989,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170375201445556226\/s4BMHeJY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170375201445556226\/s4BMHeJY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4870788316\/1536281592","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":138,"favorite_count":246,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":138,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930227204096,"id_str":"1235859930227204096","text":"RT - @cplchef: Chinese fall due to #coronavirus #CoronaVirusUpdates #WuhanCoronavirus - https:\/\/t.co\/7nlKI8n6zN","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[33,45]},{"text":"CoronaVirusUpdates","indices":[46,65]},{"text":"WuhanCoronavirus","indices":[66,83]}],"symbols":[],"user_mentions":[{"screen_name":"cplchef","name":"YO\u016eN\u018fS - \u018f\u0141 C\u0100PO \ud83c\uddf0\ud83c\uddf2\ud83c\uddf2\ud83c\uddec\ud83c\uddfe\ud83c\uddf9","id":1031873020757987328,"id_str":"1031873020757987328","indices":[3,11]}],"urls":[],"media":[{"id":1233457663889018884,"id_str":"1233457663889018884","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233457663889018884\/pu\/img\/UNUdCUhhpLswl4Et.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233457663889018884\/pu\/img\/UNUdCUhhpLswl4Et.jpg","url":"https:\/\/t.co\/7nlKI8n6zN","display_url":"pic.twitter.com\/7nlKI8n6zN","expanded_url":"https:\/\/twitter.com\/cplchef\/status\/1233458019373125632\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":640,"h":800,"resize":"fit"},"medium":{"w":640,"h":800,"resize":"fit"}},"source_status_id":1233458019373125632,"source_status_id_str":"1233458019373125632","source_user_id":1031873020757987328,"source_user_id_str":"1031873020757987328"}]},"extended_entities":{"media":[{"id":1233457663889018884,"id_str":"1233457663889018884","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233457663889018884\/pu\/img\/UNUdCUhhpLswl4Et.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233457663889018884\/pu\/img\/UNUdCUhhpLswl4Et.jpg","url":"https:\/\/t.co\/7nlKI8n6zN","display_url":"pic.twitter.com\/7nlKI8n6zN","expanded_url":"https:\/\/twitter.com\/cplchef\/status\/1233458019373125632\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":640,"h":800,"resize":"fit"},"medium":{"w":640,"h":800,"resize":"fit"}},"source_status_id":1233458019373125632,"source_status_id_str":"1233458019373125632","source_user_id":1031873020757987328,"source_user_id_str":"1031873020757987328","video_info":{"aspect_ratio":[4,5],"duration_millis":14400,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233457663889018884\/pu\/pl\/BMxr63Y7YKmqRoIO.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233457663889018884\/pu\/vid\/360x450\/p_QHgAlrfqHbxuTu.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233457663889018884\/pu\/vid\/640x800\/GabYAbYGO0xrCRQ-.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233457663889018884\/pu\/vid\/320x400\/3iii_OJo8OkWTurZ.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":1031873020757987328,"id_str":"1031873020757987328","name":"YO\u016eN\u018fS - \u018f\u0141 C\u0100PO \ud83c\uddf0\ud83c\uddf2\ud83c\uddf2\ud83c\uddec\ud83c\uddfe\ud83c\uddf9","screen_name":"cplchef","location":"Bretagne, - France","description":"Snapchat : cplchef \n\u2b50\nInstagram cplchef \n\ud83c\uddf0\ud83c\uddf2\ud83c\uddfe\ud83c\uddf9\ud83c\uddf2\ud83c\uddec","url":"https:\/\/t.co\/hMBMZJr9Yn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hMBMZJr9Yn","expanded_url":"https:\/\/instagram.com\/cplchef?igshid=1cg6iwr32ipw3","display_url":"instagram.com\/cplchef?igshid\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":9,"listed_count":0,"created_at":"Tue - Aug 21 11:57:54 +0000 2018","favourites_count":66,"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:\/\/pbs.twimg.com\/profile_images\/1229450510001938437\/_7-jlYi1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229450510001938437\/_7-jlYi1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1031873020757987328\/1580517101","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1158381042748682240,"id_str":"1158381042748682240","name":"encel8","screen_name":"encel81","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":7,"listed_count":0,"created_at":"Mon - Aug 05 14:15:37 +0000 2019","favourites_count":3,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 28 18:24:43 +0000 2020","id":1233458019373125632,"id_str":"1233458019373125632","text":"Chinese - fall due to #coronavirus #CoronaVirusUpdates #WuhanCoronavirus https:\/\/t.co\/7nlKI8n6zN","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[20,32]},{"text":"CoronaVirusUpdates","indices":[33,52]},{"text":"WuhanCoronavirus","indices":[53,70]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233457663889018884,"id_str":"1233457663889018884","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233457663889018884\/pu\/img\/UNUdCUhhpLswl4Et.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233457663889018884\/pu\/img\/UNUdCUhhpLswl4Et.jpg","url":"https:\/\/t.co\/7nlKI8n6zN","display_url":"pic.twitter.com\/7nlKI8n6zN","expanded_url":"https:\/\/twitter.com\/cplchef\/status\/1233458019373125632\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":640,"h":800,"resize":"fit"},"medium":{"w":640,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233457663889018884,"id_str":"1233457663889018884","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233457663889018884\/pu\/img\/UNUdCUhhpLswl4Et.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233457663889018884\/pu\/img\/UNUdCUhhpLswl4Et.jpg","url":"https:\/\/t.co\/7nlKI8n6zN","display_url":"pic.twitter.com\/7nlKI8n6zN","expanded_url":"https:\/\/twitter.com\/cplchef\/status\/1233458019373125632\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":640,"h":800,"resize":"fit"},"medium":{"w":640,"h":800,"resize":"fit"}},"video_info":{"aspect_ratio":[4,5],"duration_millis":14400,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233457663889018884\/pu\/pl\/BMxr63Y7YKmqRoIO.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233457663889018884\/pu\/vid\/360x450\/p_QHgAlrfqHbxuTu.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233457663889018884\/pu\/vid\/640x800\/GabYAbYGO0xrCRQ-.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233457663889018884\/pu\/vid\/320x400\/3iii_OJo8OkWTurZ.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1031873020757987328,"id_str":"1031873020757987328","name":"YO\u016eN\u018fS - \u018f\u0141 C\u0100PO \ud83c\uddf0\ud83c\uddf2\ud83c\uddf2\ud83c\uddec\ud83c\uddfe\ud83c\uddf9","screen_name":"cplchef","location":"Bretagne, - France","description":"Snapchat : cplchef \n\u2b50\nInstagram cplchef \n\ud83c\uddf0\ud83c\uddf2\ud83c\uddfe\ud83c\uddf9\ud83c\uddf2\ud83c\uddec","url":"https:\/\/t.co\/hMBMZJr9Yn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hMBMZJr9Yn","expanded_url":"https:\/\/instagram.com\/cplchef?igshid=1cg6iwr32ipw3","display_url":"instagram.com\/cplchef?igshid\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":9,"listed_count":0,"created_at":"Tue - Aug 21 11:57:54 +0000 2018","favourites_count":66,"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:\/\/pbs.twimg.com\/profile_images\/1229450510001938437\/_7-jlYi1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229450510001938437\/_7-jlYi1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1031873020757987328\/1580517101","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930222977026,"id_str":"1235859930222977026","text":"Que - heavy me parecen las medidas de seguridad del trabajo por la mierda del coronavirus.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":108344293,"id_str":"108344293","name":"Pers\u00e9fone.","screen_name":"Simplemente95","location":"221B - - \u03c8","description":"Tendr\u00eda que preguntarme qui\u00e9n soy para - acabar respondi\u00e9ndome que nadie. Y nadie abraza tan bien y quiere tan - fat\u00eddicamente mal, que todav\u00eda no s\u00e9 si quiero ser.","url":"https:\/\/t.co\/Bb1Md41wLt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Bb1Md41wLt","expanded_url":"http:\/\/instagram.com\/simplemente95","display_url":"instagram.com\/simplemente95","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":982,"friends_count":336,"listed_count":46,"created_at":"Mon - Jan 25 17:03:00 +0000 2010","favourites_count":481,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132875,"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\/607504812037578752\/u4PC8Ol__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607504812037578752\/u4PC8Ol__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108344293\/1547891015","profile_link_color":"F88A17","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930147504131,"id_str":"1235859930147504131","text":"Coronavirus - diagnosis closes Churston Ferrers church for deep clean: A school in the same - town of Churston Ferrers\u2026 https:\/\/t.co\/QxOhuJuZM0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QxOhuJuZM0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859930147504131","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2660218092,"id_str":"2660218092","name":"CITIZENS - for CHANGE\u2122 \ud83c\udf0a","screen_name":"cfcpac","location":"#ImpeachTrump","description":"https:\/\/t.co\/l0H1ZAkcFZ - #TheResistance","url":"https:\/\/t.co\/SZSgpsyDKw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SZSgpsyDKw","expanded_url":"http:\/\/www.cfcpac.org","display_url":"cfcpac.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/l0H1ZAkcFZ","expanded_url":"https:\/\/secure.actblue.com\/donate\/cfcpac","display_url":"secure.actblue.com\/donate\/cfcpac","indices":[0,23]}]}},"protected":false,"followers_count":3701,"friends_count":2640,"listed_count":71,"created_at":"Sat - Jul 19 19:01:01 +0000 2014","favourites_count":38048,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":333694,"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\/1234910204036354053\/oEA4LZzA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234910204036354053\/oEA4LZzA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2660218092\/1579614444","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859930004901895,"id_str":"1235859930004901895","text":"\u00abCoronavirus - policial\u00bb, el gui\u00f1o ling\u00fc\u00edstico usado por Jandro Lion - para encubrir el anuncio de una huelga ilegal de\u2026 https:\/\/t.co\/tvbeXzjANj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tvbeXzjANj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859930004901895","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":301594420,"id_str":"301594420","name":"Guanchi - \u2764\ud83d\udc9b\ud83d\udc9c","screen_name":"guanchi1","location":"","description":"''Caminante - no hay camino, se hace camino al andar''. Antonio Machado. Cuando el sabio - se\u00f1ala el cielo el idiota mira el dedo Confucio","url":"https:\/\/t.co\/urjP72h6V7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/urjP72h6V7","expanded_url":"https:\/\/www.rebelmouse.com\/guanchi1\/","display_url":"rebelmouse.com\/guanchi1\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8502,"friends_count":8150,"listed_count":105,"created_at":"Thu - May 19 18:42:59 +0000 2011","favourites_count":11290,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":336401,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544061470083121152\/KrbcAzNE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544061470083121152\/KrbcAzNE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301594420\/1467564870","profile_link_color":"2F8787","profile_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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859929870692352,"id_str":"1235859929870692352","text":"El - impacto del #coronavirus en la Administraci\u00f3n https:\/\/t.co\/EM2CGbAIjU - https:\/\/t.co\/9qRFBMi3qC","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[15,27]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EM2CGbAIjU","expanded_url":"http:\/\/dlvr.it\/RRM1tL","display_url":"dlvr.it\/RRM1tL","indices":[49,72]}],"media":[{"id":1235859926867570690,"id_str":"1235859926867570690","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDj0U8AIB7uj.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDj0U8AIB7uj.png","url":"https:\/\/t.co\/9qRFBMi3qC","display_url":"pic.twitter.com\/9qRFBMi3qC","expanded_url":"https:\/\/twitter.com\/sermarcosta\/status\/1235859929870692352\/photo\/1","type":"photo","sizes":{"medium":{"w":470,"h":720,"resize":"fit"},"small":{"w":444,"h":680,"resize":"fit"},"large":{"w":470,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1235859926867570690,"id_str":"1235859926867570690","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/ESaoDj0U8AIB7uj.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESaoDj0U8AIB7uj.png","url":"https:\/\/t.co\/9qRFBMi3qC","display_url":"pic.twitter.com\/9qRFBMi3qC","expanded_url":"https:\/\/twitter.com\/sermarcosta\/status\/1235859929870692352\/photo\/1","type":"photo","sizes":{"medium":{"w":470,"h":720,"resize":"fit"},"small":{"w":444,"h":680,"resize":"fit"},"large":{"w":470,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":992730906,"id_str":"992730906","name":"Sergio - Martinez","screen_name":"sermarcosta","location":"Valladolid, Espa\u00f1a","description":"Apasionado - de la fotograf\u00eda. Trabajando para la administraci\u00f3n. Estudiando - Derecho y corriendo maratones cuando me dejan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":132,"listed_count":2,"created_at":"Thu - Dec 06 09:45:01 +0000 2012","favourites_count":225,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2913,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2938864730\/ed5836d6b05cbf78dc4c3fa67a1caeb9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2938864730\/ed5836d6b05cbf78dc4c3fa67a1caeb9_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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859929828737032,"id_str":"1235859929828737032","text":"RT - @ali_noorani_teh: Main culprit in soread of coronavirus? Hands! Video made - by Saudi Arabia gives you an idea\n\nhttps:\/\/t.co\/CA9IJNEu1f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ali_noorani_teh","name":"Ali - Noorani","id":223019304,"id_str":"223019304","indices":[3,19]}],"urls":[],"media":[{"id":1235122486540480513,"id_str":"1235122486540480513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235122486540480513\/pu\/img\/44HbxzUqXsuqRdlz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235122486540480513\/pu\/img\/44HbxzUqXsuqRdlz.jpg","url":"https:\/\/t.co\/CA9IJNEu1f","display_url":"pic.twitter.com\/CA9IJNEu1f","expanded_url":"https:\/\/twitter.com\/MohsenZohouri\/status\/1235122883870875649\/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":1235122883870875649,"source_status_id_str":"1235122883870875649","source_user_id":945282901,"source_user_id_str":"945282901"}]},"extended_entities":{"media":[{"id":1235122486540480513,"id_str":"1235122486540480513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235122486540480513\/pu\/img\/44HbxzUqXsuqRdlz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235122486540480513\/pu\/img\/44HbxzUqXsuqRdlz.jpg","url":"https:\/\/t.co\/CA9IJNEu1f","display_url":"pic.twitter.com\/CA9IJNEu1f","expanded_url":"https:\/\/twitter.com\/MohsenZohouri\/status\/1235122883870875649\/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":1235122883870875649,"source_status_id_str":"1235122883870875649","source_user_id":945282901,"source_user_id_str":"945282901","video_info":{"aspect_ratio":[16,9],"duration_millis":50080,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235122486540480513\/pu\/vid\/480x270\/7ws3Sv3Zo8Mjag-m.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235122486540480513\/pu\/pl\/kCg9i_nSa4uA6EsA.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235122486540480513\/pu\/vid\/640x360\/AnwTSCmlq7VoGoeM.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1222540480539430913,"id_str":"1222540480539430913","name":"Maru","screen_name":"Maru43915362","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":24,"listed_count":0,"created_at":"Wed - Jan 29 15:22:52 +0000 2020","favourites_count":160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":410,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222541423997857793\/tibUVNyT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222541423997857793\/tibUVNyT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:34:34 +0000 2020","id":1235196940247126016,"id_str":"1235196940247126016","text":"Main - culprit in soread of coronavirus? Hands! Video made by Saudi Arabia gives - you an idea\n\nhttps:\/\/t.co\/CA9IJNEu1f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235122486540480513,"id_str":"1235122486540480513","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235122486540480513\/pu\/img\/44HbxzUqXsuqRdlz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235122486540480513\/pu\/img\/44HbxzUqXsuqRdlz.jpg","url":"https:\/\/t.co\/CA9IJNEu1f","display_url":"pic.twitter.com\/CA9IJNEu1f","expanded_url":"https:\/\/twitter.com\/MohsenZohouri\/status\/1235122883870875649\/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":1235122883870875649,"source_status_id_str":"1235122883870875649","source_user_id":945282901,"source_user_id_str":"945282901"}]},"extended_entities":{"media":[{"id":1235122486540480513,"id_str":"1235122486540480513","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235122486540480513\/pu\/img\/44HbxzUqXsuqRdlz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235122486540480513\/pu\/img\/44HbxzUqXsuqRdlz.jpg","url":"https:\/\/t.co\/CA9IJNEu1f","display_url":"pic.twitter.com\/CA9IJNEu1f","expanded_url":"https:\/\/twitter.com\/MohsenZohouri\/status\/1235122883870875649\/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":1235122883870875649,"source_status_id_str":"1235122883870875649","source_user_id":945282901,"source_user_id_str":"945282901","video_info":{"aspect_ratio":[16,9],"duration_millis":50080,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235122486540480513\/pu\/vid\/480x270\/7ws3Sv3Zo8Mjag-m.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235122486540480513\/pu\/pl\/kCg9i_nSa4uA6EsA.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235122486540480513\/pu\/vid\/640x360\/AnwTSCmlq7VoGoeM.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223019304,"id_str":"223019304","name":"Ali - Noorani","screen_name":"ali_noorani_teh","location":"Tokyo-to, Japan","description":"Specialist - at @NHKWorld_News. Geek. Verification enthusiast. Past: AFP reporter in Tehran. - Talks about Japan and Iran. views personal.","url":"https:\/\/t.co\/uqNTNfkWPA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uqNTNfkWPA","expanded_url":"https:\/\/muckrack.com\/ali-noorani","display_url":"muckrack.com\/ali-noorani","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4024,"friends_count":983,"listed_count":216,"created_at":"Sun - Dec 05 04:12:02 +0000 2010","favourites_count":19643,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13540,"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\/1207102825697705986\/1pUMmPOW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207102825697705986\/1pUMmPOW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223019304\/1556171273","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":48,"favorite_count":61,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":48,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859929686130693,"id_str":"1235859929686130693","text":"RT - @OliveYorffegson: \"Le minist\u00e8re d\u00e9cide de supprimer le \"handcheck\" - au d\u00e9but des matchs de handball en raison du coronavirus.\"\n\nLe handch\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OliveYorffegson","name":"Dr - Olive","id":342640602,"id_str":"342640602","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284059292,"id_str":"3284059292","name":"K1J","screen_name":"rqrGuillaume","location":"Coutances - | BDX | BCN","description":"salet\u00e9 de rap","url":"https:\/\/t.co\/RLgSRgzUQV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RLgSRgzUQV","expanded_url":"https:\/\/Instagram.com\/guillaumerqr\/","display_url":"Instagram.com\/guillaumerqr\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":205,"friends_count":270,"listed_count":1,"created_at":"Sun - Jul 19 06:20:08 +0000 2015","favourites_count":10236,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3383,"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\/1132765520330219521\/T8IrQu42_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1132765520330219521\/T8IrQu42_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284059292\/1542978377","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 17:15:35 +0000 2020","id":1235252562707787787,"id_str":"1235252562707787787","text":"\"Le - minist\u00e8re d\u00e9cide de supprimer le \"handcheck\" au d\u00e9but des - matchs de handball en raison du coronavirus.\"\n\nLe han\u2026 https:\/\/t.co\/9tZk4paWRw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9tZk4paWRw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235252562707787787","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":342640602,"id_str":"342640602","name":"Dr - Olive","screen_name":"OliveYorffegson","location":"Paris","description":"M\u00e9decin - Remplacant en IdF. Il est bien plus beau de savoir quelque chose de tout que - tout de quelque chose - Blaise Pascal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1663,"friends_count":251,"listed_count":27,"created_at":"Tue - Jul 26 10:33:04 +0000 2011","favourites_count":756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3701,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3581457682\/ed37c54e881d3f22835a6f92eb8d2aa2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3581457682\/ed37c54e881d3f22835a6f92eb8d2aa2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/342640602\/1367076647","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4749,"favorite_count":18921,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":4749,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:03 +0000 2020","id":1235859929560305665,"id_str":"1235859929560305665","text":"Jean-Paul - Agon : \u00ab\u00a0En Chine, gr\u00e2ce \u00e0 l\u2019e-commerce, l\u2019activit\u00e9 - de L\u2019Or\u00e9al n\u2019est pas du tout \u00e0 z\u00e9ro\u00a0\u00bb, - malgr\u00e9 le coro\u2026 https:\/\/t.co\/5mtOI2Srpg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5mtOI2Srpg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859929560305665","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":946712149782654977,"id_str":"946712149782654977","name":"UEMF - Euromed F\u00e8s","screen_name":"UEMFes","location":"http:\/\/www.ueuromed.org","description":"https:\/\/t.co\/2BtkftVqMf\n\nUniversit\u00e9 - Euromed de F\u00e8s Feed","url":"https:\/\/t.co\/2BtkftVqMf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2BtkftVqMf","expanded_url":"http:\/\/www.ueuromed.org","display_url":"ueuromed.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/2BtkftVqMf","expanded_url":"http:\/\/www.ueuromed.org","display_url":"ueuromed.org","indices":[0,23]}]}},"protected":false,"followers_count":204,"friends_count":572,"listed_count":2,"created_at":"Fri - Dec 29 11:59:00 +0000 2017","favourites_count":80,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"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\/946718468468027392\/nu07RiIG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/946718468468027392\/nu07RiIG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/946712149782654977\/1514550497","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859929342169088,"id_str":"1235859929342169088","text":"RT - @eduardomoreira: O coronav\u00edrus esta causando p\u00e2nico porque ainda - n\u00e3o foi controlado e ja matou algumas milhares de pessoas. Imagina quan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eduardomoreira","name":"Eduardo - Moreira","id":65749516,"id_str":"65749516","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197138645,"id_str":"197138645","name":"Leonardo - Mota","screen_name":"Leon_Mota","location":"Natal\/RN","description":"Odont\u00f3logo, - especialista em Endodontia e Auditoria em Sistemas de Sa\u00fade.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":754,"friends_count":1047,"listed_count":13,"created_at":"Thu - Sep 30 18:59:28 +0000 2010","favourites_count":50934,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":59442,"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\/1192106668554883072\/KvDRGuaI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192106668554883072\/KvDRGuaI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197138645\/1573055397","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"360736","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 03:05:31 +0000 2020","id":1235763414120771584,"id_str":"1235763414120771584","text":"O - coronav\u00edrus esta causando p\u00e2nico porque ainda n\u00e3o foi controlado - e ja matou algumas milhares de pessoas. Imagina\u2026 https:\/\/t.co\/fNG5PtGKXF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fNG5PtGKXF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235763414120771584","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65749516,"id_str":"65749516","name":"Eduardo - Moreira","screen_name":"eduardomoreira","location":"Sao Paulo, Brazil","description":"Autor - dos bestsellers (#1 Brasil) Desigualdade, O que os donos do poder n\u00e3o - querem que voc\u00ea saiba e Encantadores de Vidas. Eleito pela \u00c9poca - 40 under 40 Brasil","url":"https:\/\/t.co\/caN5NatX1m","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/caN5NatX1m","expanded_url":"http:\/\/www.edumoreira.com.br","display_url":"edumoreira.com.br","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":73794,"friends_count":48,"listed_count":172,"created_at":"Fri - Aug 14 22:10:31 +0000 2009","favourites_count":2697,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":948,"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\/1059865960956473345\/udlEMeAR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1059865960956473345\/udlEMeAR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65749516\/1541526679","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":287,"favorite_count":1352,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":287,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859929216348160,"id_str":"1235859929216348160","text":"RT - @tcabarrus: Il n''y a que les journalistes des #telestoutinfo pour monter - une #mayonnaise autour de la question: \"va-t-on devoir suspendr\u2026","truncated":false,"entities":{"hashtags":[{"text":"telestoutinfo","indices":[49,63]},{"text":"mayonnaise","indices":[80,91]}],"symbols":[],"user_mentions":[{"screen_name":"tcabarrus","name":"de - Cabarrus Thierry","id":338955445,"id_str":"338955445","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1220356277047582722,"id_str":"1220356277047582722","name":"LEROUX - Alexis","screen_name":"LEROUXAlexis14","location":"","description":"J''aime - LA BAULE @","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":18,"listed_count":0,"created_at":"Thu - Jan 23 14:43:18 +0000 2020","favourites_count":1070,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1073,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220356747564658694\/kdxe-Zy0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220356747564658694\/kdxe-Zy0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 16:16:20 +0000 2020","id":1235600038165983232,"id_str":"1235600038165983232","text":"Il - n''y a que les journalistes des #telestoutinfo pour monter une #mayonnaise - autour de la question: \"va-t-on devoir\u2026 https:\/\/t.co\/Fem2tdIHbS","truncated":true,"entities":{"hashtags":[{"text":"telestoutinfo","indices":[34,48]},{"text":"mayonnaise","indices":[65,76]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Fem2tdIHbS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235600038165983232","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":338955445,"id_str":"338955445","name":"de - Cabarrus Thierry","screen_name":"tcabarrus","location":"La Rochelle, France","description":"Apr\u00e8s - 44 ans de journalisme \"objectif\" (carte de presse N\u00b035183), je reprends - ma libert\u00e9 et j''abandonne une neutralit\u00e9 confortable. Ex chroniqueur - sur Le Plus","url":"http:\/\/t.co\/jCPDWQxnKV","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/jCPDWQxnKV","expanded_url":"http:\/\/leplus.nouvelobs.com\/thierrydecabarrus","display_url":"leplus.nouvelobs.com\/thierrydecabar\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":17083,"friends_count":1375,"listed_count":163,"created_at":"Wed - Jul 20 10:53:05 +0000 2011","favourites_count":47852,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":53201,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/950675778718588928\/Z0Sq02ft_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/950675778718588928\/Z0Sq02ft_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338955445\/1405277484","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":88,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":47,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859929178595328,"id_str":"1235859929178595328","text":"Coronavirus: - 300m children out of school, says UNESCO https:\/\/t.co\/nA4iol5kyY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nA4iol5kyY","expanded_url":"http:\/\/dlvr.it\/RRM1yV","display_url":"dlvr.it\/RRM1yV","indices":[54,77]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":126733638,"id_str":"126733638","name":"P.M. - NEWS","screen_name":"pmnewsnigeria","location":"Lagos, Nigeria","description":"First - with Nigerian News.","url":"http:\/\/t.co\/ovNc5CUuHz","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ovNc5CUuHz","expanded_url":"http:\/\/pmnewsnigeria.com","display_url":"pmnewsnigeria.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":510258,"friends_count":231,"listed_count":770,"created_at":"Fri - Mar 26 20:38:00 +0000 2010","favourites_count":312,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":242430,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBE8D9","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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876912811\/PM-News-logo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876912811\/PM-News-logo_normal.png","profile_link_color":"DC251F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EAD3AF","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928910163969,"id_str":"1235859928910163969","text":"RT - @spectatorindex: JUST IN: First case of coronavirus in the Vatican","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"spectatorindex","name":"The - Spectator Index","id":1626294277,"id_str":"1626294277","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1226967026,"id_str":"1226967026","name":"Kaushik - Kumar Nath \ud83c\uddee\ud83c\uddf3\ud83c\uddfa\ud83c\uddf8","screen_name":"KKNath26","location":"Kolkata, - India","description":"Civil Engineer. Cricket \ud83c\udfcf Football \u26bd - Analysis. Supporter of @narendramodi, @BCCI, @ICC, @IPL, @msdhoni, @ImVkohli, - @BJP4India, @WhiteHouse, @FCBarcelona","url":"https:\/\/t.co\/2tIZszqG9u","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2tIZszqG9u","expanded_url":"http:\/\/Instagram.com\/kaushik5986","display_url":"Instagram.com\/kaushik5986","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1483,"friends_count":228,"listed_count":7,"created_at":"Thu - Feb 28 07:32:55 +0000 2013","favourites_count":361905,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":377248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228188685788540928\/Lhhby5eb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228188685788540928\/Lhhby5eb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226967026\/1582560750","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:26:44 +0000 2020","id":1235859347273420806,"id_str":"1235859347273420806","text":"JUST - IN: First case of coronavirus in the Vatican","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1626294277,"id_str":"1626294277","name":"The - Spectator Index","screen_name":"spectatorindex","location":"Global","description":"Watching - the world. Focused on politics, economics, science and sports. Message us - for business inquiries.","url":"https:\/\/t.co\/JKoXedtrxE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JKoXedtrxE","expanded_url":"http:\/\/spectatorindex.com","display_url":"spectatorindex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":712924,"friends_count":0,"listed_count":10919,"created_at":"Sat - Jul 27 20:42:27 +0000 2013","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40730,"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\/1145865652533547008\/XBahoZmX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145865652533547008\/XBahoZmX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1626294277\/1430626667","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":134,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":71,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928889212930,"id_str":"1235859928889212930","text":"@BrandTaylor - @GreatDismal that''s just what''s currently problematic around the world other - than coronavirus\u2014or long-\u2026 https:\/\/t.co\/J0l9qouOhw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrandTaylor","name":"Mike - Taylor","id":128544350,"id_str":"128544350","indices":[0,12]},{"screen_name":"GreatDismal","name":"William - Gibson","id":28049003,"id_str":"28049003","indices":[13,25]}],"urls":[{"url":"https:\/\/t.co\/J0l9qouOhw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859928889212930","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1235849076974878721,"in_reply_to_status_id_str":"1235849076974878721","in_reply_to_user_id":128544350,"in_reply_to_user_id_str":"128544350","in_reply_to_screen_name":"BrandTaylor","user":{"id":12571722,"id_str":"12571722","name":"vaughn - tan","screen_name":"vaughn_tan","location":"London","description":"I study - innovation and uncertainty, sometimes in food and drink. Weekly newsletter: - https:\/\/t.co\/38TxYLOPxB","url":"https:\/\/t.co\/gx3aPPJOZm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gx3aPPJOZm","expanded_url":"https:\/\/vaughntan.org\/about","display_url":"vaughntan.org\/about","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/38TxYLOPxB","expanded_url":"http:\/\/uncertaintymindset.substack.com","display_url":"uncertaintymindset.substack.com","indices":[84,107]}]}},"protected":false,"followers_count":1762,"friends_count":619,"listed_count":45,"created_at":"Wed - Jan 23 00:24:00 +0000 2008","favourites_count":877,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3879,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"46505C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1809892004\/madmen_fullbody2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1809892004\/madmen_fullbody2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12571722\/1413409947","profile_link_color":"B52A03","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3EDEC","profile_text_color":"1E1D10","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928889176064,"id_str":"1235859928889176064","text":"RT - @_SofiAlmeida_: Eu \u00e1 espera que a escola feche devido ao Coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_SofiAlmeida_","name":"\ud835\udc7a\ud835\udc90\ud835\udc87\ud835\udc8a\ud835\udc82 - \ud835\udc68\ud835\udc8d\ud835\udc8e\ud835\udc86\ud835\udc8a\ud835\udc85\ud835\udc82","id":1226803785596575744,"id_str":"1226803785596575744","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1004121434300534785,"id_str":"1004121434300534785","name":"malvadeza","screen_name":"lapeize","location":"Piracicaba, - Brasil","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":309,"listed_count":0,"created_at":"Tue - Jun 05 22:03:00 +0000 2018","favourites_count":1738,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2188,"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\/1234638851416698880\/S-b7f8Ic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234638851416698880\/S-b7f8Ic_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1004121434300534785\/1583195858","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:17:57 +0000 2020","id":1235192758870200326,"id_str":"1235192758870200326","text":"Eu - \u00e1 espera que a escola feche devido ao Coronavirus https:\/\/t.co\/kW9Q96rE3N","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kW9Q96rE3N","expanded_url":"https:\/\/twitter.com\/BomboclaatThis\/status\/1223682126429741059","display_url":"twitter.com\/BomboclaatThis\u2026","indices":[53,76]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1226803785596575744,"id_str":"1226803785596575744","name":"\ud835\udc7a\ud835\udc90\ud835\udc87\ud835\udc8a\ud835\udc82 - \ud835\udc68\ud835\udc8d\ud835\udc8e\ud835\udc86\ud835\udc8a\ud835\udc85\ud835\udc82","screen_name":"_SofiAlmeida_","location":"Porto, - Portugal","description":"4580\ud83d\udccd| 15y | ig: sofia__almeida_","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":34,"listed_count":0,"created_at":"Mon - Feb 10 09:43:25 +0000 2020","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235238590931705857\/zx__2XQ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235238590931705857\/zx__2XQ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226803785596575744\/1583242769","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1223682126429741059,"quoted_status_id_str":"1223682126429741059","quoted_status":{"created_at":"Sat - Feb 01 18:58:48 +0000 2020","id":1223682126429741059,"id_str":"1223682126429741059","text":"Bomboclaat - https:\/\/t.co\/L2F1lEiwKa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1223682112441802752,"id_str":"1223682112441802752","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/EPtkZd4X4AAn1Aq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPtkZd4X4AAn1Aq.jpg","url":"https:\/\/t.co\/L2F1lEiwKa","display_url":"pic.twitter.com\/L2F1lEiwKa","expanded_url":"https:\/\/twitter.com\/KheyDeter2\/status\/1223682126429741059\/photo\/1","type":"photo","sizes":{"large":{"w":946,"h":2048,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1223682112441802752,"id_str":"1223682112441802752","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/EPtkZd4X4AAn1Aq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPtkZd4X4AAn1Aq.jpg","url":"https:\/\/t.co\/L2F1lEiwKa","display_url":"pic.twitter.com\/L2F1lEiwKa","expanded_url":"https:\/\/twitter.com\/KheyDeter2\/status\/1223682126429741059\/photo\/1","type":"photo","sizes":{"large":{"w":946,"h":2048,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1134631085277626368,"id_str":"1134631085277626368","name":"BomboclaatThis","screen_name":"BomboclaatThis","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17732,"friends_count":153,"listed_count":46,"created_at":"Sat - Jun 01 01:21:45 +0000 2019","favourites_count":125,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":711,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185228198302408707\/kneUa79T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185228198302408707\/kneUa79T_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":455,"favorite_count":4159,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"retweet_count":12146,"favorite_count":15290,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":true,"quoted_status_id":1223682126429741059,"quoted_status_id_str":"1223682126429741059","retweet_count":12146,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928872448002,"id_str":"1235859928872448002","text":"RT - @hyxnswoo: moi qui combat le coronavirus \ud83d\udd2a\ud83d\ude20 https:\/\/t.co\/CIqdN2vdWe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hyxnswoo","name":"steph","id":890237199588962305,"id_str":"890237199588962305","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4024190775,"id_str":"4024190775","name":"hi - my name is V \u2077","screen_name":"BTSinYourMind","location":"Wherever BTS - is \ud83c\udf0e \ud83d\udcab","description":"find yourself \u2014 stream mots:7","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":319,"friends_count":320,"listed_count":14,"created_at":"Fri - Oct 23 12:50:41 +0000 2015","favourites_count":55206,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23603,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233084835771691014\/Rlr_g24__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233084835771691014\/Rlr_g24__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4024190775\/1582825360","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 20:35:32 +0000 2020","id":1235665270095532034,"id_str":"1235665270095532034","text":"moi - qui combat le coronavirus \ud83d\udd2a\ud83d\ude20 https:\/\/t.co\/BGderC5XLg - https:\/\/t.co\/CIqdN2vdWe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BGderC5XLg","expanded_url":"https:\/\/twitter.com\/hyxnswoo\/status\/1235651404640837632","display_url":"twitter.com\/hyxnswoo\/statu\u2026","indices":[33,56]}],"media":[{"id":1235665030479327235,"id_str":"1235665030479327235","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235665030479327235\/pu\/img\/fTAbAbMm9J_v2gpK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235665030479327235\/pu\/img\/fTAbAbMm9J_v2gpK.jpg","url":"https:\/\/t.co\/CIqdN2vdWe","display_url":"pic.twitter.com\/CIqdN2vdWe","expanded_url":"https:\/\/twitter.com\/hyxnswoo\/status\/1235665270095532034\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":624,"h":1232,"resize":"fit"},"small":{"w":344,"h":680,"resize":"fit"},"medium":{"w":608,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235665030479327235,"id_str":"1235665030479327235","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235665030479327235\/pu\/img\/fTAbAbMm9J_v2gpK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235665030479327235\/pu\/img\/fTAbAbMm9J_v2gpK.jpg","url":"https:\/\/t.co\/CIqdN2vdWe","display_url":"pic.twitter.com\/CIqdN2vdWe","expanded_url":"https:\/\/twitter.com\/hyxnswoo\/status\/1235665270095532034\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":624,"h":1232,"resize":"fit"},"small":{"w":344,"h":680,"resize":"fit"},"medium":{"w":608,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[39,77],"duration_millis":33388,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235665030479327235\/pu\/pl\/Xf6Ef7P_9gvK_7p0.m3u8?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235665030479327235\/pu\/vid\/320x630\/X4PuhV8XagVa1mXS.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235665030479327235\/pu\/vid\/360x710\/7vbeomu727YPqAIp.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235665030479327235\/pu\/vid\/624x1232\/szuq4IulY1yig7UK.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":890237199588962305,"id_str":"890237199588962305","name":"steph","screen_name":"hyxnswoo","location":"sunwoo - hyunjin","description":"#\uc120\uc6b0: i\u2019m so happy to see you!! i\u2019m - very happy because you love me! \u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":540,"friends_count":513,"listed_count":13,"created_at":"Wed - Jul 26 15:47:43 +0000 2017","favourites_count":45164,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11940,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235732242418348033\/-cScLO09_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235732242418348033\/-cScLO09_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/890237199588962305\/1576667730","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235651404640837632,"quoted_status_id_str":"1235651404640837632","quoted_status":{"created_at":"Thu - Mar 05 19:40:26 +0000 2020","id":1235651404640837632,"id_str":"1235651404640837632","text":"50 - like et je poste mon dance cover ici mm si g fais des fautes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":890237199588962305,"id_str":"890237199588962305","name":"steph","screen_name":"hyxnswoo","location":"sunwoo - hyunjin","description":"#\uc120\uc6b0: i\u2019m so happy to see you!! i\u2019m - very happy because you love me! \u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":540,"friends_count":513,"listed_count":13,"created_at":"Wed - Jul 26 15:47:43 +0000 2017","favourites_count":45164,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11940,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235732242418348033\/-cScLO09_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235732242418348033\/-cScLO09_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/890237199588962305\/1576667730","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":63,"favorited":false,"retweeted":false,"lang":"fr"},"retweet_count":334,"favorite_count":1060,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1235651404640837632,"quoted_status_id_str":"1235651404640837632","retweet_count":334,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928843079680,"id_str":"1235859928843079680","text":"Amerika - Birle\u015fik Devletleri''nin ba\u015fkenti Washington''da ilk koronavir\u00fcs - ma\u011fazas\u0131 a\u00e7\u0131ld\u0131. Ma\u011fazada maskeler, cerrahi\u2026 - https:\/\/t.co\/L0k8ql0aO2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/L0k8ql0aO2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859928843079680","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"result_type":"recent","iso_language_code":"tr"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30516581,"id_str":"30516581","name":"Feryat - Ben","screen_name":"FeryatBen","location":"\u00dcT: 51.249862,29.077097","description":"Bir - c\u00fcmleden ibaretim.","url":"https:\/\/t.co\/6LSzZjrDtw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6LSzZjrDtw","expanded_url":"http:\/\/about.me\/FeryatBen","display_url":"about.me\/FeryatBen","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10940,"friends_count":465,"listed_count":75,"created_at":"Sat - Apr 11 20:25:00 +0000 2009","favourites_count":401,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":345593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"080808","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\/1216617590\/marty-mcfly-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216617590\/marty-mcfly-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30516581\/1397051924","profile_link_color":"F20909","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"211D1E","profile_text_color":"FF7605","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928817909761,"id_str":"1235859928817909761","text":"RT - @InfosFrancaises: COVID-19 : BILAN - Plus de 98000 cas confirm\u00e9s, 3359 - morts dans 86 pays et 54000 gu\u00e9ris. \nLa situation mondiale \u00e0 23H3\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"InfosFrancaises","name":"Infos - Fran\u00e7aises","id":4061586491,"id_str":"4061586491","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3958387403,"id_str":"3958387403","name":"Nervy","screen_name":"Miss_Nervy","location":"Au - QG des Avengers","description":"Gameuse ~ Cr\u00e9atrice ~ Philosophe parfois - ~ \u00c9crivaine ~ R\u00f4leplayeuse.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":170,"listed_count":14,"created_at":"Wed - Oct 14 19:06:35 +0000 2015","favourites_count":18592,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20036,"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\/1223540114112073728\/1M0ic7Ce_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223540114112073728\/1M0ic7Ce_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3958387403\/1572740062","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 22:37:19 +0000 2020","id":1235695917363351558,"id_str":"1235695917363351558","text":"COVID-19 - : BILAN - Plus de 98000 cas confirm\u00e9s, 3359 morts dans 86 pays et 54000 - gu\u00e9ris. \nLa situation mondiale \u00e0 2\u2026 https:\/\/t.co\/C1aTo9oNEv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C1aTo9oNEv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235695917363351558","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1235694012603998213,"in_reply_to_status_id_str":"1235694012603998213","in_reply_to_user_id":4061586491,"in_reply_to_user_id_str":"4061586491","in_reply_to_screen_name":"InfosFrancaises","user":{"id":4061586491,"id_str":"4061586491","name":"Infos - Fran\u00e7aises","screen_name":"InfosFrancaises","location":"Monde entier","description":"L''essentiel - de l''actualit\u00e9 internationale et principalement fran\u00e7aise.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60232,"friends_count":1952,"listed_count":611,"created_at":"Wed - Oct 28 15:52:01 +0000 2015","favourites_count":37,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24273,"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\/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\/1179815845691871232\/3r4J-x3d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179815845691871232\/3r4J-x3d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4061586491\/1575580386","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":109,"favorite_count":138,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":109,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928708821000,"id_str":"1235859928708821000","text":"Coronavirus: - no te toques los ojos \nMi alergia: https:\/\/t.co\/nWblJ6i4Rr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235859916646010881,"id_str":"1235859916646010881","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESaoC9vUUAEMkft.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESaoC9vUUAEMkft.jpg","url":"https:\/\/t.co\/nWblJ6i4Rr","display_url":"pic.twitter.com\/nWblJ6i4Rr","expanded_url":"https:\/\/twitter.com\/SorlaC47\/status\/1235859928708821000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":250,"resize":"fit"},"medium":{"w":240,"h":250,"resize":"fit"},"large":{"w":240,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859916646010881,"id_str":"1235859916646010881","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESaoC9vUUAEMkft.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESaoC9vUUAEMkft.jpg","url":"https:\/\/t.co\/nWblJ6i4Rr","display_url":"pic.twitter.com\/nWblJ6i4Rr","expanded_url":"https:\/\/twitter.com\/SorlaC47\/status\/1235859928708821000\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":250,"resize":"fit"},"medium":{"w":240,"h":250,"resize":"fit"},"large":{"w":240,"h":250,"resize":"fit"}},"video_info":{"aspect_ratio":[24,25],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/ESaoC9vUUAEMkft.mp4"}]}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20157890,"id_str":"20157890","name":"Carlos","screen_name":"SorlaC47","location":"","description":"Harder. - Better. Faster. Stronger. #Mamba4Life\n@xblyed:https:\/\/t.co\/MJvy8RVbTO","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/MJvy8RVbTO","expanded_url":"http:\/\/matrix.org","display_url":"matrix.org","indices":[54,77]}]}},"protected":false,"followers_count":81,"friends_count":69,"listed_count":1,"created_at":"Thu - Feb 05 15:46:01 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"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\/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\/567030493162385408\/yw6Zpo0-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567030493162385408\/yw6Zpo0-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20157890\/1433954140","profile_link_color":"EA6363","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"242424","profile_text_color":"B9B9B9","profile_use_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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928675258371,"id_str":"1235859928675258371","text":"RT - @BradHolt: Washington, D.C., Gets Its First Coronavirus Pop-up Shop https:\/\/t.co\/7JkO5IeeWt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BradHolt","name":"BradHolt","id":15935963,"id_str":"15935963","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/7JkO5IeeWt","expanded_url":"http:\/\/dlvr.it\/RRM1Fm","display_url":"dlvr.it\/RRM1Fm","indices":[71,94]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15935963,"id_str":"15935963","name":"BradHolt","screen_name":"BradHolt","location":"Texas, - USA","description":"Partner -The Options Edge * Editor of https:\/\/t.co\/Z1uecdDKTA - * Option Trader * \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/Gic5xypPE9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Gic5xypPE9","expanded_url":"http:\/\/www.theoptionsedge.com","display_url":"theoptionsedge.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Z1uecdDKTA","expanded_url":"http:\/\/theoptionsedge.com","display_url":"theoptionsedge.com","indices":[38,61]}]}},"protected":false,"followers_count":192,"friends_count":138,"listed_count":25,"created_at":"Thu - Aug 21 19:53:01 +0000 2008","favourites_count":607,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38266,"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\/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\/888829664336138240\/LbeoL7HA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/888829664336138240\/LbeoL7HA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15935963\/1511897832","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:24:32 +0000 2020","id":1235858794250264578,"id_str":"1235858794250264578","text":"Washington, - D.C., Gets Its First Coronavirus Pop-up Shop https:\/\/t.co\/7JkO5IeeWt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7JkO5IeeWt","expanded_url":"http:\/\/dlvr.it\/RRM1Fm","display_url":"dlvr.it\/RRM1Fm","indices":[57,80]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15935963,"id_str":"15935963","name":"BradHolt","screen_name":"BradHolt","location":"Texas, - USA","description":"Partner -The Options Edge * Editor of https:\/\/t.co\/Z1uecdDKTA - * Option Trader * \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/Gic5xypPE9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Gic5xypPE9","expanded_url":"http:\/\/www.theoptionsedge.com","display_url":"theoptionsedge.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Z1uecdDKTA","expanded_url":"http:\/\/theoptionsedge.com","display_url":"theoptionsedge.com","indices":[38,61]}]}},"protected":false,"followers_count":192,"friends_count":138,"listed_count":25,"created_at":"Thu - Aug 21 19:53:01 +0000 2008","favourites_count":607,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38266,"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\/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\/888829664336138240\/LbeoL7HA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/888829664336138240\/LbeoL7HA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15935963\/1511897832","profile_link_color":"1B95E0","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"},"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928599810049,"id_str":"1235859928599810049","text":"RT - @MariettaDaviz: Do as I say, not as I do. \ud83d\ude0f\n#coronavirus\n#COVID\u30fc19\n#ThursdayThoughts - https:\/\/t.co\/aKe2X0Fovn","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[47,59]},{"text":"COVID\u30fc19","indices":[60,69]},{"text":"ThursdayThoughts","indices":[70,87]}],"symbols":[],"user_mentions":[{"screen_name":"MariettaDaviz","name":"Marietta","id":276452562,"id_str":"276452562","indices":[3,17]}],"urls":[],"media":[{"id":1235627880467632129,"id_str":"1235627880467632129","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235627880467632129\/pu\/img\/AtzYugYXtv4pApc7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235627880467632129\/pu\/img\/AtzYugYXtv4pApc7.jpg","url":"https:\/\/t.co\/aKe2X0Fovn","display_url":"pic.twitter.com\/aKe2X0Fovn","expanded_url":"https:\/\/twitter.com\/nkosibooi\/status\/1235627900616966145\/video\/1","type":"photo","sizes":{"small":{"w":460,"h":460,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":460,"h":460,"resize":"fit"},"large":{"w":460,"h":460,"resize":"fit"}},"source_status_id":1235627900616966145,"source_status_id_str":"1235627900616966145","source_user_id":400159752,"source_user_id_str":"400159752"}]},"extended_entities":{"media":[{"id":1235627880467632129,"id_str":"1235627880467632129","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235627880467632129\/pu\/img\/AtzYugYXtv4pApc7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235627880467632129\/pu\/img\/AtzYugYXtv4pApc7.jpg","url":"https:\/\/t.co\/aKe2X0Fovn","display_url":"pic.twitter.com\/aKe2X0Fovn","expanded_url":"https:\/\/twitter.com\/nkosibooi\/status\/1235627900616966145\/video\/1","type":"video","sizes":{"small":{"w":460,"h":460,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":460,"h":460,"resize":"fit"},"large":{"w":460,"h":460,"resize":"fit"}},"source_status_id":1235627900616966145,"source_status_id_str":"1235627900616966145","source_user_id":400159752,"source_user_id_str":"400159752","video_info":{"aspect_ratio":[1,1],"duration_millis":19880,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235627880467632129\/pu\/vid\/320x320\/WiB_1U7b33_sZLmY.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235627880467632129\/pu\/pl\/fc7_-Ir_KdLYpmDh.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235627880467632129\/pu\/vid\/460x460\/0_32_I8PBAaJL1c5.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":575712981,"id_str":"575712981","name":"pete","screen_name":"copdkid","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":255,"friends_count":109,"listed_count":8,"created_at":"Wed - May 09 19:54:23 +0000 2012","favourites_count":195616,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24523,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000481506897\/ae0a2b066a12d8a6c08182ec2328fde6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000481506897\/ae0a2b066a12d8a6c08182ec2328fde6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/575712981\/1379263259","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 23:56:39 +0000 2020","id":1235715882086625280,"id_str":"1235715882086625280","text":"Do - as I say, not as I do. \ud83d\ude0f\n#coronavirus\n#COVID\u30fc19\n#ThursdayThoughts - https:\/\/t.co\/aKe2X0Fovn","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]},{"text":"COVID\u30fc19","indices":[41,50]},{"text":"ThursdayThoughts","indices":[51,68]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235627880467632129,"id_str":"1235627880467632129","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235627880467632129\/pu\/img\/AtzYugYXtv4pApc7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235627880467632129\/pu\/img\/AtzYugYXtv4pApc7.jpg","url":"https:\/\/t.co\/aKe2X0Fovn","display_url":"pic.twitter.com\/aKe2X0Fovn","expanded_url":"https:\/\/twitter.com\/nkosibooi\/status\/1235627900616966145\/video\/1","type":"photo","sizes":{"small":{"w":460,"h":460,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":460,"h":460,"resize":"fit"},"large":{"w":460,"h":460,"resize":"fit"}},"source_status_id":1235627900616966145,"source_status_id_str":"1235627900616966145","source_user_id":400159752,"source_user_id_str":"400159752"}]},"extended_entities":{"media":[{"id":1235627880467632129,"id_str":"1235627880467632129","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235627880467632129\/pu\/img\/AtzYugYXtv4pApc7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235627880467632129\/pu\/img\/AtzYugYXtv4pApc7.jpg","url":"https:\/\/t.co\/aKe2X0Fovn","display_url":"pic.twitter.com\/aKe2X0Fovn","expanded_url":"https:\/\/twitter.com\/nkosibooi\/status\/1235627900616966145\/video\/1","type":"video","sizes":{"small":{"w":460,"h":460,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":460,"h":460,"resize":"fit"},"large":{"w":460,"h":460,"resize":"fit"}},"source_status_id":1235627900616966145,"source_status_id_str":"1235627900616966145","source_user_id":400159752,"source_user_id_str":"400159752","video_info":{"aspect_ratio":[1,1],"duration_millis":19880,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235627880467632129\/pu\/vid\/320x320\/WiB_1U7b33_sZLmY.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235627880467632129\/pu\/pl\/fc7_-Ir_KdLYpmDh.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235627880467632129\/pu\/vid\/460x460\/0_32_I8PBAaJL1c5.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":276452562,"id_str":"276452562","name":"Marietta","screen_name":"MariettaDaviz","location":" - \u2661","description":"I Can Tell People Are Judgmental\nJust By Looking At - Them.","url":"https:\/\/t.co\/lftTbJlQ90","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lftTbJlQ90","expanded_url":"http:\/\/chng.it\/CjnZNtHK","display_url":"chng.it\/CjnZNtHK","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":115321,"friends_count":97994,"listed_count":301,"created_at":"Sun - Apr 03 11:33:01 +0000 2011","favourites_count":85183,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8571,"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\/1219468057279713280\/NVDru7ib_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219468057279713280\/NVDru7ib_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276452562\/1575253818","profile_link_color":"112255","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":206,"favorite_count":364,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":206,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928469794817,"id_str":"1235859928469794817","text":"\u26ab\u26ab\u26ab - Fallece un paciente de coronavirus ingresado en el Hospital de Zaragoza\n\nhttps:\/\/t.co\/0o4Bg4XmG6 - v\u00eda @eldigitalCLM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eldigitalCLM","name":"EL - DIGITAL CLM","id":474099871,"id_str":"474099871","indices":[105,118]}],"urls":[{"url":"https:\/\/t.co\/0o4Bg4XmG6","expanded_url":"https:\/\/www.eldigitalcastillalamancha.es\/actualidad\/186653657\/Fallece-un-paciente-de-coronavirus-ingresado-en-el-Hospital-de-Zaragoza.html","display_url":"eldigitalcastillalamancha.es\/actualidad\/186\u2026","indices":[77,100]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":474099871,"id_str":"474099871","name":"EL - DIGITAL CLM","screen_name":"eldigitalCLM","location":"Castilla-La Mancha","description":"El - peri\u00f3dico digital de Castilla-La Mancha. Actualidad, sucesos, opini\u00f3n, - deportes y mucho m\u00e1s. S\u00edguenos tambi\u00e9n en Facebook e Instagram.","url":"https:\/\/t.co\/Qy0z1LTPPl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qy0z1LTPPl","expanded_url":"http:\/\/www.eldigitalcastillalamancha.es","display_url":"eldigitalcastillalamancha.es","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20462,"friends_count":2055,"listed_count":318,"created_at":"Wed - Jan 25 17:09:20 +0000 2012","favourites_count":4528,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":107368,"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\/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\/1176505878813560832\/wvqp1gWC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176505878813560832\/wvqp1gWC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474099871\/1581180600","profile_link_color":"0C6E97","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928100659207,"id_str":"1235859928100659207","text":"Le - CoROnaVirUS TuE MOinS QUe La GRIpPe \ud83e\udd2a https:\/\/t.co\/A3Nqs4ksb5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A3Nqs4ksb5","expanded_url":"https:\/\/twitter.com\/DrDenaGrayson\/status\/1235674258858061825","display_url":"twitter.com\/DrDenaGrayson\/\u2026","indices":[41,64]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630433139,"id_str":"630433139","name":"riley","screen_name":"Manu_le_Coq","location":"Martinique, - Fort-de-France","description":"#InterMilan #Ozil disciple d''Alvaro Recoba","url":"https:\/\/t.co\/3jZAm1kgqW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3jZAm1kgqW","expanded_url":"https:\/\/www.youtube.com\/watch?v=MJaDF3KSpZs","display_url":"youtube.com\/watch?v=MJaDF3\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":455,"listed_count":0,"created_at":"Sun - Jul 08 18:48:27 +0000 2012","favourites_count":18670,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8311,"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\/1233550343457452033\/4sKytDVf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233550343457452033\/4sKytDVf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630433139\/1529369814","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235674258858061825,"quoted_status_id_str":"1235674258858061825","quoted_status":{"created_at":"Thu - Mar 05 21:11:15 +0000 2020","id":1235674258858061825,"id_str":"1235674258858061825","text":"\u26a0\ufe0fChinese - doctors say autopsies of #coronavirus victims suggest that #COVID19 is \u201clike - a combination of #SARS and\u2026 https:\/\/t.co\/913CbO2fWq","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[35,47]},{"text":"COVID19","indices":[69,77]},{"text":"SARS","indices":[104,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/913CbO2fWq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235674258858061825","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1651522832,"id_str":"1651522832","name":"Dr. - Dena Grayson","screen_name":"DrDenaGrayson","location":"Florida","description":"Former - Democratic candidate for U.S. Congress, physician (MD) and scientist (PhD). - Expert on #Ebola and other #pandemic threats. Media inquiries: 323-252-7722.","url":"https:\/\/t.co\/5BmBFaFyit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5BmBFaFyit","expanded_url":"http:\/\/denagrayson.com","display_url":"denagrayson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":235665,"friends_count":333,"listed_count":1527,"created_at":"Tue - Aug 06 23:34:40 +0000 2013","favourites_count":157602,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":63737,"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\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1651522832\/1541350200","profile_link_color":"0000E5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8804,"favorite_count":8441,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859928041918465,"id_str":"1235859928041918465","text":"RT - @cahepo: Se est\u00e1n sacando las cosas de contexto con el Coronavirus. No - es justo que se est\u00e9n planteando suspender nuestra formaci\u00f3n como\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cahepo","name":"Sr. - Hern\u00e1ndez","id":775086568579145728,"id_str":"775086568579145728","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1472851836,"id_str":"1472851836","name":"DaveEzro","screen_name":"DaveEzro","location":"EESSSPPPA\u00d1\u00d1\u00d1IIIAA","description":"\ud83d\udca9Cuenta - de mierda, de mierdas...de mierda\/\n\ud83c\udf9b\ufe0fAgo musica: @MuscaiOfficial\/\n\ud83c\udfacYoutuber - de in\u00e9xito\/\n\ud83d\udcaaSkill: no escuchar cuando me hablan :)","url":"https:\/\/t.co\/MMaJz21X77","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MMaJz21X77","expanded_url":"https:\/\/www.youtube.com\/channel\/UCRWYuoX8yOHpA4XtPgRPwGA","display_url":"youtube.com\/channel\/UCRWYu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":438,"listed_count":0,"created_at":"Fri - May 31 19:12:15 +0000 2013","favourites_count":400,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":611,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BCD2DB","profile_background_image_url":"http:\/\/abs.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\/1235686555848716293\/32IiE8zU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235686555848716293\/32IiE8zU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1472851836\/1582889987","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 17:59:52 +0000 2020","id":1235626095254417409,"id_str":"1235626095254417409","text":"Se - est\u00e1n sacando las cosas de contexto con el Coronavirus. No es justo que - se est\u00e9n planteando suspender nuestra fo\u2026 https:\/\/t.co\/bPO3msqkxQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bPO3msqkxQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235626095254417409","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":775086568579145728,"id_str":"775086568579145728","name":"Sr. - Hern\u00e1ndez","screen_name":"cahepo","location":"Salamanca, Espa\u00f1a","description":"Estudiante - de Medicina en la USAL\ud83d\udc89\ud83d\udc89\n\nSuerte es tenerte \ud83c\udf40 - L\u2764","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":93,"listed_count":0,"created_at":"Sun - Sep 11 21:40:13 +0000 2016","favourites_count":156,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775088833213980672\/8zs744We_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775088833213980672\/8zs744We_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/775086568579145728\/1473631010","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859927945469953,"id_str":"1235859927945469953","text":"RT - @RajivKrishnaS: Pls follow precautions reg #CoronaVirus #COVID19 issued by - @MoHFW_INDIA. Avoid big crowds, stay home if sick, be respons\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[46,58]},{"text":"COVID19","indices":[59,67]}],"symbols":[],"user_mentions":[{"screen_name":"RajivKrishnaS","name":"S. - Rajiv Krishna","id":54607146,"id_str":"54607146","indices":[3,17]},{"screen_name":"MoHFW_INDIA","name":"Ministry - of Health","id":2596143056,"id_str":"2596143056","indices":[78,90]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":161055868,"id_str":"161055868","name":"PV - Ramesh","screen_name":"RameshPV2010","location":"Amaravati, India","description":"Physician-Public - Servant; Development Professional; Former UNOPS \/ UNFPA\/ IFAD staff. Ex-CMD - REC Ltd. Addl Chief Secretary to @AndhraPradeshCM. Personal Account","url":"https:\/\/t.co\/hWSJ7jolOK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hWSJ7jolOK","expanded_url":"https:\/\/www.ap.gov.in","display_url":"ap.gov.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7506,"friends_count":1428,"listed_count":52,"created_at":"Tue - Jun 29 21:42:42 +0000 2010","favourites_count":2199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14900,"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\/635291704472395776\/1_T-NXZ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635291704472395776\/1_T-NXZ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161055868\/1564829607","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 06:15:32 +0000 2020","id":1235811232898146305,"id_str":"1235811232898146305","text":"Pls - follow precautions reg #CoronaVirus #COVID19 issued by @MoHFW_INDIA. Avoid - big crowds, stay home if sick, be re\u2026 https:\/\/t.co\/sjBhMDzxEm","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[27,39]},{"text":"COVID19","indices":[40,48]}],"symbols":[],"user_mentions":[{"screen_name":"MoHFW_INDIA","name":"Ministry - of Health","id":2596143056,"id_str":"2596143056","indices":[59,71]}],"urls":[{"url":"https:\/\/t.co\/sjBhMDzxEm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235811232898146305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54607146,"id_str":"54607146","name":"S. - Rajiv Krishna","screen_name":"RajivKrishnaS","location":"Vijayawada, India","description":"Advisor - to Govt of AP @AndhraPradeshCM \/ Secretary & Spokesperson @YSRCParty \/ Former - Investment Banker \/ UPenn @Penn & HPS @HpsBegumpet Grad \/ Jai Hind Jai AP","url":"https:\/\/t.co\/xS8ZtwrCNY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xS8ZtwrCNY","expanded_url":"http:\/\/www.facebook.com\/srajivkrishna","display_url":"facebook.com\/srajivkrishna","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8634,"friends_count":253,"listed_count":13,"created_at":"Tue - Jul 07 17:01:06 +0000 2009","favourites_count":1984,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7994,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1072506217321390082\/6xMRRv0P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1072506217321390082\/6xMRRv0P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54607146\/1435226715","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859927744131073,"id_str":"1235859927744131073","text":"@Navymat - Non ce que vous dites est faux. Le coronavirus n\u2019est pas une grippe. - Vous voulez un cours de m\u00e9decine ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Navymat","name":"YM","id":354827087,"id_str":"354827087","indices":[0,8]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235857956555522048,"in_reply_to_status_id_str":"1235857956555522048","in_reply_to_user_id":354827087,"in_reply_to_user_id_str":"354827087","in_reply_to_screen_name":"Navymat","user":{"id":879319311785091074,"id_str":"879319311785091074","name":"Une2nous","screen_name":"Une2nous","location":"","description":"\u201cIl - y a bien moins de difficult\u00e9s \u00e0 r\u00e9soudre un probl\u00e8me, - qu\u2019\u00e0 le poser\u201d J. de M.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1520,"friends_count":1391,"listed_count":21,"created_at":"Mon - Jun 26 12:43:55 +0000 2017","favourites_count":34983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18065,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879330839217274880\/gJ_JgJbY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879330839217274880\/gJ_JgJbY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/879319311785091074\/1542147121","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859927383437316,"id_str":"1235859927383437316","text":"RT - @WFLA: Is your meth contaminated with coronavirus? This Florida police dept. - will test it for free https:\/\/t.co\/gMbeqKzWcC https:\/\/t.co\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WFLA","name":"WFLA - NEWS","id":23820899,"id_str":"23820899","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/gMbeqKzWcC","expanded_url":"https:\/\/bit.ly\/39q4BnF","display_url":"bit.ly\/39q4BnF","indices":[102,125]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1622166636,"id_str":"1622166636","name":"EggHead - Lord \ud83e\udd5a","screen_name":"trang_dtran","location":"","description":"190103 - \/ Hentai with Senpai","url":"https:\/\/t.co\/YJiSinXPS7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YJiSinXPS7","expanded_url":"http:\/\/howtogrowthefuckup.com\/","display_url":"howtogrowthefuckup.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":679,"listed_count":1,"created_at":"Fri - Jul 26 06:14:50 +0000 2013","favourites_count":102168,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8755,"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\/1163385181698318336\/pK4syxXg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163385181698318336\/pK4syxXg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1622166636\/1578291681","profile_link_color":"94D487","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:12:56 +0000 2020","id":1235221696883326976,"id_str":"1235221696883326976","text":"Is - your meth contaminated with coronavirus? This Florida police dept. will test - it for free https:\/\/t.co\/gMbeqKzWcC https:\/\/t.co\/xzt8utNSW2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gMbeqKzWcC","expanded_url":"https:\/\/bit.ly\/39q4BnF","display_url":"bit.ly\/39q4BnF","indices":[92,115]}],"media":[{"id":1235221606311620610,"id_str":"1235221606311620610","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRjgacXcAIzfFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRjgacXcAIzfFn.jpg","url":"https:\/\/t.co\/xzt8utNSW2","display_url":"pic.twitter.com\/xzt8utNSW2","expanded_url":"https:\/\/twitter.com\/WFLA\/status\/1235221696883326976\/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":1500,"h":844,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235221606311620610,"id_str":"1235221606311620610","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRjgacXcAIzfFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRjgacXcAIzfFn.jpg","url":"https:\/\/t.co\/xzt8utNSW2","display_url":"pic.twitter.com\/xzt8utNSW2","expanded_url":"https:\/\/twitter.com\/WFLA\/status\/1235221696883326976\/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":1500,"h":844,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23820899,"id_str":"23820899","name":"WFLA - NEWS","screen_name":"WFLA","location":"Tampa, FL","description":"WFLA News - Channel 8 is a news leader in Tampa Bay.","url":"http:\/\/t.co\/t1F5QuwuGx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/t1F5QuwuGx","expanded_url":"http:\/\/www.wfla.com","display_url":"wfla.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":148787,"friends_count":2335,"listed_count":1553,"created_at":"Wed - Mar 11 20:14:10 +0000 2009","favourites_count":4920,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":167229,"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\/918919492859809794\/sKRQQLUV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918919492859809794\/sKRQQLUV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23820899\/1568040360","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41241,"favorite_count":122282,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":41241,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859927194689536,"id_str":"1235859927194689536","text":"\u0e23\u0e1e.\u0e2b\u0e32\u0e14\u0e43\u0e2b\u0e0d\u0e48\u0e1b\u0e23\u0e30\u0e01\u0e32\u0e28\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e02\u0e48\u0e32\u0e27\u0e25\u0e37\u0e2d\u0e44\u0e27\u0e23\u0e31\u0e2a\u0e42\u0e04\u0e27\u0e34\u0e1419 - \u0e40\u0e15\u0e23\u0e35\u0e22\u0e21\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e04\u0e14\u0e35\u0e01\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e48\u0e32\u0e27\u0e25\u0e37\u0e2d\n#\u0e44\u0e27\u0e23\u0e31\u0e2a\u0e42\u0e04\u0e42\u0e23\u0e19\u0e48\u0e32 - #\u0e42\u0e04\u0e27\u0e34\u0e1419 #COVID19\u2026 https:\/\/t.co\/6RzO07gk3N","truncated":true,"entities":{"hashtags":[{"text":"\u0e44\u0e27\u0e23\u0e31\u0e2a\u0e42\u0e04\u0e42\u0e23\u0e19\u0e48\u0e32","indices":[79,92]},{"text":"\u0e42\u0e04\u0e27\u0e34\u0e1419","indices":[93,101]},{"text":"COVID19","indices":[102,110]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6RzO07gk3N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859927194689536","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50916567,"id_str":"50916567","name":"NationTV22","screen_name":"NationTV22","location":"Thailand","description":"Official - twitter of NationTV \u0e17\u0e27\u0e34\u0e15\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e02\u0e2d\u0e07\u0e2a\u0e16\u0e32\u0e19\u0e35\u0e42\u0e17\u0e23\u0e17\u0e31\u0e28\u0e19\u0e4c\u0e40\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e17\u0e35\u0e27\u0e35 - \u0e0a\u0e48\u0e2d\u0e07 22 \u0e14\u0e39\u0e2a\u0e14\u0e46\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48 - https:\/\/t.co\/klT1RsJWkE","url":"https:\/\/t.co\/6Q9XJKcgDh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Q9XJKcgDh","expanded_url":"https:\/\/www.nationtv.tv\/","display_url":"nationtv.tv","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/klT1RsJWkE","expanded_url":"http:\/\/www.nationtv.tv\/main\/live\/","display_url":"nationtv.tv\/main\/live\/","indices":[89,112]}]}},"protected":false,"followers_count":2480461,"friends_count":299,"listed_count":2292,"created_at":"Fri - Jun 26 04:11:22 +0000 2009","favourites_count":564,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":512753,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215191170222919682\/GVYbfGGB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215191170222919682\/GVYbfGGB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50916567\/1578559139","profile_link_color":"28579E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859927131811840,"id_str":"1235859927131811840","text":"RT - @TheFinalGed: 74.2% of over 70\u2019s registered voters voted for Brexit. - \n\n70.1% of over 70\u2019s registered voters voted Conservative. \n\n79% - o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheFinalGed","name":"\ud835\ude4f\ud835\ude5d\ud835\ude5a\ud835\ude41\ud835\ude5e\ud835\ude63\ud835\ude56\ud835\ude61\ud835\ude42\ud835\ude5a\ud835\ude59","id":1166694195899326464,"id_str":"1166694195899326464","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":205635153,"id_str":"205635153","name":"jamie","screen_name":"jamieson89","location":"L66 - merseyside ","description":"labour supporter. dog owner. lfc. finished completely","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":432,"friends_count":765,"listed_count":8,"created_at":"Thu - Oct 21 08:58:59 +0000 2010","favourites_count":5416,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20654,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1045191681203728384\/P42_cTNh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1045191681203728384\/P42_cTNh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/205635153\/1576971151","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 08:07:59 +0000 2020","id":1235839528641781760,"id_str":"1235839528641781760","text":"74.2% - of over 70\u2019s registered voters voted for Brexit. \n\n70.1% of over 70\u2019s - registered voters voted Conservative.\u2026 https:\/\/t.co\/mymvVfcY3I","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mymvVfcY3I","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235839528641781760","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1166694195899326464,"id_str":"1166694195899326464","name":"\ud835\ude4f\ud835\ude5d\ud835\ude5a\ud835\ude41\ud835\ude5e\ud835\ude63\ud835\ude56\ud835\ude61\ud835\ude42\ud835\ude5a\ud835\ude59","screen_name":"TheFinalGed","location":"Liverpool","description":"You - pick the place and I''ll choose the time ........ and I''ll climb The hill - in my own way, just wait a while, for the right day","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7113,"friends_count":579,"listed_count":5,"created_at":"Wed - Aug 28 12:49:15 +0000 2019","favourites_count":15189,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19759,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224704023229554694\/2SkKzAo7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224704023229554694\/2SkKzAo7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1166694195899326464\/1579529820","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":70,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859927102447616,"id_str":"1235859927102447616","text":"RT - @_nasir_ahmad_: \"Don''t touch your mouth, nose or eyes.\"\n\n*Puts finger - on tongue*\n\nNicely practiced mam!\n\n#coronavirus https:\/\/t.co\/JUYsY\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[108,120]}],"symbols":[],"user_mentions":[{"screen_name":"_nasir_ahmad_","name":"Nasir - Ahmad","id":1024667364,"id_str":"1024667364","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":973193341155364864,"id_str":"973193341155364864","name":"ProTom - #GGUltra #Verfassungsfreund","screen_name":"Provokateur_Tom","location":"Ein - Bett im Kornfeld","description":"Politisch heimatloser Linksliberaler \/\n\nEuropatriot - \/\n\nGGUltra \/\n\nImmer eins mehr wie du \/\n\nGl\u00fccklicher Ehemann - \/\n\nI have approximate knowledge of many things","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1691,"friends_count":1386,"listed_count":5,"created_at":"Mon - Mar 12 13:45:48 +0000 2018","favourites_count":50423,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34319,"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\/1232241904273829893\/ILRJ1gsJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232241904273829893\/ILRJ1gsJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/973193341155364864\/1520870269","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:27:32 +0000 2020","id":1235859551628353541,"id_str":"1235859551628353541","text":"\"Don''t - touch your mouth, nose or eyes.\"\n\n*Puts finger on tongue*\n\nNicely practiced - mam!\n\n#coronavirus https:\/\/t.co\/JUYsYP0URy","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[89,101]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235859521391587330,"id_str":"1235859521391587330","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235859521391587330\/pu\/img\/aPIq9PbshDmp2kbS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235859521391587330\/pu\/img\/aPIq9PbshDmp2kbS.jpg","url":"https:\/\/t.co\/JUYsYP0URy","display_url":"pic.twitter.com\/JUYsYP0URy","expanded_url":"https:\/\/twitter.com\/_nasir_ahmad_\/status\/1235859551628353541\/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":1235859521391587330,"id_str":"1235859521391587330","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235859521391587330\/pu\/img\/aPIq9PbshDmp2kbS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235859521391587330\/pu\/img\/aPIq9PbshDmp2kbS.jpg","url":"https:\/\/t.co\/JUYsYP0URy","display_url":"pic.twitter.com\/JUYsYP0URy","expanded_url":"https:\/\/twitter.com\/_nasir_ahmad_\/status\/1235859551628353541\/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":14233,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235859521391587330\/pu\/vid\/480x270\/qqS1IE74kenUe2CP.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235859521391587330\/pu\/pl\/59TvvGFJub1P946Q.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235859521391587330\/pu\/vid\/640x360\/rmPEABdhRY6DPbZh.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235859521391587330\/pu\/vid\/1280x720\/Uk0UGxe8vmacwx1Z.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1024667364,"id_str":"1024667364","name":"Nasir - Ahmad","screen_name":"_nasir_ahmad_","location":"Irgendwo in Hessen","description":"Deutscher - \u2022 Muslim \u2022 Poet \u2022 Migrant \u2022 Publizist \u2022 Blogger \u2022 - Vater \u2022 #Antifa = Antifaschismus","url":"https:\/\/t.co\/uljSoMjB2s","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uljSoMjB2s","expanded_url":"https:\/\/ich-bin-muslim-vertrau-mir.de\/","display_url":"ich-bin-muslim-vertrau-mir.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":14449,"friends_count":520,"listed_count":69,"created_at":"Thu - Dec 20 17:31:49 +0000 2012","favourites_count":51707,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":34142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"EFEFEF","profile_background_image_url":"http:\/\/abs.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\/1231284397967597570\/ee7mTLh6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231284397967597570\/ee7mTLh6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1024667364\/1581426634","profile_link_color":"000000","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"},"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"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859927052062726,"id_str":"1235859927052062726","text":"RT - @Covid19Ph: Just couldn''t see any urgency from persons-in-charge... We should - never let our guard down and just take care of our own sel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Covid19Ph","name":"Covid19 - Philippines | Novel Corona Virus Updates","id":1233209494080913409,"id_str":"1233209494080913409","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":786571826314878976,"id_str":"786571826314878976","name":"NekoCat","screen_name":"Neko_Catleya","location":"Manila","description":"Loves - reading manga&c-novels.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":236,"friends_count":149,"listed_count":2,"created_at":"Thu - Oct 13 14:18:32 +0000 2016","favourites_count":19167,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3014,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222426525171011584\/5AOE_lYo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222426525171011584\/5AOE_lYo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/786571826314878976\/1499920653","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 07:49:22 +0000 2020","id":1235834845244219392,"id_str":"1235834845244219392","text":"Just - couldn''t see any urgency from persons-in-charge... We should never let our - guard down and just take care of ou\u2026 https:\/\/t.co\/fLCtDzx3JZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fLCtDzx3JZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235834845244219392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1233209494080913409,"id_str":"1233209494080913409","name":"Covid19 - Philippines | Novel Corona Virus Updates","screen_name":"Covid19Ph","location":"Philippines","description":"Reminder: - Hand washing. Maintaining distance from people who are coughing. Do not touch - one''s face with unclean hands. Cover nose&mouth when coughing\/sneezing.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":0,"listed_count":1,"created_at":"Fri - Feb 28 01:57:19 +0000 2020","favourites_count":9,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233211705968062464\/xX_x3oU1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233211705968062464\/xX_x3oU1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1233209494080913409\/1582887528","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859927039533056,"id_str":"1235859927039533056","text":"RT - @tropical_boy: #HopitalPublic #coronavirus #LREM #Veran #COVID\u30fc19 #gouvernement - #EnMarche #stade2 #Macron #NDiaye \n\n\ud83e\udd21 Quoi de plus norma\u2026","truncated":false,"entities":{"hashtags":[{"text":"HopitalPublic","indices":[18,32]},{"text":"coronavirus","indices":[33,45]},{"text":"LREM","indices":[46,51]},{"text":"Veran","indices":[52,58]},{"text":"COVID\u30fc19","indices":[59,68]},{"text":"gouvernement","indices":[69,82]},{"text":"EnMarche","indices":[83,92]},{"text":"stade2","indices":[93,100]},{"text":"Macron","indices":[101,108]},{"text":"NDiaye","indices":[109,116]}],"symbols":[],"user_mentions":[{"screen_name":"tropical_boy","name":"\ud83c\udf3a - \ud835\udde7\ud835\uddff\ud835\uddfc\ud835\uddfd\ud835\uddf6\ud835\uddf0\ud835\uddee\ud835\uddf9 - \ud835\uddd5\ud835\uddfc\ud835\ude06 \ud83c\udf3a","id":450667485,"id_str":"450667485","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":765611971,"id_str":"765611971","name":"Poussardin - Laurent","screen_name":"lopou06","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":127,"listed_count":2,"created_at":"Sat - Aug 18 12:18:09 +0000 2012","favourites_count":2140,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13106,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 23:04:16 +0000 2020","id":1235702700437909505,"id_str":"1235702700437909505","text":"#HopitalPublic - #coronavirus #LREM #Veran #COVID\u30fc19 #gouvernement #EnMarche #stade2 #Macron - #NDiaye \n\n\ud83e\udd21 Quoi de plus\u2026 https:\/\/t.co\/0ZqiRJN4LP","truncated":true,"entities":{"hashtags":[{"text":"HopitalPublic","indices":[0,14]},{"text":"coronavirus","indices":[15,27]},{"text":"LREM","indices":[28,33]},{"text":"Veran","indices":[34,40]},{"text":"COVID\u30fc19","indices":[41,50]},{"text":"gouvernement","indices":[51,64]},{"text":"EnMarche","indices":[65,74]},{"text":"stade2","indices":[75,82]},{"text":"Macron","indices":[83,90]},{"text":"NDiaye","indices":[91,98]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0ZqiRJN4LP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235702700437909505","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":450667485,"id_str":"450667485","name":"\ud83c\udf3a - \ud835\udde7\ud835\uddff\ud835\uddfc\ud835\uddfd\ud835\uddf6\ud835\uddf0\ud835\uddee\ud835\uddf9 - \ud835\uddd5\ud835\uddfc\ud835\ude06 \ud83c\udf3a","screen_name":"tropical_boy","location":"\ud835\ude3e\ud835\ude64\ud835\ude65\ud835\ude6e\ud835\ude6c\ud835\ude67\ud835\ude5e\ud835\ude69\ud835\ude5a\ud835\ude67 - \ud835\ude52\ud835\ude5a\ud835\ude57","description":"\ud83d\udd34 Espace - de \ud835\uddff\ud835\udc1e\ud835\ude00\ud835\uddf6\ud835\ude00\ud835\ude01@\ud835\uddfb\ud835\uddf0\ud835\uddf2 - face \u00e0 la propagande des m\u00e9dias mainstream\n\ud83c\udfaf Compte - traqu\u00e9 par les trolls #extremacronards enrag\u00e9s ! \ud83d\ude37","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37306,"friends_count":1117,"listed_count":177,"created_at":"Fri - Dec 30 14:24:15 +0000 2011","favourites_count":55200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92568,"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\/1202368052953829376\/nRaOkaSW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202368052953829376\/nRaOkaSW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/450667485\/1579304462","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":366,"favorite_count":653,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":366,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859926741733377,"id_str":"1235859926741733377","text":"Kick-off - meeting in times of #coronavirus. \n\u201dI\u2018m really thrilled about the - great ambitions our members are showing\u2026 https:\/\/t.co\/XkgNKzVV5u","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[29,41]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XkgNKzVV5u","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859926741733377","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":855031412524765185,"id_str":"855031412524765185","name":"International - Data Spaces Association","screen_name":"ids_association","location":"Dortmund, - Deutschland","description":"#InternationalDataSpaces \u2013 a standard for - #DataSovereignty and an indispensable element of #DataSharing Ecosystems","url":"https:\/\/t.co\/x1eH4DYbyo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/x1eH4DYbyo","expanded_url":"http:\/\/www.internationaldataspaces.org","display_url":"internationaldataspaces.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":955,"friends_count":361,"listed_count":18,"created_at":"Thu - Apr 20 12:12:29 +0000 2017","favourites_count":1732,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1264,"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\/987288232101588992\/mbINmDVH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/987288232101588992\/mbINmDVH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/855031412524765185\/1581940325","profile_link_color":"009EE0","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859926720765952,"id_str":"1235859926720765952","text":"RT - @hsharifain: The Kabah and the Mataaf a few minutes ago.\n\n#coronavirus #\u0645\u0643\u0647_\u0627\u0644\u0627\u0646 - https:\/\/t.co\/UYGOdo2qxv","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[61,73]},{"text":"\u0645\u0643\u0647_\u0627\u0644\u0627\u0646","indices":[74,83]}],"symbols":[],"user_mentions":[{"screen_name":"hsharifain","name":"Haramain - Sharifain","id":3200376049,"id_str":"3200376049","indices":[3,14]}],"urls":[],"media":[{"id":1235859257628561410,"id_str":"1235859257628561410","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/ESancmtUEAIseLx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESancmtUEAIseLx.jpg","url":"https:\/\/t.co\/UYGOdo2qxv","display_url":"pic.twitter.com\/UYGOdo2qxv","expanded_url":"https:\/\/twitter.com\/hsharifain\/status\/1235859270828081154\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1235859270828081154,"source_status_id_str":"1235859270828081154","source_user_id":3200376049,"source_user_id_str":"3200376049"}]},"extended_entities":{"media":[{"id":1235859257628561410,"id_str":"1235859257628561410","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/ESancmtUEAIseLx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESancmtUEAIseLx.jpg","url":"https:\/\/t.co\/UYGOdo2qxv","display_url":"pic.twitter.com\/UYGOdo2qxv","expanded_url":"https:\/\/twitter.com\/hsharifain\/status\/1235859270828081154\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1235859270828081154,"source_status_id_str":"1235859270828081154","source_user_id":3200376049,"source_user_id_str":"3200376049"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3320342459,"id_str":"3320342459","name":"Abshir - (kata) Issack","screen_name":"IssackAbshir","location":"","description":"Law~Finance~Tax","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":318,"friends_count":99,"listed_count":0,"created_at":"Fri - Jun 12 05:55:06 +0000 2015","favourites_count":7896,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2152,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215293659383574529\/SCOB5oNa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215293659383574529\/SCOB5oNa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320342459\/1539055927","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:26:25 +0000 2020","id":1235859270828081154,"id_str":"1235859270828081154","text":"The - Kabah and the Mataaf a few minutes ago.\n\n#coronavirus #\u0645\u0643\u0647_\u0627\u0644\u0627\u0646 - https:\/\/t.co\/UYGOdo2qxv","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[45,57]},{"text":"\u0645\u0643\u0647_\u0627\u0644\u0627\u0646","indices":[58,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235859257628561410,"id_str":"1235859257628561410","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/ESancmtUEAIseLx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESancmtUEAIseLx.jpg","url":"https:\/\/t.co\/UYGOdo2qxv","display_url":"pic.twitter.com\/UYGOdo2qxv","expanded_url":"https:\/\/twitter.com\/hsharifain\/status\/1235859270828081154\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235859257628561410,"id_str":"1235859257628561410","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/ESancmtUEAIseLx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESancmtUEAIseLx.jpg","url":"https:\/\/t.co\/UYGOdo2qxv","display_url":"pic.twitter.com\/UYGOdo2qxv","expanded_url":"https:\/\/twitter.com\/hsharifain\/status\/1235859270828081154\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3200376049,"id_str":"3200376049","name":"Haramain - Sharifain","screen_name":"hsharifain","location":"","description":"Bringing - you news from inside the Haramain","url":"https:\/\/t.co\/AL36fcxPl8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AL36fcxPl8","expanded_url":"http:\/\/www.haramainsharifain.com","display_url":"haramainsharifain.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2119,"friends_count":36,"listed_count":0,"created_at":"Sun - May 17 10:23:23 +0000 2015","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136730476260024320\/YmJdihKD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136730476260024320\/YmJdihKD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3200376049\/1482217124","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859926716563458,"id_str":"1235859926716563458","text":"The - Trump administration \u2018brain drain\u2019 is impeding the coronavirus response - https:\/\/t.co\/rWCo3qEj5k","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rWCo3qEj5k","expanded_url":"https:\/\/www.theguardian.com\/world\/2020\/mar\/06\/coronavirus-trump-administration-brain-drain-impeding-response?utm_source=dlvr.it&utm_medium=twitter","display_url":"theguardian.com\/world\/2020\/mar\u2026","indices":[76,99]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":21581503,"id_str":"21581503","name":"Guardian - Science","screen_name":"guardianscience","location":"London","description":"Science, - health and environment news from the @Guardian. Plus, independent comment - and analysis from our network of expert science bloggers","url":"http:\/\/t.co\/9gqqJjrZsc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9gqqJjrZsc","expanded_url":"http:\/\/www.theguardian.com\/science","display_url":"theguardian.com\/science","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1071181,"friends_count":2202,"listed_count":15277,"created_at":"Sun - Feb 22 17:43:35 +0000 2009","favourites_count":121,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":39016,"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\/1061911132284354560\/k66AKcdk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1061911132284354560\/k66AKcdk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21581503\/1542014294","profile_link_color":"005789","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CAE3F3","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859926594932742,"id_str":"1235859926594932742","text":"RT - @otakulawyer: \u30b3\u30ed\u30ca\u30a6\u30a3\u30eb\u30b9\u611f\u67d3\u75c7\u3092\u7591\u3046\u75c7\u4f8b\u306b\u5bfe\u3057\u3001\u7a4d\u6975\u7684\u306b\u691c\u67fb\u3092\u884c\u3063\u3066\u3044\u305f\u30a4\u30bf\u30ea\u30a2\u3067\u533b\u7642\u95a2\u4fc2\u8005\u306b\u611f\u67d3\u8005\u304c\u5897\u3048\u3066\u533b\u7642\u304c\u5d29\u58ca\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u5831\u9053\u3002\u770b\u8b77\u5e2b\u306e\u5352\u696d\u7e70\u308a\u4e0a\u3052\u3001\u5f15\u9000\u3057\u305f\u533b\u5e2b\u306e\u73fe\u5f79\u5fa9\u5e30\u3001\u4e0d\u6025\u306e\u624b\u8853\u5ef6\u671f\u306a\u3069\u306e\u4e8b\u614b\u306b\u3002\n\nhttps:\/\/t.co\/4Cs6E1\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"otakulawyer","name":"\u5c71\u53e3\u8cb4\u58eb - aka\u7121\u99c4\u306b\u611f\u3058\u304c\u60aa\u3044\u30e4\u30de\u30d9\u30f3","id":107693215,"id_str":"107693215","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":250127934,"id_str":"250127934","name":"imagawa - natsumi","screen_name":"natsuyasumi_ima","location":"\u9154\u62f3\u306e\u90fd","description":"\u534a\u7aef\u306a\u304a\u3068\u306a\u3002\u97f3\u697d\u3001\u8a69\u6b4c\u3001\u6b74\u53f2\u3001\u91ce\u7403\u3001\u30e9\u30b8\u30aa\u3001\u7b49\u3092\u5e83\u304f\u6d45\u304f\u611b\u597d\u3002\u6d3b\u5b57\u597d\u304d\u3002\u30cb\u30d9\u30a2\u30af\u30ea\u30fc\u30e0\u3068\u604b\u611b\u4e2d\u3002\u597d\u304d\u653e\u984c\u3057\u3066\u308b\u98df\u3044\u3057\u3093\u574a\u306e\u9152\u5451\u307f\u3002\u30a2\u30ea\u3067\u306f\u306a\u304f\u30ad\u30ea\u30ae\u30ea\u30b9\u30fb\u30af\u30e9\u30b9\u30bf\u6240\u5c5e\u3002\u30c4\u30a4\u30fc\u30c8\u306e\u5927\u534a\u304c\u300c\u7720\u3044\u300d\u3068\u300c\u304a\u306a\u304b\u3059\u3044\u305f\u300d\u3067\u69cb\u6210\u3055\u308c\u308b\u3002\u30d8\u30c3\u30c0\u30fc\u306f - @4t1e0n1116 \u3055\u3093\u306b\u66f8\u3044\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":690,"friends_count":517,"listed_count":24,"created_at":"Thu - Feb 10 13:43:57 +0000 2011","favourites_count":72718,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":98246,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"93B8E6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1124968996363575301\/rb5y1pgQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1124968996363575301\/rb5y1pgQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250127934\/1402204429","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 02:24:17 +0000 2020","id":1235753036489691136,"id_str":"1235753036489691136","text":"\u30b3\u30ed\u30ca\u30a6\u30a3\u30eb\u30b9\u611f\u67d3\u75c7\u3092\u7591\u3046\u75c7\u4f8b\u306b\u5bfe\u3057\u3001\u7a4d\u6975\u7684\u306b\u691c\u67fb\u3092\u884c\u3063\u3066\u3044\u305f\u30a4\u30bf\u30ea\u30a2\u3067\u533b\u7642\u95a2\u4fc2\u8005\u306b\u611f\u67d3\u8005\u304c\u5897\u3048\u3066\u533b\u7642\u304c\u5d29\u58ca\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u5831\u9053\u3002\u770b\u8b77\u5e2b\u306e\u5352\u696d\u7e70\u308a\u4e0a\u3052\u3001\u5f15\u9000\u3057\u305f\u533b\u5e2b\u306e\u73fe\u5f79\u5fa9\u5e30\u3001\u4e0d\u6025\u306e\u624b\u8853\u5ef6\u671f\u306a\u3069\u306e\u4e8b\u614b\u306b\u3002\n\nhttps:\/\/t.co\/4Cs6E1o7iL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4Cs6E1o7iL","expanded_url":"https:\/\/www.washingtonpost.com\/world\/europe\/coronavirus-in-italy-fills-hospital-beds-and-turns-doctors-into-patients\/2020\/03\/03\/60a723a2-5c9e-11ea-ac50-18701e14e06d_story.html","display_url":"washingtonpost.com\/world\/europe\/c\u2026","indices":[103,126]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107693215,"id_str":"107693215","name":"\u5c71\u53e3\u8cb4\u58eb - aka\u7121\u99c4\u306b\u611f\u3058\u304c\u60aa\u3044\u30e4\u30de\u30d9\u30f3","screen_name":"otakulawyer","location":"\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\u9eb9\u753a","description":"\u65e5\u82f1\u30d0\u30a4\u30ea\u30f3\u30ac\u30eb\u5f01\u8b77\u58eb\uff08\u6771\u4eac\u5f01\u8b77\u58eb\u4f1a\uff06State - Bar of California\uff09\uff20\u30ea\u30f3\u30af\u7dcf\u5408\u6cd5\u5f8b\u4e8b\u52d9\u6240 - https:\/\/t.co\/I5oqEKKofD \/\u65e5\u672c\u8131\u30ab\u30eb\u30c8\u5354\u4f1a\u7406\u4e8b\/\u970a\u611f\u5546\u6cd5\u5bfe\u7b56\u5f01\u8b77\u58eb\u9023\u7d61\u4f1a\/\u4e16\u306e\u4e2d\u3092\u826f\u304f\u3059\u308b\u305f\u3081\u306b\u58f0\u3092\u4e0a\u3052\u308b\/e-mail - yama_ben\u30a2\u30c3\u30c8https:\/\/t.co\/ia0YHhiOIc","url":"https:\/\/t.co\/GLtqpuNFad","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GLtqpuNFad","expanded_url":"http:\/\/yama-ben.cocolog-nifty.com","display_url":"yama-ben.cocolog-nifty.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/I5oqEKKofD","expanded_url":"http:\/\/linklaw.jp","display_url":"linklaw.jp","indices":[55,78]},{"url":"https:\/\/t.co\/ia0YHhiOIc","expanded_url":"http:\/\/nifty.com","display_url":"nifty.com","indices":[139,162]}]}},"protected":false,"followers_count":22035,"friends_count":1151,"listed_count":1176,"created_at":"Sat - Jan 23 11:52:55 +0000 2010","favourites_count":4930,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":46402,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649988986\/ca310017_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649988986\/ca310017_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1144,"favorite_count":849,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"is_quote_status":false,"retweet_count":1144,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859926586552321,"id_str":"1235859926586552321","text":"RT - @GKeile: You tell them Dr. Drew.\n\n\"The press shouldn''t be reporting medical - stories....\nthey''re reporting everything as a pandemic....th\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GKeile","name":"Go - Trump \ud83c\uddfa\ud83c\uddf8","id":495379332,"id_str":"495379332","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2503056306,"id_str":"2503056306","name":"Jody - Vandyke","screen_name":"JodyVandyke","location":"","description":"Husband, - Dad of two teens and works for Vulcan Material Company ,and proud supporter - of President Trump \udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6\udbb9\udce6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":252,"friends_count":566,"listed_count":3,"created_at":"Sun - May 18 02:04:34 +0000 2014","favourites_count":7299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5219,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/887454878179655680\/vwYsZWfi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/887454878179655680\/vwYsZWfi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2503056306\/1500420710","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 07:34:54 +0000 2020","id":1235831205838254087,"id_str":"1235831205838254087","text":"You - tell them Dr. Drew.\n\n\"The press shouldn''t be reporting medical stories....\nthey''re - reporting everything as a pa\u2026 https:\/\/t.co\/xvrU6KsJlp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xvrU6KsJlp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235831205838254087","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":495379332,"id_str":"495379332","name":"Go - Trump \ud83c\uddfa\ud83c\uddf8","screen_name":"GKeile","location":"Summerville, - SC","description":"A negative mind will never give you a positive life.\n\n - #TRUMP #MAGA #PATRIOTS #KAG\n\n We stand for the National Anthem #VETS\n \ud83c\uddfa\ud83c\uddf8 - God bless America \ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70374,"friends_count":72331,"listed_count":60,"created_at":"Fri - Feb 17 22:16:06 +0000 2012","favourites_count":102826,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94917,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/964414982199783424\/gkWVQl1N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/964414982199783424\/gkWVQl1N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495379332\/1568324780","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116,"favorite_count":132,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":116,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859926439743491,"id_str":"1235859926439743491","text":"Coronavirus - most common symptoms they love to fly and enjoying how ass fuc*#*#**#* after - spreading\u2026 https:\/\/t.co\/Gb87kuoeW0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Gb87kuoeW0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859926439743491","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[101,124]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2665216254,"id_str":"2665216254","name":"Dhwani - Dave","screen_name":"AliyaAlwani","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":2,"listed_count":0,"created_at":"Mon - Jul 21 07:44:09 +0000 2014","favourites_count":15,"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\/1234391065009901569\/XKAlt_jS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234391065009901569\/XKAlt_jS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2665216254\/1583316828","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859926234230785,"id_str":"1235859926234230785","text":"RT - @Manavkaul19: In India, we take viruses as a joke and religion seriously. - - bees_kut #coronavirusinindia #coronavirus","truncated":false,"entities":{"hashtags":[{"text":"coronavirusinindia","indices":[88,107]},{"text":"coronavirus","indices":[108,120]}],"symbols":[],"user_mentions":[{"screen_name":"Manavkaul19","name":"Manav - kaul","id":2336287640,"id_str":"2336287640","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113371675,"id_str":"113371675","name":"Sameerzden","screen_name":"sameerzden","location":"","description":"I''m - support of health and education of nations and expose the scare politics of - far right profit sharks","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":839,"listed_count":0,"created_at":"Thu - Feb 11 15:03:07 +0000 2010","favourites_count":4993,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8518,"lang":null,"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\/1139905695355043840\/Sn0mA0pm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1139905695355043840\/Sn0mA0pm_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 11:18:17 +0000 2020","id":1235525035097382912,"id_str":"1235525035097382912","text":"In - India, we take viruses as a joke and religion seriously. - bees_kut #coronavirusinindia - #coronavirus","truncated":false,"entities":{"hashtags":[{"text":"coronavirusinindia","indices":[71,90]},{"text":"coronavirus","indices":[91,103]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2336287640,"id_str":"2336287640","name":"Manav - kaul","screen_name":"Manavkaul19","location":"Bombay","description":"giving - up on godot !","url":"https:\/\/t.co\/6h0I8UIg4Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6h0I8UIg4Q","expanded_url":"https:\/\/www.instagram.com\/manavkaul\/","display_url":"instagram.com\/manavkaul\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12184,"friends_count":2,"listed_count":30,"created_at":"Mon - Feb 10 07:54:34 +0000 2014","favourites_count":7684,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5867,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152803210345644032\/xf86bGoE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152803210345644032\/xf86bGoE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2336287640\/1557865643","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":201,"favorite_count":1168,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":201,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859926011891713,"id_str":"1235859926011891713","text":"RT - @davidschneider: People dying in A&E corridors \n17000 beds cut \n106,000 - staff short\n43000 nurses short\n11000 doctors short\nEU doctors, n\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidschneider","name":"David - Schneider","id":20098015,"id_str":"20098015","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46409629,"id_str":"46409629","name":"Brendan - Gill","screen_name":"brendan_92","location":"United Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":345,"friends_count":3622,"listed_count":5,"created_at":"Thu - Jun 11 15:22:50 +0000 2009","favourites_count":160113,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9715,"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\/927594486485614592\/f93FmjMh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927594486485614592\/f93FmjMh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46409629\/1492889871","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:15:02 +0000 2020","id":1235856406063931392,"id_str":"1235856406063931392","text":"People - dying in A&E corridors \n17000 beds cut \n106,000 staff short\n43000 nurses - short\n11000 doctors short\nEU doctor\u2026 https:\/\/t.co\/TWHRGYlYTx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TWHRGYlYTx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235856406063931392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20098015,"id_str":"20098015","name":"David - Schneider","screen_name":"davidschneider","location":"London","description":"Actor, - writer, director, fool. Less ranty version at https:\/\/t.co\/BYepJwQHP7\u2026","url":"https:\/\/t.co\/X200PvU1Tu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/X200PvU1Tu","expanded_url":"http:\/\/thatlot.co.uk","display_url":"thatlot.co.uk","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/BYepJwQHP7","expanded_url":"http:\/\/instagram.com\/davidschneider","display_url":"instagram.com\/davidschneider","indices":[53,76]}]}},"protected":false,"followers_count":444098,"friends_count":1569,"listed_count":4424,"created_at":"Wed - Feb 04 21:47:34 +0000 2009","favourites_count":14207,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":39527,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/937241076116672513\/E31_C1th_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/937241076116672513\/E31_C1th_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20098015\/1558880930","profile_link_color":"263D45","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":251,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":88,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925986709504,"id_str":"1235859925986709504","text":"#coronavirus - \n\nItalie : 107 morts pour 3 513 cas \n\nEmirat : aucune mort confirm\u00e9 - pour 28 cas (pays tr\u00e8s stricte )\u2026 https:\/\/t.co\/Jc3wX95kcc","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Jc3wX95kcc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859925986709504","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4857723093,"id_str":"4857723093","name":"Loan","screen_name":"loan_duc","location":"Calvados, - Basse-Normandie","description":"Que dieu b\u00e9nisse celui qui sauvera mon - club \nps : il est pas encore arriv\u00e9 \n#TeamOL\nSnap : Loan14000","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":461,"listed_count":1,"created_at":"Thu - Jan 28 16:41:10 +0000 2016","favourites_count":7232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3036,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232791316158959623\/klvOIG8-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232791316158959623\/klvOIG8-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4857723093\/1566739482","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235626588844277766,"quoted_status_id_str":"1235626588844277766","quoted_status":{"created_at":"Thu - Mar 05 18:01:50 +0000 2020","id":1235626588844277766,"id_str":"1235626588844277766","text":"#Coronvirus\n\nItalie: - Ferme les \u00e9coles\n\n\u00c9mirat: Ferme les \u00e9coles\n\nChine: Ferme - les \u00e9coles\n\nIran: Ferme les \u00e9coles\n\nF\u2026 https:\/\/t.co\/Q3uZrSm3zQ","truncated":true,"entities":{"hashtags":[{"text":"Coronvirus","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Q3uZrSm3zQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235626588844277766","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1081018399935860737,"id_str":"1081018399935860737","name":"\u2128\ud835\udd22\ud835\udd11\ud835\udd26\ud835\udd26\ud835\udd31\ud835\udd30\ud835\udd32 - \u269c\ufe0f","screen_name":"ZeNiitsu_","location":"","description":"\ud83c\udde8\ud83c\uddf5 - ~ \ud835\udc40\ud835\udc5c\ud835\udc56 \ud835\udc57''\ud835\udc60\ud835\udc62\ud835\udc56\ud835\udc60 - \ud835\udc60\ud835\udc52\ud835\udc5f\ud835\udc52\ud835\udc56\ud835\udc5b \ud835\udc63\ud835\udc62 - \ud835\udc5e\ud835\udc62''\ud835\udc57\ud835\udc60\ud835\udc62\ud835\udc56\ud835\udc60 - \ud835\udc5d\ud835\udc52\ud835\udc5f\ud835\udc60\ud835\udc5c\ud835\udc5b\ud835\udc5b\ud835\udc52 ~ - \ud83c\uddea\ud83c\udde6 @BFC_SinKs @BFC_Nayko","url":"https:\/\/t.co\/q6VbNHkZZr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/q6VbNHkZZr","expanded_url":"https:\/\/twitter.com\/messages\/compose?recipient_id=1081018399935860737&text=technique%20jte%20follow","display_url":"twitter.com\/messages\/compo\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8528,"friends_count":5429,"listed_count":13,"created_at":"Fri - Jan 04 02:44:05 +0000 2019","favourites_count":45501,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47027,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235290711517523969\/OddopLle_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235290711517523969\/OddopLle_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081018399935860737\/1583350461","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234536905875873792,"quoted_status_id_str":"1234536905875873792","retweet_count":6364,"favorite_count":15035,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925944823812,"id_str":"1235859925944823812","text":"RT - @congresodigital: \ud83c\udd95La corresponsal de @rtve en China, @mavidonate, - recibir\u00e1 el Premio Porquet en #CongresoHuesca por su cobertura del #c\u2026","truncated":false,"entities":{"hashtags":[{"text":"CongresoHuesca","indices":[100,115]}],"symbols":[],"user_mentions":[{"screen_name":"congresodigital","name":"Congreso - PD Huesca","id":103902346,"id_str":"103902346","indices":[3,19]},{"screen_name":"rtve","name":"RTVE","id":26729931,"id_str":"26729931","indices":[41,46]},{"screen_name":"mavidonate","name":"Mavi - Do\u00f1ate","id":268989775,"id_str":"268989775","indices":[57,68]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":228402125,"id_str":"228402125","name":"Sunrise - At The Sky","screen_name":"SunriseAtTheSky","location":"","description":"Greetings - humans!\n\nPhotographer: documentary | photojournalist\nArchaeology | Culture - | Traditions | Timelapse | Photogrammetry","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":257,"friends_count":685,"listed_count":97,"created_at":"Sun - Dec 19 16:25:43 +0000 2010","favourites_count":11256,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55403,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255170554\/spock-hand_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255170554\/spock-hand_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:02:50 +0000 2020","id":1235853331878121478,"id_str":"1235853331878121478","text":"\ud83c\udd95La - corresponsal de @rtve en China, @mavidonate, recibir\u00e1 el Premio Porquet - en #CongresoHuesca por su cobertura del\u2026 https:\/\/t.co\/FxXIhbvjvF","truncated":true,"entities":{"hashtags":[{"text":"CongresoHuesca","indices":[79,94]}],"symbols":[],"user_mentions":[{"screen_name":"rtve","name":"RTVE","id":26729931,"id_str":"26729931","indices":[20,25]},{"screen_name":"mavidonate","name":"Mavi - Do\u00f1ate","id":268989775,"id_str":"268989775","indices":[36,47]}],"urls":[{"url":"https:\/\/t.co\/FxXIhbvjvF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235853331878121478","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103902346,"id_str":"103902346","name":"Congreso - PD Huesca","screen_name":"congresodigital","location":"Huesca","description":"El - XXI Congreso de Periodismo Digital de Huesca se celebrar\u00e1 los d\u00edas - 12 y 13 de marzo de 2020 #CongresoHuesca","url":"http:\/\/t.co\/Htmq0Y1EdN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Htmq0Y1EdN","expanded_url":"http:\/\/www.congresoperiodismo.com","display_url":"congresoperiodismo.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3806,"friends_count":618,"listed_count":233,"created_at":"Mon - Jan 11 16:39:35 +0000 2010","favourites_count":2667,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5046,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222105972279300097\/ee3sO1kO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222105972279300097\/ee3sO1kO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/103902346\/1582545599","profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5CE00","profile_text_color":"4C6988","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925936439296,"id_str":"1235859925936439296","text":"RT - @m_double_v: les autres pays : *Cherchent des rem\u00e8des contre le coronavirus*\n\nLa - france : *Tuto pour se laver les mains*","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"m_double_v","name":"Emdou\ud83c\uddf2\ud83c\udde6","id":970357472711110657,"id_str":"970357472711110657","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":578231244,"id_str":"578231244","name":"Sanz - \u274c\u274c #00 \u271d\u2122","screen_name":"MALWILSHERE","location":"Bagneux - (92) L''Abb\u00e9","description":"\u0444\u0443\u0442\u0431\u043e\u043b\u044c\u043d\u044b\u0439 - \u0442\u0440\u0435\u043d\u0435\u0440 \u26bd\ufe0f Y\u0436\u0435 \u0441\u043b\u0438\u0448\u043a\u043e\u043c - \u043c\u043d\u043e\u0433\u043e \u0436\u0438\u043b \u043a\u0430\u043a \u0441\u0435\u043c\u044c\u044f - Vastine \ud83d\ude4f \ud83c\udde8\ud83c\uddfb\u270c\ud83c\udfff\ud83d\udcff - #Sadek #Chelsea #CH14","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":692,"friends_count":171,"listed_count":54,"created_at":"Sat - May 12 15:26:59 +0000 2012","favourites_count":3853,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":101235,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1BC9E0","profile_background_image_url":"http:\/\/abs.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\/1212393944203583488\/_zGtzcAT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212393944203583488\/_zGtzcAT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/578231244\/1579561297","profile_link_color":"1B52DE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 23:36:00 +0000 2020","id":1235348295729508357,"id_str":"1235348295729508357","text":"les - autres pays : *Cherchent des rem\u00e8des contre le coronavirus*\n\nLa france - : *Tuto pour se laver les mains* https:\/\/t.co\/xiu9EMiTYo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xiu9EMiTYo","expanded_url":"https:\/\/twitter.com\/BFMTV\/status\/1235241091546451968","display_url":"twitter.com\/BFMTV\/status\/1\u2026","indices":[108,131]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":970357472711110657,"id_str":"970357472711110657","name":"Emdou\ud83c\uddf2\ud83c\udde6","screen_name":"m_double_v","location":"Sarcelles - 95200","description":"\u00ab EMDOU - SHEESH \u00bb disponible sur youtube - et sur toutes les plateformes de streaming et de t\u00e9l\u00e9chargement - l\u00e9gal !\ud83d\udce9emdousheesh@gmail.com","url":"https:\/\/t.co\/A6iMloNlhv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A6iMloNlhv","expanded_url":"https:\/\/m.youtube.com\/watch?v=K2ayyynxLO0&noapp=1&client=mv-google","display_url":"m.youtube.com\/watch?v=K2ayyy\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4430,"friends_count":3016,"listed_count":3,"created_at":"Sun - Mar 04 17:57:04 +0000 2018","favourites_count":6116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20620,"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\/1234289123361513472\/Mz1K3rix_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234289123361513472\/Mz1K3rix_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/970357472711110657\/1578827725","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235241091546451968,"quoted_status_id_str":"1235241091546451968","quoted_status":{"created_at":"Wed - Mar 04 16:30:00 +0000 2020","id":1235241091546451968,"id_str":"1235241091546451968","text":"\u270b\ud83d\udca7 - Coronavirus: comment bien se laver les mains ? https:\/\/t.co\/qjcH96i8zc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235172176925462528,"id_str":"1235172176925462528","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQ2o-1WoAA0Rtp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQ2o-1WoAA0Rtp.jpg","url":"https:\/\/t.co\/qjcH96i8zc","display_url":"pic.twitter.com\/qjcH96i8zc","expanded_url":"https:\/\/twitter.com\/BFMTV\/status\/1235241091546451968\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235172176925462528,"id_str":"1235172176925462528","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQ2o-1WoAA0Rtp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQ2o-1WoAA0Rtp.jpg","url":"https:\/\/t.co\/qjcH96i8zc","display_url":"pic.twitter.com\/qjcH96i8zc","expanded_url":"https:\/\/twitter.com\/BFMTV\/status\/1235241091546451968\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":76000,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1235172176925462528\/vid\/720x720\/0kHEDdYe6Edftd1k.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1235172176925462528\/vid\/480x480\/9kWG4bdvCmxa_K1T.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1235172176925462528\/pl\/U5Wh5UxnUPUpPZO4.m3u8?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1235172176925462528\/vid\/320x320\/EHQWnVel0nXMvxPD.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":133663801,"id_str":"133663801","name":"BFMTV","screen_name":"BFMTV","location":"France","description":"Premi\u00e8re - sur l''info. Retrouvez-nous sur Snapchat\/Instagram \u27a1 bfmtv","url":"https:\/\/t.co\/Mjm8y6dGAC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Mjm8y6dGAC","expanded_url":"http:\/\/www.bfmtv.com","display_url":"bfmtv.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2637810,"friends_count":576,"listed_count":9739,"created_at":"Fri - Apr 16 09:55:26 +0000 2010","favourites_count":547,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":434746,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"1277C9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165822715732930565\/uz3J1eOl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165822715732930565\/uz3J1eOl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133663801\/1579608118","profile_link_color":"1277C9","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":170,"favorite_count":502,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"retweet_count":8069,"favorite_count":22141,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1235241091546451968,"quoted_status_id_str":"1235241091546451968","retweet_count":8069,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925831565316,"id_str":"1235859925831565316","text":"RT - @PhilipObin: JUST IN: The US Senate passes $8.3 bill to combat coronavirus\n\nFirst - case in San Francisco\n\nNumber of cases in the UK rises\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PhilipObin","name":"Philip - Obin","id":454047437,"id_str":"454047437","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1162687218,"id_str":"1162687218","name":"APC - Nigeria","screen_name":"APCNigeria","location":"Nigeria","description":"Commentary - & Support account for the APC and Muhammadu Buhari''s #Nextlevel Administration.","url":"https:\/\/t.co\/Sdu9TmPLHy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Sdu9TmPLHy","expanded_url":"http:\/\/trenchat.com\/APCNigeria","display_url":"trenchat.com\/APCNigeria","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":938234,"friends_count":480,"listed_count":592,"created_at":"Sat - Feb 09 11:21:11 +0000 2013","favourites_count":3702,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":44039,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1090637868605820930\/7Xqe5bLw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1090637868605820930\/7Xqe5bLw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1162687218\/1579825287","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:28:42 +0000 2020","id":1235859844726325251,"id_str":"1235859844726325251","text":"JUST - IN: The US Senate passes $8.3 bill to combat coronavirus\n\nFirst case in - San Francisco\n\nNumber of cases in the\u2026 https:\/\/t.co\/FEd00eAlMW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FEd00eAlMW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235859844726325251","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":454047437,"id_str":"454047437","name":"Philip - Obin","screen_name":"PhilipObin","location":"Nigeria","description":"Technical - Assistant (New Media), Office of the Vice President of Nigeria - @ProfOsinbajo - | Opinions are mine | Quoted tweets not mine.","url":"https:\/\/t.co\/htz4nxTXul","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/htz4nxTXul","expanded_url":"http:\/\/PhilipObin.com","display_url":"PhilipObin.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":64132,"friends_count":2305,"listed_count":243,"created_at":"Tue - Jan 03 15:27:56 +0000 2012","favourites_count":5189,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":142738,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0BBF26","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\/1170176738632110081\/g8EfYjCH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170176738632110081\/g8EfYjCH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454047437\/1572445379","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","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"},"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925764456449,"id_str":"1235859925764456449","text":"Coronavirus - : quelques conseils pour \u00e9viter une propagation entre coll\u00e8gues - https:\/\/t.co\/Obr6moVzJ6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Obr6moVzJ6","expanded_url":"https:\/\/references.lesoir.be\/article\/coronavirus-au-bureau-voici-quelques-conseils-pour-eviter-au-maximum-la-propagation?UTM_source=Twitter","display_url":"references.lesoir.be\/article\/corona\u2026","indices":[76,99]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/workshop.pimpmy.social\" rel=\"nofollow\"\u003ePimpMySocial - Workshop\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":47630923,"id_str":"47630923","name":"R\u00e9f\u00e9rences","screen_name":"references","location":"Bruxelles, - Belgique","description":"Connected to work ! Articles et conseils pour votre - #carri\u00e8re #compasdessalaires","url":"http:\/\/t.co\/xYi8G2XkEo","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/xYi8G2XkEo","expanded_url":"http:\/\/www.references.be","display_url":"references.be","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2602,"friends_count":863,"listed_count":204,"created_at":"Tue - Jun 16 14:04:15 +0000 2009","favourites_count":59,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22368,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"004488","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/978913692065648640\/CnPVZ711_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/978913692065648640\/CnPVZ711_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47630923\/1523275189","profile_link_color":"004488","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"},"geo":null,"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"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925705715712,"id_str":"1235859925705715712","text":"RT - @spectatorindex: JUST IN: First case of coronavirus in the Vatican","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"spectatorindex","name":"The - Spectator Index","id":1626294277,"id_str":"1626294277","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1057616354449244161,"id_str":"1057616354449244161","name":"Wa\u0438\u0438amake\u0433","screen_name":"edmrvn","location":"BLACK - PLANET.","description":"I got control of all my demons, I been King every - since.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1710,"friends_count":1516,"listed_count":0,"created_at":"Wed - Oct 31 12:52:43 +0000 2018","favourites_count":40770,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29310,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176082277060808709\/rbD-9O6q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176082277060808709\/rbD-9O6q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1057616354449244161\/1565197753","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 09:26:44 +0000 2020","id":1235859347273420806,"id_str":"1235859347273420806","text":"JUST - IN: First case of coronavirus in the Vatican","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1626294277,"id_str":"1626294277","name":"The - Spectator Index","screen_name":"spectatorindex","location":"Global","description":"Watching - the world. Focused on politics, economics, science and sports. Message us - for business inquiries.","url":"https:\/\/t.co\/JKoXedtrxE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JKoXedtrxE","expanded_url":"http:\/\/spectatorindex.com","display_url":"spectatorindex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":712924,"friends_count":0,"listed_count":10919,"created_at":"Sat - Jul 27 20:42:27 +0000 2013","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40730,"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\/1145865652533547008\/XBahoZmX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145865652533547008\/XBahoZmX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1626294277\/1430626667","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":134,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":71,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925449883652,"id_str":"1235859925449883652","text":"RT - @Abdi10i: Seeing the Ka\u2019baa being closed due to Coronavirus precautions - feels so odd and discomforting. https:\/\/t.co\/dp7XX3imSC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Abdi10i","name":"abdi++","id":1000654784167317505,"id_str":"1000654784167317505","indices":[3,11]}],"urls":[],"media":[{"id":1235574755169878016,"id_str":"1235574755169878016","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1235574763411714048,"source_status_id_str":"1235574763411714048","source_user_id":1000654784167317505,"source_user_id_str":"1000654784167317505"}]},"extended_entities":{"media":[{"id":1235574755169878016,"id_str":"1235574755169878016","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1235574763411714048,"source_status_id_str":"1235574763411714048","source_user_id":1000654784167317505,"source_user_id_str":"1000654784167317505"},{"id":1235574755161501696,"id_str":"1235574755161501696","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYbXcAAp1I5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYbXcAAp1I5.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":1235574763411714048,"source_status_id_str":"1235574763411714048","source_user_id":1000654784167317505,"source_user_id_str":"1000654784167317505"},{"id":1235574755367038976,"id_str":"1235574755367038976","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksZMXsAAJpum.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksZMXsAAJpum.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/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_status_id":1235574763411714048,"source_status_id_str":"1235574763411714048","source_user_id":1000654784167317505,"source_user_id_str":"1000654784167317505"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":777123789721079808,"id_str":"777123789721079808","name":"Amirul","screen_name":"amirulatib_","location":"","description":"three - thousand isn''t enough for u \ud83c\udf3b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":74,"listed_count":0,"created_at":"Sat - Sep 17 12:35:24 +0000 2016","favourites_count":865,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11800,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235853501818781702\/2YVUth5S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235853501818781702\/2YVUth5S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/777123789721079808\/1583486140","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 05 14:35:54 +0000 2020","id":1235574763411714048,"id_str":"1235574763411714048","text":"Seeing - the Ka\u2019baa being closed due to Coronavirus precautions feels so odd and - discomforting. https:\/\/t.co\/dp7XX3imSC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235574755169878016,"id_str":"1235574755169878016","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235574755169878016,"id_str":"1235574755169878016","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYdXQAAFOf-.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"}}},{"id":1235574755161501696,"id_str":"1235574755161501696","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksYbXcAAp1I5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksYbXcAAp1I5.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}},{"id":1235574755367038976,"id_str":"1235574755367038976","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/ESWksZMXsAAJpum.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESWksZMXsAAJpum.jpg","url":"https:\/\/t.co\/dp7XX3imSC","display_url":"pic.twitter.com\/dp7XX3imSC","expanded_url":"https:\/\/twitter.com\/Abdi10i\/status\/1235574763411714048\/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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1000654784167317505,"id_str":"1000654784167317505","name":"abdi++","screen_name":"Abdi10i","location":"MN","description":"@ManUtd - | Muslim |","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2185,"friends_count":665,"listed_count":5,"created_at":"Sun - May 27 08:27:46 +0000 2018","favourites_count":1244,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2303,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233925721938067457\/cFRigVr5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233925721938067457\/cFRigVr5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1000654784167317505\/1580092201","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25605,"favorite_count":40011,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":25605,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925403701248,"id_str":"1235859925403701248","text":"Es - que es tan dif\u00edcil cambiar una preposici\u00f3n???\nSres\/Sras de 90 - a\u00f1os que mueren POR coronavirus? Vamos hombre... https:\/\/t.co\/T7oot1Zp4W","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T7oot1Zp4W","expanded_url":"https:\/\/twitter.com\/antonionuodaz\/status\/1235856174936809474","display_url":"twitter.com\/antonionuodaz\/\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558762047,"id_str":"558762047","name":"Susana - \ud83d\udd3b","screen_name":"sarosteguii","location":"L''Hospitalet de Llobregat","description":"Re-tuitera, - seriefila, so\u00f1adora, curranta, viajera y de izquierdas...for starterts - \ud83c\udf97\ud83d\udd3b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":589,"friends_count":1745,"listed_count":15,"created_at":"Fri - Apr 20 16:24:04 +0000 2012","favourites_count":44592,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16420,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1134175616310362112\/M1bV_M3M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134175616310362112\/M1bV_M3M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558762047\/1400017131","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235856174936809474,"quoted_status_id_str":"1235856174936809474","quoted_status":{"created_at":"Fri - Mar 06 09:14:07 +0000 2020","id":1235856174936809474,"id_str":"1235856174936809474","text":"Queridos - compa\u00f1eros: muere CON coronavirus, no.muere POR coronavirus. Al menos - de momento.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411315267,"id_str":"411315267","name":"Antonio - Nu\u00f1o D\u00edaz","screen_name":"AntonioNuoDaz","location":"Madrid","description":"Me - llamo Antonio Nu\u00f1o, soy periodista y ciudadano del mundo, con origen - en Llerena...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2226,"friends_count":447,"listed_count":68,"created_at":"Sun - Nov 13 07:53:54 +0000 2011","favourites_count":35251,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":129233,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1083455267507974144\/EVPrYTYu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083455267507974144\/EVPrYTYu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411315267\/1449916022","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Fri - Mar 06 09:29:02 +0000 2020","id":1235859925298900999,"id_str":"1235859925298900999","text":"RT - @fran_becher: A TERRA \u00e9 redonda (geoide, pra ser exata).\n\nO NAZISMO - \u00e9 de extrema-direita, como o PSL.\n\nVACINA \u00e9 essencial e n\u00e3o - causa au\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fran_becher","name":"Fran - Becher","id":18963313,"id_str":"18963313","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1198258600147398656,"id_str":"1198258600147398656","name":".line - \u2501\u2606\uff9f.*\uff65\uff61\uff9f","screen_name":"linie_kah","location":"","description":"comam - br\u00f3colis","url":"https:\/\/t.co\/17MTIOWq7N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/17MTIOWq7N","expanded_url":"https:\/\/www.spiritfanfiction.com\/perfil\/kalinisales1704","display_url":"spiritfanfiction.com\/perfil\/kalinis\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":71,"listed_count":0,"created_at":"Sat - Nov 23 15:14:57 +0000 2019","favourites_count":738,"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\/1234913353509855239\/ObNzUg5D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234913353509855239\/ObNzUg5D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198258600147398656\/1574522185","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 00:38:39 +0000 2020","id":1235726451942490112,"id_str":"1235726451942490112","text":"A - TERRA \u00e9 redonda (geoide, pra ser exata).\n\nO NAZISMO \u00e9 de extrema-direita, - como o PSL.\n\nVACINA \u00e9 essencial e n\u00e3o c\u2026 https:\/\/t.co\/PJAcrKaMkU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PJAcrKaMkU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235726451942490112","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18963313,"id_str":"18963313","name":"Fran - Becher","screen_name":"fran_becher","location":"Paris, France","description":"Doutoranda - na @UnivParis8, com tese sobre inf\u00e2ncia, juventude e II Guerra Mundial. - Mais uma que busca na inquietude a esperan\u00e7a de dias melhores.","url":"https:\/\/t.co\/qw8CaXLOw5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qw8CaXLOw5","expanded_url":"https:\/\/bit.ly\/2ZWOwRO","display_url":"bit.ly\/2ZWOwRO","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3795,"friends_count":1373,"listed_count":31,"created_at":"Wed - Jan 14 02:08:59 +0000 2009","favourites_count":18162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":34815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6143CC","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\/1215686043254624256\/d918N2l6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215686043254624256\/d918N2l6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18963313\/1487462552","profile_link_color":"B500DE","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"A6A6A6","profile_text_color":"050505","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"bacb72e48bb40ebe","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bacb72e48bb40ebe.json","place_type":"city","name":"Caxias - do Sul","full_name":"Caxias do Sul, Brasil","country_code":"BR","country":"Brazil","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-51.2880154,-29.3430637],[-50.7820389,-29.3430637],[-50.7820389,-28.7941844],[-51.2880154,-28.7941844]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1132,"favorite_count":3622,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":1132,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"}],"search_metadata":{"completed_in":0.137,"max_id":1235859936090808321,"max_id_str":"1235859936090808321","next_results":"?max_id=1235246706817630207&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1235859936090808321&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=3 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:09 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/822547732376207360/5g0FC8XX_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '35640' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:09 GMT - Last-Modified: - - Fri, 20 Jan 2017 20:51:56 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/822547732376207360 - X-Cache: - - HIT - X-Connection-Hash: - - db1a8667afbafa0ca00187d973fe6566 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lexington/Phoenix%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:10 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:10 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1055264484745494530/QLX6B5o9_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '145129' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:10 GMT - Last-Modified: - - Thu, 25 Oct 2018 01:05:13 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1055264484745494530 - X-Cache: - - HIT - X-Connection-Hash: - - 4eb3b66a113954267e692a8a9b6bd08e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:10 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lexington/Phoenix%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:10 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:10 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bronx%20%2B%20Queens,%20NYC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:10 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:10 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/923274881197895680/AbHcStkl_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '253829' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:10 GMT - Last-Modified: - - Wed, 25 Oct 2017 19:45:39 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/923274881197895680 - X-Cache: - - HIT - X-Connection-Hash: - - '09a8548d2e5ffe9565072a8460646191' - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:10 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bronx%20%2B%20Queens,%20NYC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:11 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Laying%20a%20new%20patio&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:11 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1151576189250805760/JlZUKVAD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '482088' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:11 GMT - Last-Modified: - - Wed, 17 Jul 2019 19:33:33 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1151576189250805760 - X-Cache: - - HIT - X-Connection-Hash: - - 585173292c31d389bb622aa27166838e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:11 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Laying%20a%20new%20patio&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:11 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bangkok,%20Thailand&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:12 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=3 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:12 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1184322514115158017/RLoqQ5QW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:12 GMT - Last-Modified: - - Wed, 16 Oct 2019 04:15:45 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1184322514115158017 - X-Cache: - - MISS - X-Connection-Hash: - - 7a37ddb53e6ffc471623f4e4987fe529 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:12 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bangkok,%20Thailand&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:12 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:12 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Ikeja,%20Nigeria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:13 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:13 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1225812983777026048/ktApZFYh_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:13 GMT - Last-Modified: - - Fri, 07 Feb 2020 16:04:04 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1225812983777026048 - X-Cache: - - MISS - X-Connection-Hash: - - c3f03b2bd9c75d34aa648f07a0c920be - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:13 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Ikeja,%20Nigeria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:13 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:13 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Diksmuide,%20Belgi%C3%AB&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:13 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:13 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/697901842194300928/TPPojwr3_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:14 GMT - Last-Modified: - - Thu, 11 Feb 2016 21:53:40 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/697901842194300928 - X-Cache: - - MISS - X-Connection-Hash: - - 9c7359a6e2ecf5247996eef367d5e271 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '120' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:14 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Diksmuide,%20Belgi%C3%AB&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:14 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:14 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Jalan%20Kawi%2011B,%20Kota%20Malang&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:14 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:14 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/871021681636069376/t3mQBI0g_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '8106' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:14 GMT - Last-Modified: - - Sat, 03 Jun 2017 15:10:06 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/871021681636069376 - X-Cache: - - HIT - X-Connection-Hash: - - 410e23f6ceacaaaaf3219f7d75544a2d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:14 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Jalan%20Kawi%2011B,%20Kota%20Malang&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:14 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:14 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Madrid%20y%20el%20mundo&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:15 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1217843437120167936/4ZH7_0TG_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '324603' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:15 GMT - Last-Modified: - - Thu, 16 Jan 2020 16:15:56 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1217843437120167936 - X-Cache: - - HIT - X-Connection-Hash: - - a9b7f859bc1d0b45ce80283bdb97a221 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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dG7cRvcYIv74WdWSTaqUKauldamC2hp79kiejE5DJCRKhdnU4L5SdcpBA2pDZ3d8/TzjmN1vigIAM8V7GKQhbbsPPv6EV5bdijQhFSyy84knVooBboszXZckkoTYBcA1k66axz/HsVtXlUo3o3Jw8YKkHqAkez8qYbn4LIqMU3AvIfOCoJU3aUtDCzaTvjDodTry67n/AD0QSIhQ7Lem9zfxlEUt4e3KfWKqKcN/gznAwahPcccYJbKOsnBzDc8ZzZSqC9Y4ip8uPIfAwI9fgKc4SRMARE5jvx8ekeLYAFab9nOjf9eMAswoFrCnUwCr4MqfB2HG8i3P0n9vx3muuQU6knfrjQ1cBT7If0xRhayBI3EtHUQcL650Kmyxk9CcifbEORCJ8epKoq4PcXk8noJDUbAU51n3m8fcJ6d/6mR8BGkbc/igFMHS5Z2ICMGkyavH7ev+8ef8H//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Madrid%20y%20el%20mundo&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fraserburgh&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:15 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1164095158314524672/URLXMoW8_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '170045' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:15 GMT - Last-Modified: - - Wed, 21 Aug 2019 08:39:28 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1164095158314524672 - X-Cache: - - HIT - X-Connection-Hash: - - d4c146615c680eaeb093e0e3af055e5e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fraserburgh&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Teesdale%20Park,%20Thornaby,%20UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:16 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1213122485438337025/eFohDcpL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '280316' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:16 GMT - Last-Modified: - - Fri, 03 Jan 2020 15:36:33 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1213122485438337025 - X-Cache: - - HIT - X-Connection-Hash: - - 85f6a076a91fcc8b6e5d4abdceeafd8b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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IbieHLaDpAjxNTr6C3JYBB773GHUJhUb6yG0wIIVO0mCbxmkxKWBYJ6cmNCIhFR973NydsOCVCUMGEalEvY74924c1Lu7gmXb5hwVLKXFgslgEnD5yyKISIROqz/AKf5wChY0oQeo8YVBQ1APKZ84cq0bm43OUOhhQqOqQcuHtyA6g0PBy6ZeMTWKZEZQMXbD74FEz1CP4yRw08hkCvDw1M6fefuGIow5LLydvvgmATFuvrHBQoksT7whDNAlIu8KatxmUwtCQMxVv3DDIxWOQGYqZPHTIqUCGIem8aMkU9gT4xPWAeHo85H7nAEAUBgidu3xm2YBoT54xKSIJ5X0yXQoke28Za0cNSWd6znIbDaRoArriqiF2WUqdWB9BEGwpxddjEpNwREi4rjI/1H94ZzrKk4PHzhzEm8AoZF3HvAOaimDfU1xhS7ERsdclAllhs193KUihxtpnjrlJDAgBBZCNu8s4BEVpIY7fGOEqlcqIp3dz9Avg/ln57G3w5+F+c+f6R8vzz8fBp7+n//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Teesdale%20Park,%20Thornaby,%20UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lagos,%20Nigeria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:16 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/875659389335728128/TP7OdwbC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '442425' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:16 GMT - Last-Modified: - - Fri, 16 Jun 2017 10:18:42 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/875659389335728128 - X-Cache: - - HIT - X-Connection-Hash: - - fcf443f64667be522c26108f088270bf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lagos,%20Nigeria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Sinaloa&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:17 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:17 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/760751468852883456/kcxRJchR_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '371701' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:17 GMT - Last-Modified: - - Wed, 03 Aug 2016 08:15:38 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/760751468852883456 - X-Cache: - - HIT - X-Connection-Hash: - - 6ee50702d55cbab65fe991cdbb7c91f0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:17 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Sinaloa&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:17 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:17 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=France&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:17 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:17 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/982490227641061381/s9kAAu5J_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:17 GMT - Last-Modified: - - Sat, 07 Apr 2018 05:26:18 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/982490227641061381 - X-Cache: - - MISS - X-Connection-Hash: - - acd3b6b4fb59a0b59ca6289a4e42773e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:17 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=France&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Canada&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1161412350856929280/mqwMN5_B_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '285' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:18 GMT - Last-Modified: - - Tue, 13 Aug 2019 22:58:57 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1161412350856929280 - X-Cache: - - HIT - X-Connection-Hash: - - d6061eebe9fae457f7877bb141c49db3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Canada&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Amsterdam,%20Nederland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1037268516540481536/eadXnPAD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '345575' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:18 GMT - Last-Modified: - - Wed, 05 Sep 2018 09:15:40 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1037268516540481536 - X-Cache: - - HIT - X-Connection-Hash: - - 69e89093004a47d5a2a2cba0a3ce414d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Amsterdam,%20Nederland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tokyo,%20Japan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/937045056900362240/SxvXlP6Z_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '281908' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:19 GMT - Last-Modified: - - Sat, 02 Dec 2017 19:43:25 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/937045056900362240 - X-Cache: - - HIT - X-Connection-Hash: - - f45b8fab09fd0b09303f37eed486afa1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tokyo,%20Japan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Ogun&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/543830909154512897/iCrUDbqG_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:20 GMT - Last-Modified: - - Sat, 13 Dec 2014 18:10:47 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/543830909154512897 - X-Cache: - - MISS - X-Connection-Hash: - - 50a5aec639c2e85ab0b017a0fe611861 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '1731' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Ogun&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=KELOWNA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1227192454153064454/LwbQi-TN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '12' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:20 GMT - Last-Modified: - - Tue, 11 Feb 2020 11:25:35 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1227192454153064454 - X-Cache: - - HIT - X-Connection-Hash: - - b12848b01d54835f7ca41273c1a52c69 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=KELOWNA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=221B%20-%20%CF%88&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=3 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/607504812037578752/u4PC8Ol__bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '340626' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:21 GMT - Last-Modified: - - Sun, 07 Jun 2015 11:08:08 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/607504812037578752 - X-Cache: - - HIT - X-Connection-Hash: - - 4f066dc1493d4ae1297a6a5fe05481d0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH3wAGAAcACwAKAAhhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMACAYGBwYFCAcHBwkJCAoMFA0MCwsMGRITDxQdGh8eHRocHCAkLicgIiwjHBwoNyksMDE0NDQfJzk9ODI8LjM0Mv/bAEMBCQkJDAsMGA0NGDIhHCEyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMv/AABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAFBgIEBwMBAP/EADIQAAIBAwIFAgQDCQAAAAAAAAECAwAEEQUhBhITMUFRYSJxcrEyMzUHFBU2QpGhwdH/xAAZAQADAQEBAAAAAAAAAAAAAAAEBQYDAgH/xAAjEQACAgIBAwUBAAAAAAAAAAABAgADBBEhBRJhEyIjMVFB/9oADAMBAAIRAxEAPwBWjUsaJWtqWI2qFrbZIOKYbGz7bVJX3BRLkDXMha2O24qct7pdnL0bi+t45fKM+4rjrerLYqbK1miju2XJdztH/wBPtSLLp+n2MzyX+ovPIzczMm/Pnzmu8XAfIHe50P55gOTmis9q8maelvHNErxMro3ZlOQarT2eR2pS0fjay0++EUSSS2GcLEX3xjtnwa0JWt7uIS200c8ZH5ke6k43APnB2oXLxLcQ7PK/s0x8tbYp3lpgdqBXMJXO1PN1ag52oBfWnfau8e+F6BEVnypqHMfWrlxDyk1V6dNFIImDKQY6WVv22phtIcAbVQsosAUYhAVSfQZqcyHJM1czE+KLpZ9cv2CFQLlxzHfIzj/VCeqrxsecyKoBb5ZqfEt3LLq8qtsAxIHr71XgYC2Ib+pTmrmlQKlHgSXu36jA/stmXS3t4ulE8cysCSxyHFabwHeM8VxErs9qAnRRzugAwQPGM/esaSN3kHL3Pan39m1/K/EJic4+Agr27D0oTqtXdiv45m+C/wAoBmqTxgg7UEvYM52phlGaGXUeQajqX0ZQoYnX1vgnahfT9qZL+LINCelTqqz2zsruO9qoAFEkwVIPkYoZbt2q/Gdu9I7PuZsJkXEGixzXDq45Z4mK83rj1pNkLxyNH5BxWq8XWxh1KSQLlZV5x8+xrMTC8t5IPwqDzMSO1WXTbjZWCTFPU6lGnUcmFtM4fvXtv4k0Mq2q9nVSQT6US0aaTQeJ7e+dCLa4IR9u2a07gviXSo9EtNMKhQqANz9mJ70T4k4IsddtHnsHSOcgEKfwsR9j715bkB+6uwcHiZJUKiD9GTLhkyDsapTjIry0MkdskM6PHPEOR1fuCPv868mbY1IBCjajtR+QNepsaFdOjF35obimNR9s2hq3mxiiEc21AYZsYq9HP70LZXOSNyxfaCeJDHbpzcyZYlTg8vz/ALUkcQ8KNo8f7pHGV6Zy7HvIfNaDpVwRqESgsefIKq3KT7UE1q8nGpy9ZOaIOeWOXBbHrtTzpgK0xTmMfU7T9amci7aw5QEYoBuV8U16HxteafJGTKZYD6+lDNT0uKdmmilW3LkkxkZX5j0oALZ7OQjrK6nwo2pi1asOZilp32n6m/WupaXxJaKwdVmx8LDuKC6hBLZTGOUe4YdmHtWW2t9faTLDMhZFccy4OzCtBsOKrbV7Fba8YCTw3kGlOThBvcsLps9M6/n5K10+QaH89drxjHIyE7j/ADVHqe9CImhqMtzqsuPNWo5/eh4711SumUTwGW0vi1yeRsdMr8Q8H1rhqlrJa3KzPBLF1NzzL8L+4I7g1RtPzbv61pp1v+W7b6UpriqFTQinNb5BE3UOksju2e+AoOdsUFIFxKTjlQbKPeieofnSfVVCH8Qpgo4gJJ3L13cLHwzFFIoLhuVc+Nz2paF3N1AsTNzE4AXyaK6r+nxfW1C9H/WLf6j9qHqUIjN5JhVzF7EXwI22YnhtEW4maSY7sWOcew+VdOaotX1KzydmNgO0aE//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=221B%20-%20%CF%88&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%23ImpeachTrump&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234910204036354053/oEA4LZzA_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '225702' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:21 GMT - Last-Modified: - - Tue, 03 Mar 2020 18:33:10 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1234910204036354053 - X-Cache: - - HIT - X-Connection-Hash: - - 48f928b715fc8d0ca10da3070e64b5b6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%23ImpeachTrump&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/544061470083121152/KrbcAzNE_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '351910' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:22 GMT - Last-Modified: - - Sun, 14 Dec 2014 09:26:57 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/544061470083121152 - X-Cache: - - HIT - X-Connection-Hash: - - 96814175791f31772ddc2c74ff6e3934 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '1731' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:22 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Valladolid,%20Espa%C3%B1a&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:22 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:22 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/2938864730/ed5836d6b05cbf78dc4c3fa67a1caeb9_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '19' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:22 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/2938864730 - X-Cache: - - HIT - X-Connection-Hash: - - f835c2a36e0c828a6edceff27dfa4a05 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '999' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAAwADADASIAAhEBAxEB/8QAGgAAAwADAQAAAAAAAAAAAAAABQYHAgQIAP/EAC8QAAIBAwIEAwcFAQAAAAAAAAECAwQFEQAhBhIxQRMiUQcUQmGBobEVIzJx8JH/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AE2RnSnRFdgAg6H5nTRS2i7VgDQwzhD8TsUH30r8Pzp+zKh/iFP8AxidUj2l3Oe2cCV9RTlkeTkiLjqqucHfttt9dAk1l1ttvnNPU8R0qygkMsbySBT6EqCBraphU19Eay3VvvtMuzPTTFuU+hXqPqNTLh1bbVV0klzYQ0kK+XmcKrN6ep/oaqfs4u/C1Lf8A3OiMiNXDw0CRsFLjzb5+WcHQBK6qqjBKjVM5BQ5UyHB0t19riq4VkkVg3OQCGx101X+dJK+ulGeVpXxjqcnbQiSM/p45iB+5zMx6Lt/hoNKzTGNAAcZGNVK6362Xu2NR3KY09E9KELSjKiQAEMQPRgPpqY8P0qzQyTysRFHtgfE2TtofxPcJWZFyWQoY18xwm/Qf7toGcQW1Mxy0dKDMoYtyDDH1Bx09PlovwXJTUd9MMUMUVMsMkqEqBlwNiD64+ulSavSrtNMtShMngqSyMM9OuNBKJZZruWjkkWKD+Id+bfG5++gaKx/EJJ7tn76wdA6Jk5AJIHbO2+suVqinLMFRtiAO4+evEgKo9ASPqRoCfDXCF8r+CUrwlO3jO7oqkKWUbZHbse+p3dpJIZaqlnR1lilCcjDcHvrprhClNLwHZaUlUZKJA2TsDjJ/OorxXYbnRcb1FbPahUU885lSogcSAeUgA4yV7HcaABa54DaJqedCtfHIUdn+AY8uPxrVjka2REt5GJOxB366Zafgu+3W+rWW+1ymhnULOwwU5lOxOSCQdtFpfZZxVf6/xbg1HQ06jlUu48oz2RM/nQFKXgK+1NuiqFSJA6B1EkmGORnpg6Q6T3ta6cVDMQpaIqT0dSAf610ZSMLdaaWilqBUSwQrE0vLy8/KMZxvjpqDXOJoeJLrzNGsb1krrlh0J0H/2SAgICAgICAgICAgICAg - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:22 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Valladolid,%20Espa%C3%B1a&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:22 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:22 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=http://www.ueuromed.org&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:22 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:22 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/946718468468027392/nu07RiIG_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '53597' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:22 GMT - Last-Modified: - - Fri, 29 Dec 2017 12:22:06 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/946718468468027392 - X-Cache: - - HIT - X-Connection-Hash: - - 80e5a41e009da58ec929a09f6b8fd20a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4QAMAB0ADAAYAAhhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAEAAgMBAQAAAAAAAAAAAAAABAUDBgcCAf/EABgBAQEBAQEAAAAAAAAAAAAAAAACAQME/9oADAMBAAIQAxAAAAHsoAAAAFXacq6cekZNO9Ju7HmU3tG9Yub7llbaPN6VVa6ts3cOuy1GWRXfdWMut8TuxCeiNJMi+pAipQj/AHOAaAAAAB//xAAjEAABBAEEAQUAAAAAAAAAAAADAQIEBQAQEhMUIREWIkBQ/9oACAEBAAEFAvqisIZTklRxhIcQyLb1qK2SB0h06I1QWcA5dagWywuGp7dlyQTLesJtbLBILevj9UdRHmNXV5Bq5xkwHAHHMhbGFTmeoXYwvy1Unnf5V6qxz1xhW5vTsxH+pteAOdcGcAs64MWOBc4BbkCJHfgf/8QAHhEAAQQBBQAAAAAAAAAAAAAAEQABAgMQEyAhMMH/2gAIAQMBAT8B22WPF2C1fE18gVC2cnAxJ0VwjkIdH//EAB4RAAIDAAEFAAAAAAAAAAAAAAECAAMREBIgITBR/9oACAECAQE/Ae1VBRm+SuvrQNDQu5GqRRu8AbMnmZ7P/8QAMBAAAgECBAIIBQUAAAAAAAAAAQIDABEEEiExEzMFFSAiQVFhkRQjUmJxJCUyQFD/2gAIAQEABj8C/q8GPEI0n0iuM8qiO9s1Rxu4VpNEHnRBxkQI9aOHWVTKBcr42qUHEJ8nmfbQiixUbu2wB7HSazEx2BufTNQMcbqiurWO9r10aMNKsuUszZfAWpr4ro+NeM11mXvb1i5sE3z4VRkHnpXSsJfOwhTM3mb61FJMmC4eTTIne7DN8Mz6WJyb+lWMT5T9tExYIxknXLHauJ1cpvryRRkjwh1HebLYnyqQnBFi1gbx/wAqVFiYDba1tOxl6xsd9qH7i2+2WsoxrDKtyctBesGvb6aI6wZj6A0P1ht4LbfSkAxjSa+I307HKT2rlJ7Vy12ttXKT2rWJPas3DW/4rMI1v+P8H//EACYQAAICAQIFBAMAAAAAAAAAAAERACExQVEgYXGBkRChsfBAUMH/2gAIAQEAAT8h/Fu3RDLrMcns6m0ofnZIyY2h8cIgwPTN2m73gRUpl0XKD9Wh9TBnZrNgmrqIE3ARhrmHdD0fObQw7CACuVxQzTUJQjxDG4lIcoEvJlbJkluqvgHYzpKa5oSG4i89UlE17E2G72heCmzWGXU0qygkKc4oF0TtO65xjOWNQfS4DWrEZWj/ACPR1AvOYGFpH5oa3nIgBvpFA2XXzpCykGnCKXe1GAD1sfXWEGFoOPrng9/06wkbuzJLm/stpm181ilpBT7p8sL4gCJHBHIvj9D/AP/aAAwDAQACAAMAAAAQ88888kjzo8qRIH8tvfP888888//EACIRAQACAAUEAwAAAAAAAAAAAAEAERAgITFRQWGhwXHR8f/aAAgBAwEBPxDKWje/BcWaNX7NMYKXrsfC89oJVOevVPWFESt/UEOleIUfzBBlJTiUZ//EACARAQACAQQCAwAAAAAAAAAAAAEAESEQQVFhIDFxscH/2gAIAQIBAT8Q8VA5FkuDe74KLhnaqPb8hx33HOTjbYeO9MyCCj9iIy/cUmtstlvn/8QAIhABAQACAQQDAAMAAAAAAAAAAREAITFBUWFxEIGRQFCx/9oACAEBAAE/EP4jrFBKpCW9takbggICrbgE63WMnKOAVPQcZqBTRGJxhtDLuASO0D9mBUZHfdjjrbPeMIBXKgrCdhfr54YQu4tvL8EetMUQNmzaXsZ0HDtJG4CP1OneGLyPXIE8JZiGTQSWfdRQl1rLvJ9PokpMM5seaNrOYt735cAzVu1EipRa70TI0ZJQdKctiu9Qy0hyYLYgH0eO2U6cJ5Aieh091xAquFgSr0IwF1hFz5UhRU0QHlJk0pcQ9CU4sj5eMAUpMZopbrSeuusbg10LsEEIrabWbw9Lv3ig6ELqsMchGEYHQCr0eEyD5bcFBQJsUk0G7cJMSFwwiskDac0u5kGTJJZU7cpv34flwOyiq+ZenWubSd9huy/4fmW6RVrty+mjXjFym2rY3znOrBRoWz9yp1SJPhDf49Y/dhEESCeeHr+h/9kgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=http://www.ueuromed.org&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lagos,%20Nigeria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/876912811/PM-News-logo_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Fri, 06 Mar 2020 09:29:24 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/876912811 - X-Cache: - - MISS - X-Connection-Hash: - - be244f3bf5b0373268dbe7e689ef3f07 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '215' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - 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Z3/Zavyvmfe2dJpfb+d3sU/b9tZcp217a67Ttr0112nb3prr7Wzb/wdHLUApAzjkKgAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxMC0wNS0wNlQwMTowNTowNyswMDowMOl6l94AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTAtMDUtMDZUMDE6MDU6MDcrMDA6MDCYJy9iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAABJRU5ErkJggiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lagos,%20Nigeria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1809892004/madmen_fullbody2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '9335' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:25 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1809892004 - X-Cache: - - HIT - X-Connection-Hash: - - 3d1da705a1521d4a795d6e60da561da9 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '1705' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:25 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235849076974878721.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2553bac5cc7bee13817cadeeba73884c", - oauth_signature="WlKS2r7Z5yOdG%2BgqT7F1oyGaWW0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486965", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2871' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:26 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:26 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348696616826983; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:26 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_ynPCaplnm/7mGFejsS7VKA=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:26 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - c94c1e1baad9b34b01ff5238540a6526 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '899' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '133' - X-Transaction: - - 001c8d1400137b3f - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Mar 06 08:45:55 +0000 2020","id":1235849076974878721,"id_str":"1235849076974878721","text":"@vaughn_tan - The Four Horsemen of the modern apocalypse? The things no-one is really paying - attention to? Part of\u2026 https:\/\/t.co\/KngDOCJEPd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vaughn_tan","name":"vaughn - tan","id":12571722,"id_str":"12571722","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/KngDOCJEPd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235849076974878721","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":1235694112931643392,"in_reply_to_status_id_str":"1235694112931643392","in_reply_to_user_id":12571722,"in_reply_to_user_id_str":"12571722","in_reply_to_screen_name":"vaughn_tan","user":{"id":128544350,"id_str":"128544350","name":"Mike - Taylor","screen_name":"BrandTaylor","location":"West London","description":"Recovering - journalist. Born-again photographer. Not a DJ. Or an influencer. The original - Vindinista.","url":"https:\/\/t.co\/3jiXL0nOzN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3jiXL0nOzN","expanded_url":"http:\/\/www.instagram.com\/a_telephone_call_from_istanbul","display_url":"instagram.com\/a_telephone_ca\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":408,"friends_count":462,"listed_count":14,"created_at":"Thu - Apr 01 12:43:13 +0000 2010","favourites_count":4636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2387,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"536155","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229910103710674945\/Cry2PTBg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229910103710674945\/Cry2PTBg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128544350\/1578796396","profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"BBC7B7","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=West%20London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1229910103710674945/Cry2PTBg_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '347162' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:26 GMT - Last-Modified: - - Tue, 18 Feb 2020 23:24:34 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1229910103710674945 - X-Cache: - - HIT - X-Connection-Hash: - - 562f60ba8ed4e279eaba6749c43d8696 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '120' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:27 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=West%20London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:27 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235694112931643392.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fbfb9cb746a2b0f42644518b7feb4054", - oauth_signature="3aOJrv2cQ1UQMUpOPOsTJ6kEcTI%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486967", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2542' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:27 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:27 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348696791595733; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:27 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_ibDYPanvxDMK8K5WknWqfg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:27 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 4696afb5153128f186061d49cabadd1a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '898' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '128' - X-Transaction: - - 002f66a40008d390 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Mar 05 22:30:09 +0000 2020","id":1235694112931643392,"id_str":"1235694112931643392","text":"locusts. - microplastics. tornadoes. swine fever.","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,"user":{"id":12571722,"id_str":"12571722","name":"vaughn - tan","screen_name":"vaughn_tan","location":"London","description":"I study - innovation and uncertainty, sometimes in food and drink. Weekly newsletter: - https:\/\/t.co\/38TxYLOPxB","url":"https:\/\/t.co\/gx3aPPJOZm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gx3aPPJOZm","expanded_url":"https:\/\/vaughntan.org\/about","display_url":"vaughntan.org\/about","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/38TxYLOPxB","expanded_url":"http:\/\/uncertaintymindset.substack.com","display_url":"uncertaintymindset.substack.com","indices":[84,107]}]}},"protected":false,"followers_count":1762,"friends_count":619,"listed_count":45,"created_at":"Wed - Jan 23 00:24:00 +0000 2008","favourites_count":877,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3879,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"46505C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1809892004\/madmen_fullbody2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1809892004\/madmen_fullbody2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12571722\/1413409947","profile_link_color":"B52A03","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3EDEC","profile_text_color":"1E1D10","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1809892004/madmen_fullbody2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '9338' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:28 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1809892004 - X-Cache: - - MISS - X-Connection-Hash: - - 3d1da705a1521d4a795d6e60da561da9 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '1705' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%C3%9CT:%2051.249862,29.077097&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1216617590/marty-mcfly-3_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '515701' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:28 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1216617590 - X-Cache: - - HIT - X-Connection-Hash: - - 8d62ac3ec607ee2fe5c1d2ae3e1f37bf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '1905' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%C3%9CT:%2051.249862,29.077097&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/567030493162385408/yw6Zpo0-_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:29 GMT - Last-Modified: - - Sun, 15 Feb 2015 18:37:39 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/567030493162385408 - X-Cache: - - MISS - X-Connection-Hash: - - 37966532c532af7baddad4c5568f6e2f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '1579' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Castilla-La%20Mancha&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1176505878813560832/wvqp1gWC_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '430566' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Fri, 06 Mar 2020 09:29:29 GMT - Last-Modified: - - Tue, 24 Sep 2019 14:35:14 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1176505878813560832 - X-Cache: - - HIT - X-Connection-Hash: - - 97d65526159170d350d36b994008a3f9 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '4753' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Castilla-La%20Mancha&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Martinique,%20Fort-de-France&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1233550343457452033/4sKytDVf_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '7516' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:30 GMT - Last-Modified: - - Sat, 29 Feb 2020 00:29:34 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1233550343457452033 - X-Cache: - - HIT - X-Connection-Hash: - - 19a0e2aff1e35dd9138440a6ff920b21 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Martinique,%20Fort-de-France&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/879330839217274880/gJ_JgJbY_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '212544' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:30 GMT - Last-Modified: - - Mon, 26 Jun 2017 13:27:43 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/879330839217274880 - X-Cache: - - HIT - X-Connection-Hash: - - 33b4405e70b302cc9186ff5894faca52 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:30 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235857956555522048.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="50cb492ebc7df19d91f59922b9a73151", - oauth_signature="NMT9KGlpvj9N3cQ1Ae109Mth54M%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486970", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2857' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:31 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:31 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348697128382279; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:31 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_4qi5cf9unC1FBrkmdhNNqQ=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:31 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - d37d49a237eb4726b8833b6c8ae5ce38 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '897' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '188' - X-Transaction: - - 00fc771e001c42a6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Mar 06 09:21:12 +0000 2020","id":1235857956555522048,"id_str":"1235857956555522048","text":"@Une2nous - C''est-\u00e0-dire quasiment autant que les virus grippaux tournant chaque - ann\u00e9e dans le monde.\n\nLe\u2026 https:\/\/t.co\/Ab2AYGeQoJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Une2nous","name":"Une2nous","id":879319311785091074,"id_str":"879319311785091074","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/Ab2AYGeQoJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235857956555522048","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":1235857139664482310,"in_reply_to_status_id_str":"1235857139664482310","in_reply_to_user_id":879319311785091074,"in_reply_to_user_id_str":"879319311785091074","in_reply_to_screen_name":"Une2nous","user":{"id":354827087,"id_str":"354827087","name":"YM","screen_name":"Navymat","location":"Hic - et Nunc.","description":"Seul le R\u00e9el a du Sens. Nos racines sont notre - identit\u00e9.\nWe are all responsible of the Beauty of our world.\nHistory, - Archives, Genealogy, Aviron\/Rowing.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15472,"friends_count":5077,"listed_count":227,"created_at":"Sun - Aug 14 11:00:07 +0000 2011","favourites_count":241845,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39907,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000505376362\/1f35d26ae3fd03eb7dca53f4d789dd9b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000505376362\/1f35d26ae3fd03eb7dca53f4d789dd9b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354827087\/1394922861","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"fr"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hic%20et%20Nunc.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/378800000505376362/1f35d26ae3fd03eb7dca53f4d789dd9b_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '176948' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:31 GMT - Last-Modified: - - Sat, 14 Sep 2013 08:36:52 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/378800000505376362 - X-Cache: - - HIT - X-Connection-Hash: - - a8c4276ccf47b7582207dab3d32e2d8e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '7190' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH3QAJABkACAAYABdhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/AABEIADAAMAMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAFBgMHCAQBCf/EADEQAAIBAwMDAgUDAwUAAAAAAAECAwQFEQAGEgchMRNBCBQiUWEVgZEjMnFSVWJysf/EABgBAQADAQAAAAAAAAAAAAAAAAMBAgQF/8QAIREAAgICAgEFAAAAAAAAAAAAAQIAAxESEyFBFCIyUWH/2gAMAwEAAhEDEQA/AIdj7d3RfOrFyls8yQWyjvk7XN5V5RspEPFOPksQDg9sDJ/zrW1WektkIdAY+K+WIBA+zHwcfc6zZ0ti3A+593/o1dPSwfrjipMTDkfojxge/v7jRXrzuXcm0+mVRaqqqdpbpOIFnEhZ5IMFnznuMjA79++Nc6rBEdyS5E6fiA6m7Ro7xRx29KTcVXEjxTxJKRFHnsOUi+T3I4j+Roj8OfUTZE+302zCaewXP5iSRaOWU8JS7ZBjdv7jjA4nv29/Osj1lQhWN1PbOdC66tBnVEyWYjGD3zpUqAOYhY665n024Yc8hn3ORql/iWAbc2wGHn9TcftwbTx0M3HUbr6U2K8VjBqt6b0ag8s5kjJQk/k8cn/Okb4lhjcvT/H+7Edv+jaOwkAyE+QkHw71tHTbu3nS1aFfmL9iGUj6PU9JSEJ9iwzjPnBHnSp8cCXMXvbNWaZms8MTcHXw04k5MhPsSqrjPnv+dRbD3ptXbF433b91/Mmmud1cIIYi5HBU+rIOVIyCCO4I0+7O3ltTqna6vYF7aoufrq6w1L0/pmaNACsx/wBEq5/cjPg41FLYEl192Zkjfk9srd4XmssTE2uoq2npVK8eCyfXwx/xJI/bXHsue30c18qbjB60j2qWmolK9hPIVXnn24rzOmGgp9p0X6jark/r10dS6pNMzRLwV2RVUg4ycBmJ+4AHbRjZlBsjdfV3bG2aTn8nLP6NwSEN6NSUQuCrMeX1EcG++MjGdW5gTp3LmkhN89S7vhrq7ntPoobhdEkgprlcXltoZCxWNlALkfZmUkfjv40v9Sb9V3nd20o6mvmq0hvMfAyxqpXkkmR9IA9tH+snVfZKods2+uhE9qdsqIGRY3j+j00OACR4AHb+NUvYtwzX7ddllZFjhS903poMk90mPcn/AMHbWa0uX/IlYQV58wT1JecbmusVLE8skt5nXiqlj3WL2Gnn4YJYrV1QpWriKJYqSq5+u/Hj2HktjHj3xpb3js+9bkuG7Lja1heC1XKSWrDS8GVWjjw4/A49/fVU3S5OtIlIZjJHEuCSSeZzn37/AM6artRDfzCO6GSpu1c2Q6SVkn5BBdte9I6672fqTZK/b9FDW3GmYywQzHCMQjEljkYAGT59tCWqURxHK4TBDDPuNTbMqLtBuygnsUqpXj+nCzAFSWUhgc9scSQdKZSNXU627lrd519yrLKHq66oapzRozU5ZwCeDHzgk/vnRPp7ZbrZ7vYKi7Kkb1N8puEQcFlCpNkkDwcn86c6+82lB8vLf7aajiFeMVC9mxg9vbQ+V6Vdybepo6qKWSC8U4dEbJQlZj3+w865nqbXcoVwPua+JFXYHuf/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hic%20et%20Nunc.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:31 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235857139664482310.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9aa6070de526c5d802adce5ec4ed039f", - oauth_signature="LZtQs%2FUGqh1qF1vduNihH8P6KuU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486971", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '3583' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:32 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:32 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348697259327184; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:32 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_UOHiXynSxfJMvwJ3WxL3Hg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:32 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - cc605854691f339c68bfc74b52a9b95e - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '896' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '142' - X-Transaction: - - 000ca1290096eadb - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Mar 06 09:17:57 +0000 2020","id":1235857139664482310,"id_str":"1235857139664482310","text":"@Navymat - 1,7 fois plus contagieux que la grippe. Source : Les \u00c9chos. https:\/\/t.co\/a2lAHQg4Ad","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Navymat","name":"YM","id":354827087,"id_str":"354827087","indices":[0,8]}],"urls":[],"media":[{"id":1235857130546065408,"id_str":"1235857130546065408","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESalgytU8AA5dw4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESalgytU8AA5dw4.jpg","url":"https:\/\/t.co\/a2lAHQg4Ad","display_url":"pic.twitter.com\/a2lAHQg4Ad","expanded_url":"https:\/\/twitter.com\/Une2nous\/status\/1235857139664482310\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":533,"resize":"fit"},"large":{"w":750,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235857130546065408,"id_str":"1235857130546065408","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESalgytU8AA5dw4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESalgytU8AA5dw4.jpg","url":"https:\/\/t.co\/a2lAHQg4Ad","display_url":"pic.twitter.com\/a2lAHQg4Ad","expanded_url":"https:\/\/twitter.com\/Une2nous\/status\/1235857139664482310\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":533,"resize":"fit"},"large":{"w":750,"h":533,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235851194699898880,"in_reply_to_status_id_str":"1235851194699898880","in_reply_to_user_id":354827087,"in_reply_to_user_id_str":"354827087","in_reply_to_screen_name":"Navymat","user":{"id":879319311785091074,"id_str":"879319311785091074","name":"Une2nous","screen_name":"Une2nous","location":"","description":"\u201cIl - y a bien moins de difficult\u00e9s \u00e0 r\u00e9soudre un probl\u00e8me, - qu\u2019\u00e0 le poser\u201d J. de M.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1520,"friends_count":1391,"listed_count":21,"created_at":"Mon - Jun 26 12:43:55 +0000 2017","favourites_count":34983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18065,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879330839217274880\/gJ_JgJbY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879330839217274880\/gJ_JgJbY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/879319311785091074\/1542147121","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"fr"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/879330839217274880/gJ_JgJbY_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '212546' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:32 GMT - Last-Modified: - - Mon, 26 Jun 2017 13:27:43 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/879330839217274880 - X-Cache: - - MISS - X-Connection-Hash: - - 33b4405e70b302cc9186ff5894faca52 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:32 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235851194699898880.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2b0cf7c28571a9dc72e75103abe91158", - oauth_signature="%2BJgqN%2BdkISGwP0ZQh6ca5JEG6q4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486973", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '5730' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:33 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:33 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348697364681975; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:33 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_S5UlYke/+H7QWcaFvi+IBg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:33 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 278ba9e59e31eb02071a29b625baf87f - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '895' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '151' - X-Transaction: - - 0070436400a837b9 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Mar 06 08:54:20 +0000 2020","id":1235851194699898880,"id_str":"1235851194699898880","text":"@Une2nous - https:\/\/t.co\/GVVnZlERkN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Une2nous","name":"Une2nous","id":879319311785091074,"id_str":"879319311785091074","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/GVVnZlERkN","expanded_url":"https:\/\/twitter.com\/Navymat\/status\/1235833205493608449?s=19","display_url":"twitter.com\/Navymat\/status\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":1235694134633148417,"in_reply_to_status_id_str":"1235694134633148417","in_reply_to_user_id":879319311785091074,"in_reply_to_user_id_str":"879319311785091074","in_reply_to_screen_name":"Une2nous","user":{"id":354827087,"id_str":"354827087","name":"YM","screen_name":"Navymat","location":"Hic - et Nunc.","description":"Seul le R\u00e9el a du Sens. Nos racines sont notre - identit\u00e9.\nWe are all responsible of the Beauty of our world.\nHistory, - Archives, Genealogy, Aviron\/Rowing.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15472,"friends_count":5077,"listed_count":227,"created_at":"Sun - Aug 14 11:00:07 +0000 2011","favourites_count":241845,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39907,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000505376362\/1f35d26ae3fd03eb7dca53f4d789dd9b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000505376362\/1f35d26ae3fd03eb7dca53f4d789dd9b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354827087\/1394922861","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235833205493608449,"quoted_status_id_str":"1235833205493608449","quoted_status":{"created_at":"Fri - Mar 06 07:42:51 +0000 2020","id":1235833205493608449,"id_str":"1235833205493608449","text":"@gabirobfrance - Le #coronavirus est aussi contagieux qu''une grippe normale. Nettement moins - que la rougeole ou les o\u2026 https:\/\/t.co\/RuiisTzLxb","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[18,30]}],"symbols":[],"user_mentions":[{"screen_name":"gabirobfrance","name":"Gabriel - Robin","id":1899879582,"id_str":"1899879582","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/RuiisTzLxb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235833205493608449","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":1235715878345469952,"in_reply_to_status_id_str":"1235715878345469952","in_reply_to_user_id":1899879582,"in_reply_to_user_id_str":"1899879582","in_reply_to_screen_name":"gabirobfrance","user":{"id":354827087,"id_str":"354827087","name":"YM","screen_name":"Navymat","location":"Hic - et Nunc.","description":"Seul le R\u00e9el a du Sens. Nos racines sont notre - identit\u00e9.\nWe are all responsible of the Beauty of our world.\nHistory, - Archives, Genealogy, Aviron\/Rowing.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15472,"friends_count":5077,"listed_count":227,"created_at":"Sun - Aug 14 11:00:07 +0000 2011","favourites_count":241845,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39907,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000505376362\/1f35d26ae3fd03eb7dca53f4d789dd9b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000505376362\/1f35d26ae3fd03eb7dca53f4d789dd9b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354827087\/1394922861","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive_appealable":false,"lang":"fr"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"und"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hic%20et%20Nunc.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:34 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235694134633148417.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f3742ca5bcab23bb6680864c511c5113", - oauth_signature="ynp4IMCiZaIfa%2BU8v%2FTbqpIJBNo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486974", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2524' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:34 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:34 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348697459818044; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:34 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_pIaUAmfupW+cW3RLkOi8uw=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:34 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - dacf996a81b4f9a2eb21fe50cbf0982b - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '894' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '172' - X-Transaction: - - 00a3722700534481 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Mar 05 22:30:14 +0000 2020","id":1235694134633148417,"id_str":"1235694134633148417","text":"Je - sais pas vous mais moi j\u2019ai une \u00e9norme bouff\u00e9e de rage l\u00e0. - Ce connard sociopathe nous annonce \u00e7a comme \u00e7a, comme\u2026 https:\/\/t.co\/ADTcQ4qBOf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ADTcQ4qBOf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235694134633148417","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":879319311785091074,"id_str":"879319311785091074","name":"Une2nous","screen_name":"Une2nous","location":"","description":"\u201cIl - y a bien moins de difficult\u00e9s \u00e0 r\u00e9soudre un probl\u00e8me, - qu\u2019\u00e0 le poser\u201d J. de M.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1520,"friends_count":1391,"listed_count":21,"created_at":"Mon - Jun 26 12:43:55 +0000 2017","favourites_count":34983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18065,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879330839217274880\/gJ_JgJbY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879330839217274880\/gJ_JgJbY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/879319311785091074\/1542147121","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"fr"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/879330839217274880/gJ_JgJbY_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '212548' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:34 GMT - Last-Modified: - - Mon, 26 Jun 2017 13:27:43 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/879330839217274880 - X-Cache: - - HIT - X-Connection-Hash: - - 33b4405e70b302cc9186ff5894faca52 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Thailand&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1215191170222919682/GVYbfGGB_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '89430' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:35 GMT - Last-Modified: - - Thu, 09 Jan 2020 08:36:46 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1215191170222919682 - X-Cache: - - HIT - X-Connection-Hash: - - 25046f6b719d89f2a47ee80fd4080142 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Thailand&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dortmund,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/987288232101588992/mbINmDVH_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '344732' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:36 GMT - Last-Modified: - - Fri, 20 Apr 2018 11:11:52 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/987288232101588992 - X-Cache: - - HIT - X-Connection-Hash: - - 110a0dd87c691603b43c76a3ccd62525 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2083' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:36 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dortmund,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:36 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:36 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:36 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:36 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1061911132284354560/k66AKcdk_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '509861' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:36 GMT - Last-Modified: - - Mon, 12 Nov 2018 09:16:37 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1061911132284354560 - X-Cache: - - HIT - X-Connection-Hash: - - 7963b88cc19a0b211b2b2dc27fba447b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:36 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:36 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:36 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234391065009901569/XKAlt_jS_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '349953' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:37 GMT - Last-Modified: - - Mon, 02 Mar 2020 08:10:18 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1234391065009901569 - X-Cache: - - HIT - X-Connection-Hash: - - 5ccb24472a3955882cef7fb5596e6abd - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH5AADAAIACAAMABJhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAEBQIDBgEHAP/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf/aAAwDAQACEAMQAAABgKy5x+jB8MdeTIpMyllL7UwG1Zwq4b32WZ7xiV1wsLENKp7wslVBvWL62JSuIDdKJcyoYKwGq5tedNV9TeU2ng/tUy0G4OgogCodxCm8A8ggUWo7fEu7j2JYeZjrj462mupLh9f5rOK6dn2uH//EACkQAAEEAAUDAgcAAAAAAAAAAAIAAQMEBRESITEQExQiQQYVIzIzNEL/2gAIAQEAAQUCxC1pktParDHakBgmNnHImBmZE+Sk3d3BfSV2v3hI2nrN48quWozaAiaKIlISnmFpBGQrHYqphQxCuzGtClUbekuXjEmOoC7RphTZsmzdHs39cD7jw/QVkmZWpNAxvm++n3BvSS2Qplkrcbk8MOTsGxg+cf2H0wHESuIehqNFpyzZ31bYjcCrD8+JUJzr2KU4WICPSwyhImJFJtrbVKeiPFLnlT5sh2Xw7Z7cvLWKAyrxLEbnUsSuEcNSPF8QOy77un4wr9oOA4Pl+MR/Hb5i6f/EAB4RAAMAAgIDAQAAAAAAAAAAAAABAgMREDESFCEi/9oACAEDAQE/Aa2S63opEod6Hw+hmhsn6ymUIT2JM8WxrjH2TkrG9ye9Y6dfpjZ//8QAGxEBAQADAQEBAAAAAAAAAAAAAQACEBEhMWH/2gAIAQIBAT8BLILGfYw/dkTExGszjdjRjZnkXY+6/8QAKxAAAQIEBAUDBQAAAAAAAAAAAQACAxARIRIiMlEgMWGBkgQTQTM0QEKR/9oACAEBAAY/Ag0BxTC4MGP4QJAd1YVmr34Oc+qbA9WMD2aX0smY4kJmHVQ80GwoT3daIYhQzDHOw9VED31a34rS26+4iecuS0CVJ3aCqtt0WiB4fmXm9kWgeNtuC44DEd2G6+gPJNis5hNisNirrK8KyzUC1BFzjQBE/o3TMwSbOuJYmZXLLVZj/UXHuV7Yq2FtvLkZQeJ0/wD/xAAjEAADAAICAwABBQAAAAAAAAAAAREhMUFhEFFxIIGRocHh/9oACAEBAAE/Ic2g4ktUyTpKom1uXRopzHSNDU7NQQDOmCMxUnYwqwmmuGMhP8pvorpaOn0TwPGUPPriqphMsFy0NitLbt5LrwVfI08ox7lX4b6Nkg5C3JBqO0amm1Sq8BshNZzWNrG0ymDdo5DTJUIKiSF9g2xkLFRUIT08VpoLKQx1Q3iKKxXDSGxTOG6olDDeBuYMnwjJZxxhJmIevc8I3BOva9FWSf2foocDLMzauTA6TnZHJ9GRVJ7fCYlCJVtjKr0J/fjl7wOHIxmHTd7Ox5Er9pmUk9sPwTaWUbYv9X0NgnbK/wDI2fPB1/hXt+n8g2X3x//aAAwDAQACAAMAAAAQR05uRhQsD/BW2BYmpFqNzYUqm//EABsRAQEBAQEBAQEAAAAAAAAAAAEAESExURBB/9oACAEDAQE/EBwnn9sxGzlga27AWaeWpyOAuCA+n5E6xDy8GQ5YJ3QtXko9lyfj7bqxji4b9y2F1bS//8QAGhEBAQEBAQEBAAAAAAAAAAAAAQARITEQcf/aAAgBAgEBPxDJ+yDTl6tLCNOzNsl29SWU8PnOyl406LghyDOxLj2Vd4fn/8QAJBABAAICAgEEAwEBAAAAAAAAAQARITFBYVEQcYGxkdHxofD/2gAIAQEAAT8QTjokS1a4l5hIkgAcuDmUQOpLVZYhumvZhbcgpQH7hRAEufGZc5lnUHREWWvYZnR+LDzrL3g0wY1E2sxpkE2RBrzSU5gKsyvwpCoOlI9lq4pHPd7ovEz7xM7MoLeoPGdRG86riIhDSvmf2H7i0CUy0EdkDVV5rG1qUdYIU3FwHfiVEeV4AJH0KlhqeKeJ/H/uaKMaVBkMPBCpEztysDA6IY8rgK6YiNFT2Y5RxLXtOEikC9CH3drbKw3iF2crRDAZWUmPSEWmGgCIK1ANU3Eh2WCcIJRwzJSTEZhPhKqhjoJ15H7JUCQzW8S1QGuGF0FIvCUEU3W+ZUuBH9vwWnhJ/d/qKjV9tRzLpIeqwq88i7GWi1DguEtpcAfDkj188CzEQNcFBcNU0hV/EQ+lKgDmZk0s1XK7Z0EFvWFtcRumpXF8wSUG5fmTIwQEQjXJlGaMY4EuBmNl6IsKuVjwvTqWmcuyvx6E/wBOfT+p/hPUN3t6hv8A39en/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Calvados,%20Basse-Normandie&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:37 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232791316158959623/klvOIG8-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '180896' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:37 GMT - Last-Modified: - - Wed, 26 Feb 2020 22:13:28 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1232791316158959623 - X-Cache: - - HIT - X-Connection-Hash: - - 793e0100f0ab07d11eeab0336b53a59c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Calvados,%20Basse-Normandie&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bruxelles,%20Belgique&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:37 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/978913692065648640/CnPVZ711_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '270255' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:37 GMT - Last-Modified: - - Wed, 28 Mar 2018 08:34:26 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/978913692065648640 - X-Cache: - - HIT - X-Connection-Hash: - - 4698abef1b0e4ad78f1e6ee124571c25 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bruxelles,%20Belgique&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=L%27Hospitalet%20de%20Llobregat&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:38 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1134175616310362112/M1bV_M3M_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:38 GMT - Last-Modified: - - Thu, 30 May 2019 19:09:53 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1134175616310362112 - X-Cache: - - MISS - X-Connection-Hash: - - 34201d73dc18162b0b6601a73b0ce92b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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Y04Bc+N/iKKu47n1VDtFOA45Chd1mmVVhtAYbdVh6em61q+YtoZZ6wNUQrRB0mEt2qv2lTlmLAKMauoxXVRBF0a0moyChBbXTfafxv0iLzQjhK0nDX5mADKN2GK9YB2ggS5Z/URaA4obwekZMyG2mboIFGfE+JCewsUwRffyqMBGbohfs2QEBVcAqi3pnHjKkrnsPRsutWZLl86ILapH/svppWCF3d9oUhhFBwLzEpmtNlxwkWQjlsz4TBVqV0VVuumIdCsPMT98YNGiA12R1zLyqYDhLRsFjLftN4CWx7i6ZSS3tgDSALAdw1oiO7YSVtOVrWYN6HtQekowyyp6sV7QHaXuhVY9vOV1CxVurgUVrGfVn036lC5ZCL104iGGU1sXu+SKxyq9iGfL9xUeBbD1iFZl5K45e0dOtp8QScCfatpo81IvxYnKtwiWmxtW65n2CXlfVog6Gtqym4d2lBgxrm7ia5aMUuvfmKbuZLgaDbxLn1mUmA6YeGZJx1wFNHTvAtlWdcj71CCV0OvHg7w8phkJ69grfWfx2Pkd3ENOd5yeZLWdCjqxnm7iJ2csDFKyHr5Sj3UMMrpZzAmwbUvdWWPMrcvNk986m1ZJYg6cmPAVR9X6qszEDDgZY1V4PmuJ2Ps7/wCwO+JH2PJPquU+93z374mvw/JNP3v/AD//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=L%27Hospitalet%20de%20Llobregat&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:38 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1235246706817630207&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="21852650049a185013cd21caabff95ce", - oauth_signature="bVQJ%2BMMvHdHPKZDQK3WM2XpzcxY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486978", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '510691' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:39 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:39 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348697953234713; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:39 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_FnIyAConKoxlyy8fGGDhvQ=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:39 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - fa7c5aa604f9847c41d15ea058e1fcb1 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '178' - X-Rate-Limit-Reset: - - '1583487846' - X-Response-Time: - - '369' - X-Transaction: - - '0084541d003b7ec1' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Wed Mar 04 16:52:19 +0000 2020","id":1235246706792361984,"id_str":"1235246706792361984","text":"RT - @Imani_Barbarin: Coronavirus reporting be like:\n\nPeople: \u201cBleach?\u201d\n\nNews: - \u201cwash your hands.\u201d\n\nP: \u201cmasks?\u201d\n\nN: \u201csoap and - water.\u201d\n\nP: \u201cgar\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Imani_Barbarin","name":"Crutches&Spice - \u267f\ufe0f : Rude For A Disabled Person","id":87371781,"id_str":"87371781","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2192375461,"id_str":"2192375461","name":"Dayna","screen_name":"daynagasaki","location":"British - Columbia, Canada","description":"She\/her \u2660\ufe0f\nNo, but I''ll try - - Dikrats \ud83c\udf20 Take a smile - Bowie Duddy \ud83d\udc9e Dink dink - \ud83d\udccd Slightly Wild \u261d\ufe0f #NoMoreCRAPtions \u23ef\u2328","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":950,"friends_count":2265,"listed_count":23,"created_at":"Wed - Nov 13 14:10:12 +0000 2013","favourites_count":540001,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":102648,"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\/1215165375848935424\/bIBtogp5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215165375848935424\/bIBtogp5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2192375461\/1566143739","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:31:02 +0000 2020","id":1235180953900900352,"id_str":"1235180953900900352","text":"Coronavirus - reporting be like:\n\nPeople: \u201cBleach?\u201d\n\nNews: \u201cwash your - hands.\u201d\n\nP: \u201cmasks?\u201d\n\nN: \u201csoap and water.\u201d\n\nP:\u2026 - https:\/\/t.co\/os7p3a26D6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/os7p3a26D6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235180953900900352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87371781,"id_str":"87371781","name":"Crutches&Spice - \u267f\ufe0f : Rude For A Disabled Person","screen_name":"Imani_Barbarin","location":"Pennsylvania, - USA","description":"she\/her Black girl magic+disabled pride |MA Global Comms - | my thoughts | #DisTheOscars + #AbledsAreWeird #ThingsDisabledPeopleKnow - | \u2709\ufe0f imani.barbarin gmail","url":"https:\/\/t.co\/yQRnUA9585","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yQRnUA9585","expanded_url":"http:\/\/www.CrutchesAndSpice.com","display_url":"CrutchesAndSpice.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":43482,"friends_count":1062,"listed_count":329,"created_at":"Wed - Nov 04 05:29:09 +0000 2009","favourites_count":98813,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":44635,"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\/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\/1227703596638253058\/DKq7FG2f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227703596638253058\/DKq7FG2f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87371781\/1579798247","profile_link_color":"FE1264","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":178,"favorite_count":667,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":178,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706679312385,"id_str":"1235246706679312385","text":"https:\/\/t.co\/M06o3Aa5W0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/M06o3Aa5W0","expanded_url":"https:\/\/buff.ly\/32Klhng","display_url":"buff.ly\/32Klhng","indices":[0,23]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"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,"user":{"id":59881482,"id_str":"59881482","name":"24x7 - Magazine","screen_name":"24x7mag","location":"Leawood, KS","description":"The - resource HTM pros have relied on for 20+ years, to deliver complete coverage - of tech, regulatory, and industry trends, as well as managerial advice. #biomed","url":"http:\/\/t.co\/kxeGy1eYk5","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/kxeGy1eYk5","expanded_url":"http:\/\/24x7mag.com","display_url":"24x7mag.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1410,"friends_count":834,"listed_count":34,"created_at":"Fri - Jul 24 20:35:56 +0000 2009","favourites_count":124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3429,"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\/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\/893312821647163393\/MjP4sWvp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/893312821647163393\/MjP4sWvp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59881482\/1553262026","profile_link_color":"7D232B","profile_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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706662371328,"id_str":"1235246706662371328","text":"RT - @mshiteshmohan: \u0926\u0926\u094d\u0926\u093e\u091c\u0940\u0915\u0939\u093f\u0928:\n\u0939\u092e\u093e\u0930\u0940 - \u092e\u0940\u0921\u093f\u092f\u093e \u0915\u094b\u0930\u094b\u0928\u093e - \u0935\u093e\u092f\u0930\u0938 \u0915\u093e \u0910\u0938\u093e \u0924\u092e\u093e\u0936\u093e - \u092c\u0928\u093e \u0930\u0939\u0940 \u0939\u0948 \u0915\u093f \u091c\u0932\u094d\u0926\u0940 - \u0939\u0940 #coronavirus \u0916\u0941\u0926 UN \u0938\u0947 \u0905\u092a\u0928\u0940 - \u0938\u0941\u0930\u0915\u094d\u0937\u093e \u0915\u0940 \u0917\u0941\u0939\u093e\u0930\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[94,106]}],"symbols":[],"user_mentions":[{"screen_name":"mshiteshmohan","name":"M.S.Hitesh - Mohan","id":3251391355,"id_str":"3251391355","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":712894805223682048,"id_str":"712894805223682048","name":"\u0950 - \u0928\u092e\u093e\u092e\u093f\ud83e\udd9a\ud83c\uddee\ud83c\uddf3","screen_name":"SarojShrnM","location":"","description":"\u0915\u094d\u0937\u092e\u093e - \u0936\u094b\u092d\u0924\u0940 \u0909\u0938 \u092d\u0941\u091c\u0902\u0917 - \u0915\u094b\n\u091c\u093f\u0938\u0915\u0947 \u092a\u093e\u0938 \u0917\u0930\u0932 - \u0939\u094b\n\u0909\u0938\u0915\u094b \u0915\u094d\u092f\u093e \u091c\u094b - \u0926\u0902\u0924\u0939\u0940\u0928\n\u0935\u093f\u0937\u0930\u0939\u093f\u0924, - \u0935\u093f\u0928\u0940\u0924, \u0938\u0930\u0932 \u0939\u094b\n\ud83d\udcc3\u2764\u0950\u0930\u0941\u0926\u094d\u0930\u093e\u092f - \u0928\u092e\u0903\n#\u0938\u0941\u092c\u0939_\u0915\u0940_\u0927\u0941\u092a\n#Save_water_save_our_future","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24850,"friends_count":536,"listed_count":80,"created_at":"Thu - Mar 24 06:52:21 +0000 2016","favourites_count":9771,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":382155,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1175970846503890945\/NrZNP3ca_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1175970846503890945\/NrZNP3ca_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/712894805223682048\/1570194789","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:22:20 +0000 2020","id":1235239163307278336,"id_str":"1235239163307278336","text":"\u0926\u0926\u094d\u0926\u093e\u091c\u0940\u0915\u0939\u093f\u0928:\n\u0939\u092e\u093e\u0930\u0940 - \u092e\u0940\u0921\u093f\u092f\u093e \u0915\u094b\u0930\u094b\u0928\u093e - \u0935\u093e\u092f\u0930\u0938 \u0915\u093e \u0910\u0938\u093e \u0924\u092e\u093e\u0936\u093e - \u092c\u0928\u093e \u0930\u0939\u0940 \u0939\u0948 \u0915\u093f \u091c\u0932\u094d\u0926\u0940 - \u0939\u0940 #coronavirus \u0916\u0941\u0926 UN \u0938\u0947 \u0905\u092a\u0928\u0940 - \u0938\u0941\u0930\u0915\u094d\u0937\u093e \u0915\u0940\u2026 https:\/\/t.co\/SAiJnQqJGT","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[75,87]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SAiJnQqJGT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235239163307278336","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3251391355,"id_str":"3251391355","name":"M.S.Hitesh - Mohan","screen_name":"mshiteshmohan","location":"","description":"Retired - Engineer, Author , Writer. Promoter : LipsIT , GSR Solar, Leela Institute. - Followed by @byadavbjp @nstomer. Tweets in Likes","url":"https:\/\/t.co\/cCzz9GN9Uf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCzz9GN9Uf","expanded_url":"http:\/\/www.mshiteshmohan.wordpress.com","display_url":"mshiteshmohan.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13425,"friends_count":7521,"listed_count":75,"created_at":"Sun - Jun 21 06:35:55 +0000 2015","favourites_count":16928,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":176303,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215319960567701505\/ljgvSO1S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215319960567701505\/ljgvSO1S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3251391355\/1434885164","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":41,"favorited":false,"retweeted":false,"lang":"hi"},"is_quote_status":false,"retweet_count":57,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706578595840,"id_str":"1235246706578595840","text":"RT - @Vanity_Sexx: el coronavirus se confirmo en 72 pa\u00edses y vos todavia sin - confirmarme tu amor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Vanity_Sexx","name":"benito - cerati","id":732061772,"id_str":"732061772","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":935916675320467457,"id_str":"935916675320467457","name":"Nichu - Gonz\u00e1lez","screen_name":"NichuGonzalez","location":"Buenos Aires, Argentina","description":"since - 1995\/","url":"https:\/\/t.co\/DavXeRfGZW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DavXeRfGZW","expanded_url":"http:\/\/Instagram.com\/nichu_gonzalez","display_url":"Instagram.com\/nichu_gonzalez","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":110,"listed_count":0,"created_at":"Wed - Nov 29 17:01:38 +0000 2017","favourites_count":6986,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1573,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1059866715595640832\/bBnoIRzd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1059866715595640832\/bBnoIRzd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:17:44 +0000 2020","id":1235238006241529862,"id_str":"1235238006241529862","text":"el - coronavirus se confirmo en 72 pa\u00edses y vos todavia sin confirmarme tu - amor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":732061772,"id_str":"732061772","name":"benito - cerati","screen_name":"Vanity_Sexx","location":"","description":"mis tweets - tienen multiples interpretaciones","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127450,"friends_count":1229,"listed_count":134,"created_at":"Thu - Aug 02 03:33:27 +0000 2012","favourites_count":47925,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30691,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1197245050763264001\/T4sd4vnx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197245050763264001\/T4sd4vnx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/732061772\/1535051546","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":324,"favorite_count":1197,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":324,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706465353736,"id_str":"1235246706465353736","text":"Los - especuladores aprovechan todo: Por el coronavirus, se duplicaron la demanda - y los precios de los barbijos y el\u2026 https:\/\/t.co\/iMKAqxoIiC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iMKAqxoIiC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246706465353736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.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,"user":{"id":1131725414110507008,"id_str":"1131725414110507008","name":"Fernando - Lagar","screen_name":"lagar_fernando","location":"Santiago del Estero, Argentina","description":"Periodista - \/ Peri\u00f3dico El Urbano Peri\u00f3dico Cuartopoder Revista InfoSantiago","url":"https:\/\/t.co\/Z2AOPUoLB9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z2AOPUoLB9","expanded_url":"http:\/\/www.elurbanoweb.com","display_url":"elurbanoweb.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":40,"listed_count":0,"created_at":"Fri - May 24 00:55:39 +0000 2019","favourites_count":160,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3322,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131726460736167936\/O5z2yLD4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131726460736167936\/O5z2yLD4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706452606977,"id_str":"1235246706452606977","text":"RT - @UNCpublichealth: \u26a1\ufe0f \u201c#Coronavirus: The UNC Gillings School - Responds\u201d \n\nOur researchers are working day & night to share accurate - inform\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[25,37]}],"symbols":[],"user_mentions":[{"screen_name":"UNCpublichealth","name":"UNC - Public Health","id":41204222,"id_str":"41204222","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4331160148,"id_str":"4331160148","name":"BallDon''tLie","screen_name":"sbknowles1","location":"","description":"Both - teams played hard","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":312,"listed_count":0,"created_at":"Mon - Nov 30 17:29:35 +0000 2015","favourites_count":14531,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2746,"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\/878312580544045056\/zk8JXMvi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/878312580544045056\/zk8JXMvi_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:51:32 +0000 2020","id":1235246509311979521,"id_str":"1235246509311979521","text":"\u26a1\ufe0f - \u201c#Coronavirus: The UNC Gillings School Responds\u201d \n\nOur researchers - are working day & night to share accurate inf\u2026 https:\/\/t.co\/4VJy2htN46","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[4,16]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4VJy2htN46","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246509311979521","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":41204222,"id_str":"41204222","name":"UNC - Public Health","screen_name":"UNCpublichealth","location":"Chapel Hill, North - Carolina","description":"At the Gillings School, we''re on the front lines - of public health. From disease prevention to promoting equity and engineering - a healthier planet: We''re on it.","url":"http:\/\/t.co\/SQW1sN82dM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/SQW1sN82dM","expanded_url":"http:\/\/www.sph.unc.edu","display_url":"sph.unc.edu","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":15303,"friends_count":729,"listed_count":465,"created_at":"Tue - May 19 20:37:11 +0000 2009","favourites_count":8448,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8746,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F4F4F4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661526179019624448\/XlMVkCdn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661526179019624448\/XlMVkCdn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41204222\/1527183278","profile_link_color":"56A0D3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CBDEF2","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"},"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":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706427449345,"id_str":"1235246706427449345","text":"RT - @HausofHilton: Dah 50 kes positif Coronavirus di Malaysia. Please stay safe - guys.\n\nAvoid unnecessary travel.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HausofHilton","name":"Nimelesh","id":65867767,"id_str":"65867767","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":714248772,"id_str":"714248772","name":"\u03b1\u0438\u03b9\u043c\u043c\u043c\u043c\u043c - \ud83c\udf38","screen_name":"nuanfar","location":"Kedah","description":"H&M - @Ace877Jr \ud83d\udc95","url":"https:\/\/t.co\/jDtaJUu2bc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jDtaJUu2bc","expanded_url":"http:\/\/www.instagram.com\/nuanfar","display_url":"instagram.com\/nuanfar","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":889,"friends_count":811,"listed_count":1,"created_at":"Tue - Jul 24 12:58:04 +0000 2012","favourites_count":45877,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":45392,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"57A9E0","profile_background_image_url":"http:\/\/abs.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\/1137213070185443328\/yOWbIzdF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137213070185443328\/yOWbIzdF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/714248772\/1559967701","profile_link_color":"3A9980","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:42:06 +0000 2020","id":1235138438707294208,"id_str":"1235138438707294208","text":"Dah - 50 kes positif Coronavirus di Malaysia. Please stay safe guys.\n\nAvoid unnecessary - travel.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65867767,"id_str":"65867767","name":"Nimelesh","screen_name":"HausofHilton","location":"Kuala - Lumpur, Malaysia","description":"Oppa | Leo | Not Your Typical Doctor | World - Traveler | Zumba | IG: hausofhilton \"I believe that life is a prize, but - to live doesn''t mean you''re alive\"","url":"https:\/\/t.co\/BxKnpD6s78","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BxKnpD6s78","expanded_url":"http:\/\/about.me\/hausofhilton","display_url":"about.me\/hausofhilton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52558,"friends_count":841,"listed_count":53,"created_at":"Sat - Aug 15 09:36:35 +0000 2009","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":92257,"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\/1210451336501678083\/Spf9fnw-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210451336501678083\/Spf9fnw-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65867767\/1551713735","profile_link_color":"0F6629","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"485C3A","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25005,"favorite_count":20320,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":25005,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706398244864,"id_str":"1235246706398244864","text":"RT - @ROSNALJU: Coronavirus or not \n\nYou shouldn\u2019t have to be told to wash - your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ROSNALJU","name":"RO$NA","id":224805342,"id_str":"224805342","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2749699792,"id_str":"2749699792","name":"karen","screen_name":"simplybeautyk","location":"","description":"atl","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":465,"friends_count":332,"listed_count":1,"created_at":"Thu - Aug 21 23:11:55 +0000 2014","favourites_count":10967,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19975,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234654852166356992\/CBYw7H3U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234654852166356992\/CBYw7H3U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2749699792\/1583199631","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 19:48:03 +0000 2020","id":1234566154523275265,"id_str":"1234566154523275265","text":"Coronavirus - or not \n\nYou shouldn\u2019t have to be told to wash your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224805342,"id_str":"224805342","name":"RO$NA","screen_name":"ROSNALJU","location":"SLC","description":"IG - @ROSNALJU","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2460,"friends_count":585,"listed_count":12,"created_at":"Thu - Dec 09 22:32:46 +0000 2010","favourites_count":17407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"40030B","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\/1227249944861401088\/100hmgPB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227249944861401088\/100hmgPB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224805342\/1510187001","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"959FA6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86346,"favorite_count":208737,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":86346,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706247290880,"id_str":"1235246706247290880","text":"RT - @Channel4News: \u201cIt\u2019s not important what famous people say... My - opinion about corona, it''s not important.\"\n\nLiverpool manager J\u00fcrgen - Klo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Channel4News","name":"Channel - 4 News","id":14569869,"id_str":"14569869","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":709516008898355204,"id_str":"709516008898355204","name":"Josh - Stone \ud83d\udc99\ud83d\udc9b","screen_name":"Joshstone23","location":"Leeds, - England","description":"it''s because im........","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":1226,"listed_count":1,"created_at":"Mon - Mar 14 23:06:13 +0000 2016","favourites_count":12453,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4944,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/971759553078595584\/F-5TuvJE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/971759553078595584\/F-5TuvJE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/709516008898355204\/1457998637","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:19:49 +0000 2020","id":1235178131880841216,"id_str":"1235178131880841216","text":"\u201cIt\u2019s - not important what famous people say... My opinion about corona, it''s not - important.\"\n\nLiverpool manager J\u00fcrg\u2026 https:\/\/t.co\/UvxfcXrp9L","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UvxfcXrp9L","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235178131880841216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14569869,"id_str":"14569869","name":"Channel - 4 News","screen_name":"Channel4News","location":"United Kingdom","description":"Stories - that reveal and inspire, challenging expectations. \n\nWeekdays 7-8pm on Channel - 4.","url":"https:\/\/t.co\/LBhZvqcoKL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LBhZvqcoKL","expanded_url":"http:\/\/www.channel4.com\/news","display_url":"channel4.com\/news","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2279327,"friends_count":4527,"listed_count":10295,"created_at":"Mon - Apr 28 14:29:37 +0000 2008","favourites_count":521,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":100860,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2C1C36","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875404558528393216\/cTknVhwm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875404558528393216\/cTknVhwm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14569869\/1578925574","profile_link_color":"421174","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAF0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1918,"favorite_count":8190,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1918,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706163412995,"id_str":"1235246706163412995","text":"RT - @sarameikasai: If you\u2019re using the coronavirus situation as an excuse - to be racist, please unfollow me asap.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sarameikasai","name":"Sara - Mei Kasai","id":2685187191,"id_str":"2685187191","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2497786115,"id_str":"2497786115","name":"Emanuel - Gracia \u2122\u2615","screen_name":"brianycus","location":"Finding the One - Piece","description":"Content Creator & host of @GraciaCafe! Author of #SacredTrinity - series & rookie photographer!!","url":"https:\/\/t.co\/l0oMBV9iU3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l0oMBV9iU3","expanded_url":"http:\/\/Ko-fi.com\/brianycus","display_url":"Ko-fi.com\/brianycus","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":370,"friends_count":646,"listed_count":8,"created_at":"Sun - Apr 20 18:12:49 +0000 2014","favourites_count":26341,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14614,"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\/1235044580355117058\/kOGfRDdt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235044580355117058\/kOGfRDdt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2497786115\/1581970858","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:27:01 +0000 2020","id":1235225241368104963,"id_str":"1235225241368104963","text":"If - you\u2019re using the coronavirus situation as an excuse to be racist, please - unfollow me asap.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2685187191,"id_str":"2685187191","name":"Sara - Mei Kasai","screen_name":"sarameikasai","location":"","description":"French - Canadian Cosplayer \u273f Gamer & Otaku \ud83c\udfae \u273f For bookings: - kasaicosplay@gmail.com \u273f Exclusive content on https:\/\/t.co\/FzVoaaYqOe - \u2764\ufe0f\ud83c\udf51","url":"https:\/\/t.co\/RTvuuaSfN3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RTvuuaSfN3","expanded_url":"http:\/\/patreon.com\/sarameikasai","display_url":"patreon.com\/sarameikasai","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/FzVoaaYqOe","expanded_url":"https:\/\/onlyfans.com\/sarameikasai","display_url":"onlyfans.com\/sarameikasai","indices":[106,129]}]}},"protected":false,"followers_count":240542,"friends_count":407,"listed_count":690,"created_at":"Tue - Jul 08 00:47:14 +0000 2014","favourites_count":12039,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1115254773698187265\/tsaHm3m8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1115254773698187265\/tsaHm3m8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2685187191\/1569032719","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":56,"favorite_count":804,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":56,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246706041802757,"id_str":"1235246706041802757","text":"RT - @narendramodi: Experts across the world have advised to reduce mass gatherings - to avoid the spread of COVID-19 Novel Coronavirus. Hence,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"narendramodi","name":"Narendra - Modi","id":18839785,"id_str":"18839785","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1202844113017569280,"id_str":"1202844113017569280","name":"Rahul - Verma","screen_name":"RahulVe50902790","location":"","description":"Akshay - sir \ud83d\ude4f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":20,"listed_count":0,"created_at":"Fri - Dec 06 06:56:09 +0000 2019","favourites_count":817,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1089,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1202845257102061569\/FrBUMidE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202845257102061569\/FrBUMidE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:03:14 +0000 2020","id":1235083359501430789,"id_str":"1235083359501430789","text":"Experts - across the world have advised to reduce mass gatherings to avoid the spread - of COVID-19 Novel Coronavirus.\u2026 https:\/\/t.co\/ItCl1V8NlZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ItCl1V8NlZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235083359501430789","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18839785,"id_str":"18839785","name":"Narendra - Modi","screen_name":"narendramodi","location":"India","description":"Prime - Minister of India","url":"https:\/\/t.co\/zzYhUUfq6i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zzYhUUfq6i","expanded_url":"http:\/\/www.narendramodi.in","display_url":"narendramodi.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53459866,"friends_count":2371,"listed_count":25198,"created_at":"Sat - Jan 10 17:18:56 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":25997,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F4EDD4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1134082549041393672\/QbihPzrL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134082549041393672\/QbihPzrL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18839785\/1559221352","profile_link_color":"4E7096","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D5DFED","profile_text_color":"233863","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18472,"favorite_count":101733,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18472,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705844424704,"id_str":"1235246705844424704","text":"RT - @NPR: China reports falling death rates from the coronavirus, from 4% to 0.7%. - \n\nLower fatality rates are likely to be seen in other cou\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NPR","name":"NPR","id":5392522,"id_str":"5392522","indices":[3,7]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53703778,"id_str":"53703778","name":"angry - pineapple with a yumi in black eagles class","screen_name":"bonbonvestra","location":"","description":"charles\/charlie. - pattiserie chef. crochet enthusiast. gamer. supposedly a writer. cave goblin. - no matter what i say in the other one, this is the main acct lmao","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":96,"listed_count":5,"created_at":"Sat - Jul 04 16:28:10 +0000 2009","favourites_count":255,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5874,"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\/1220615540974088192\/HY3BvSMa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220615540974088192\/HY3BvSMa_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/53703778\/1529342575","profile_link_color":"8153B0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 01:37:01 +0000 2020","id":1235016363611246593,"id_str":"1235016363611246593","text":"China - reports falling death rates from the coronavirus, from 4% to 0.7%. \n\nLower - fatality rates are likely to be se\u2026 https:\/\/t.co\/qfsSpH093I","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qfsSpH093I","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235016363611246593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":5392522,"id_str":"5392522","name":"NPR","screen_name":"NPR","location":"","description":"News. - Arts & Life. Music & more. This is NPR.\n\n\ud83d\udd75\ufe0f Securely send - us news tips: https:\/\/t.co\/LPkf6Tsozm","url":"http:\/\/t.co\/SoL86ga4RI","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/SoL86ga4RI","expanded_url":"http:\/\/www.npr.org","display_url":"npr.org","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/LPkf6Tsozm","expanded_url":"http:\/\/securedrop.npr.org","display_url":"securedrop.npr.org","indices":[78,101]}]}},"protected":false,"followers_count":8032055,"friends_count":70373,"listed_count":67387,"created_at":"Sun - Apr 22 05:10:15 +0000 2007","favourites_count":2548,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":193947,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1208165423109292032\/_oEEIsvx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208165423109292032\/_oEEIsvx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5392522\/1575653448","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":913,"favorite_count":1980,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":913,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705819430918,"id_str":"1235246705819430918","text":"RT - @C33_14O: El coronavirus vino en avi\u00f3n, se puede decir que es una enfermedad - pasajera. https:\/\/t.co\/pxQJAu2sMB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"C33_14O","name":"C3\u03c0O - \ud83d\udc9a","id":1455719492,"id_str":"1455719492","indices":[3,11]}],"urls":[],"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}},"source_status_id":1234981828529774592,"source_status_id_str":"1234981828529774592","source_user_id":1455719492,"source_user_id_str":"1455719492"}]},"extended_entities":{"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}},"source_status_id":1234981828529774592,"source_status_id_str":"1234981828529774592","source_user_id":1455719492,"source_user_id_str":"1455719492"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1050576600801120256,"id_str":"1050576600801120256","name":"\u25aa\ufe0eAlvarito\u2122\u25aa\ufe0e\ud83d\udca5\ud83d\udc4a","screen_name":"alvaaarito74","location":"Rosario, - Argentina","description":"Por amor y porque as\u00ed lo siento\u26bd\ufe0f\ud83d\udd34\u26ab\nEl - que ora ve a Dios obrar\u271d\ud83d\ude4f\n\ud83d\udcf8: alvaritooo74 \n\u2764TE - JUR\u00c9 AMOR ETERNO\ud83d\udda4","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":782,"friends_count":912,"listed_count":0,"created_at":"Fri - Oct 12 02:39:15 +0000 2018","favourites_count":118905,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":78896,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223095751837773824\/W1xMseBt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223095751837773824\/W1xMseBt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050576600801120256\/1580885931","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:19:47 +0000 2020","id":1234981828529774592,"id_str":"1234981828529774592","text":"El - coronavirus vino en avi\u00f3n, se puede decir que es una enfermedad pasajera. - https:\/\/t.co\/pxQJAu2sMB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1455719492,"id_str":"1455719492","name":"C3\u03c0O - \ud83d\udc9a","screen_name":"C33_14O","location":"","description":"Un tripio - cualquiera.","url":"https:\/\/t.co\/lZYBEh23Av","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lZYBEh23Av","expanded_url":"http:\/\/es.favstar.fm\/users\/C33_14O","display_url":"es.favstar.fm\/users\/C33_14O","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10221,"friends_count":496,"listed_count":155,"created_at":"Sat - May 25 01:36:10 +0000 2013","favourites_count":30108,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33088,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/835843286568927236\/6AQ5W5lo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/835843286568927236\/6AQ5W5lo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1455719492\/1390756129","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3926,"favorite_count":31850,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":3926,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705790119937,"id_str":"1235246705790119937","text":"RT - @LunaRenda: @AngelaVerso @IndireSocial @MiurSocial Oltre a https:\/\/t.co\/EazyzWA3dy - @DirezioneScuola conta di attivare cooperazione e con\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LunaRenda","name":"Luna - Renda","id":574349817,"id_str":"574349817","indices":[3,13]},{"screen_name":"AngelaVerso","name":"Angela - Verso","id":3014856155,"id_str":"3014856155","indices":[15,27]},{"screen_name":"IndireSocial","name":"Indire","id":3823483577,"id_str":"3823483577","indices":[28,41]},{"screen_name":"MiurSocial","name":"Miur - Social","id":882235051,"id_str":"882235051","indices":[42,53]},{"screen_name":"DirezioneScuola","name":"Direzione - Scuola","id":1163756829219930112,"id_str":"1163756829219930112","indices":[86,102]}],"urls":[{"url":"https:\/\/t.co\/EazyzWA3dy","expanded_url":"https:\/\/www.istruzione.it\/coronavirus\/didattica-a-distanza.html","display_url":"istruzione.it\/coronavirus\/di\u2026","indices":[62,85]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":969293689020350464,"id_str":"969293689020350464","name":"Fiorenza - Rosso","screen_name":"Fiorry2","location":"","description":"Psicologa, psicoterapeuta, - psicologa dello sport, docente di sostegno","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":244,"listed_count":0,"created_at":"Thu - Mar 01 19:29:58 +0000 2018","favourites_count":729,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":655,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229703867996213249\/ZlCV_Gg5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229703867996213249\/ZlCV_Gg5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/969293689020350464\/1581323368","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:19:57 +0000 2020","id":1235238564243427335,"id_str":"1235238564243427335","text":"@AngelaVerso - @IndireSocial @MiurSocial Oltre a https:\/\/t.co\/EazyzWA3dy @DirezioneScuola - conta di attivare cooperazi\u2026 https:\/\/t.co\/cYzJuEDdAB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AngelaVerso","name":"Angela - Verso","id":3014856155,"id_str":"3014856155","indices":[0,12]},{"screen_name":"IndireSocial","name":"Indire","id":3823483577,"id_str":"3823483577","indices":[13,26]},{"screen_name":"MiurSocial","name":"Miur - Social","id":882235051,"id_str":"882235051","indices":[27,38]},{"screen_name":"DirezioneScuola","name":"Direzione - Scuola","id":1163756829219930112,"id_str":"1163756829219930112","indices":[71,87]}],"urls":[{"url":"https:\/\/t.co\/EazyzWA3dy","expanded_url":"https:\/\/www.istruzione.it\/coronavirus\/didattica-a-distanza.html","display_url":"istruzione.it\/coronavirus\/di\u2026","indices":[47,70]},{"url":"https:\/\/t.co\/cYzJuEDdAB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235238564243427335","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235236844780097536,"in_reply_to_status_id_str":"1235236844780097536","in_reply_to_user_id":3014856155,"in_reply_to_user_id_str":"3014856155","in_reply_to_screen_name":"AngelaVerso","user":{"id":574349817,"id_str":"574349817","name":"Luna - Renda","screen_name":"LunaRenda","location":"Lamezia Terme, Calabria","description":"insegnante, - formatore. Socio del Comitato @DirezioneScuola. Responsabile nazionale per - la Formazione di @AmicaSofia","url":"https:\/\/t.co\/Dtj5G8KtXy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Dtj5G8KtXy","expanded_url":"https:\/\/www.direzionescuola.it\/","display_url":"direzionescuola.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":126,"friends_count":626,"listed_count":0,"created_at":"Tue - May 08 07:08:36 +0000 2012","favourites_count":1193,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1090,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229760534704201730\/0L7mWxj7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229760534704201730\/0L7mWxj7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/574349817\/1582032735","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":22,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705723027457,"id_str":"1235246705723027457","text":"RT - @senatemajldr: This moment calls for collaboration and unity to combat the - coronavirus. Bicameral, bipartisan talks have made great head\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"senatemajldr","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":872659116036173824,"id_str":"872659116036173824","name":"Stuart - Anderson","screen_name":"BulldogAnderson","location":"Oklahoma, USA","description":"Father, - Christian, veteran, bacon loving, crusader, III%er, PISSED OFF!!!!!\n#MAGA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":51,"listed_count":0,"created_at":"Thu - Jun 08 03:38:41 +0000 2017","favourites_count":9247,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10859,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/900800632801677313\/T9pU4dv8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/900800632801677313\/T9pU4dv8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/872659116036173824\/1503144838","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:00:49 +0000 2020","id":1235233746607013888,"id_str":"1235233746607013888","text":"This - moment calls for collaboration and unity to combat the coronavirus. Bicameral, - bipartisan talks have made grea\u2026 https:\/\/t.co\/OX6CC7E9oL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OX6CC7E9oL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235233746607013888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1249982359,"id_str":"1249982359","name":"Leader - McConnell","screen_name":"senatemajldr","location":"Washington, DC","description":"U.S. - Senate Majority Leader Mitch McConnell","url":"https:\/\/t.co\/J5RQpHiTgo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J5RQpHiTgo","expanded_url":"http:\/\/republicanleader.senate.gov","display_url":"republicanleader.senate.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1386044,"friends_count":104,"listed_count":5322,"created_at":"Thu - Mar 07 20:21:15 +0000 2013","favourites_count":109,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":3982,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0066CC","profile_background_image_url":"http:\/\/abs.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\/732596482336002049\/JYMrr9_4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/732596482336002049\/JYMrr9_4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1249982359\/1563547854","profile_link_color":"AD0000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1564,"favorite_count":6625,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1564,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705672679424,"id_str":"1235246705672679424","text":"Colorado - GOP calls for Candi Cdebaca\u2019s resignation over coronavirus tweet https:\/\/t.co\/If2RIL9sS9 - via @colo_politics","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"colo_politics","name":"Colorado - Politics","id":783742315282051072,"id_str":"783742315282051072","indices":[102,116]}],"urls":[{"url":"https:\/\/t.co\/If2RIL9sS9","expanded_url":"https:\/\/www.coloradopolitics.com\/denver\/colorado-gop-calls-for-candi-cdebaca-s-resignation-over-coronavirus\/article_272e677a-5d7a-11ea-b7df-ff17556b0cca.html?utm_medium=social&utm_source=twitter&utm_campaign=user-share","display_url":"coloradopolitics.com\/denver\/colorad\u2026","indices":[74,97]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":581366653,"id_str":"581366653","name":"Carin","screen_name":"carindavis23","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":818,"friends_count":2910,"listed_count":3,"created_at":"Wed - May 16 00:09:17 +0000 2012","favourites_count":6332,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5686,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442383735531782144\/9sNEpgBK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442383735531782144\/9sNEpgBK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581366653\/1555514403","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705664233476,"id_str":"1235246705664233476","text":"RT - @MarkGrote: If you have CoronaVirus you have a 3.4% chance of dying. What - do you think the odds are that you''ll even contract it? God i\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarkGrote","name":"Mark - Grote \ud83c\udf10","id":22182305,"id_str":"22182305","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48514095,"id_str":"48514095","name":"Dennis - Coleman","screen_name":"denniswcoleman","location":"Abington PA.","description":"Husband - and father with a love for Christ, a passion for studying history and a desire - to travel more. Bears fan and Philly sports fan. Welcome to my world.","url":"http:\/\/t.co\/ZXbKUMREgf","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ZXbKUMREgf","expanded_url":"http:\/\/denniswcolemanjr.blogspot.com\/","display_url":"denniswcolemanjr.blogspot.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2390,"friends_count":2335,"listed_count":70,"created_at":"Thu - Jun 18 22:26:38 +0000 2009","favourites_count":5558,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35267,"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\/527646867878723585\/I9Ui0_yX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527646867878723585\/I9Ui0_yX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48514095\/1528319186","profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"044729","profile_text_color":"C9C5C9","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:51:24 +0000 2020","id":1235246476919365632,"id_str":"1235246476919365632","text":"If - you have CoronaVirus you have a 3.4% chance of dying. What do you think the - odds are that you''ll even contract i\u2026 https:\/\/t.co\/z4u6XKySyo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/z4u6XKySyo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246476919365632","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22182305,"id_str":"22182305","name":"Mark - Grote \ud83c\udf10","screen_name":"MarkGrote","location":"Seattle, WA","description":"God - is raising up an army not an audience. Fire \ud83d\udd25 of Faith. Leader - w @iSoughtOut. Host of @SoughtOutRadio. Writer. Apostolic. Prophetic. Husband, - Dad, Grandpa.","url":"https:\/\/t.co\/xVImQeyD98","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xVImQeyD98","expanded_url":"http:\/\/www.spirituallyled.com","display_url":"spirituallyled.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5683,"friends_count":1736,"listed_count":125,"created_at":"Fri - Feb 27 19:59:55 +0000 2009","favourites_count":21051,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19607,"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\/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\/1229043278265217025\/bZ0O2Wy4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229043278265217025\/bZ0O2Wy4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22182305\/1555773008","profile_link_color":"F69E13","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":192,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":45,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705588629504,"id_str":"1235246705588629504","text":"RT - @brianeha: Toilet paper, paper towels, bottled water, canned chicken, canned - tuna, beef jerky, trail mix, frozen meat, frozen pizza, pas\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brianeha","name":"Brian - Patrick Eha","id":15365853,"id_str":"15365853","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15365853,"id_str":"15365853","name":"Brian - Patrick Eha","screen_name":"brianeha","location":"New York, NY","description":"Journalist, - author, nonconformist. Writing a novel. Tweeting eclectically. Work @NewYorker - @Fortune @CityJournal others. To read my one-man magazine: see below.","url":"https:\/\/t.co\/IAsFOWhkdk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IAsFOWhkdk","expanded_url":"https:\/\/themiscellany.substack.com\/","display_url":"themiscellany.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6103,"friends_count":1628,"listed_count":325,"created_at":"Wed - Jul 09 14:23:24 +0000 2008","favourites_count":8981,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":20731,"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\/1204957897253359616\/rD9z-2fT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204957897253359616\/rD9z-2fT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15365853\/1577903266","profile_link_color":"5164B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7689CF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:52:08 +0000 2020","id":1235186262526615552,"id_str":"1235186262526615552","text":"Toilet - paper, paper towels, bottled water, canned chicken, canned tuna, beef jerky, - trail mix, frozen meat, frozen\u2026 https:\/\/t.co\/J7aApsA10E","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/J7aApsA10E","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235186262526615552","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15365853,"id_str":"15365853","name":"Brian - Patrick Eha","screen_name":"brianeha","location":"New York, NY","description":"Journalist, - author, nonconformist. Writing a novel. Tweeting eclectically. Work @NewYorker - @Fortune @CityJournal others. To read my one-man magazine: see below.","url":"https:\/\/t.co\/IAsFOWhkdk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IAsFOWhkdk","expanded_url":"https:\/\/themiscellany.substack.com\/","display_url":"themiscellany.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6103,"friends_count":1628,"listed_count":325,"created_at":"Wed - Jul 09 14:23:24 +0000 2008","favourites_count":8981,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":20731,"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\/1204957897253359616\/rD9z-2fT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204957897253359616\/rD9z-2fT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15365853\/1577903266","profile_link_color":"5164B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7689CF","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"},"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"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705584590851,"id_str":"1235246705584590851","text":"RT - @MarcoBo14299061: IMSS desmiente a Loret: Falso que 4T haya comprado caretas - de alba\u00f1il y guantes de intendente por Coronavirus \u2013 El gat\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarcoBo14299061","name":"Marco - Antonio Bonilla B.","id":974833572891721729,"id_str":"974833572891721729","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1012069824938340353,"id_str":"1012069824938340353","name":"Modesto - M. Hernandez Santiago","screen_name":"ModestoMHernan1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":202,"listed_count":0,"created_at":"Wed - Jun 27 20:27:04 +0000 2018","favourites_count":7510,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4060,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1098352233899573250\/piE_NhIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1098352233899573250\/piE_NhIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1012069824938340353\/1550702484","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 21:39:43 +0000 2020","id":1234956645878370304,"id_str":"1234956645878370304","text":"IMSS - desmiente a Loret: Falso que 4T haya comprado caretas de alba\u00f1il y guantes - de intendente por Coronavirus \u2013 El\u2026 https:\/\/t.co\/r1KxEHgZsJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r1KxEHgZsJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234956645878370304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":974833572891721729,"id_str":"974833572891721729","name":"Marco - Antonio Bonilla B.","screen_name":"MarcoBo14299061","location":"Zapopan, Jal. - M\u00e9xico.","description":"Licenciado en Administraci\u00f3n, UNAM.\nMaestr\u00eda - en Administraci\u00f3n, Universidad Central de Michigan.\nEspecialidad Finanzas, - U.A.G.\nHabilidad en oratoria. #RedAMLO.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9727,"friends_count":8181,"listed_count":30,"created_at":"Sat - Mar 17 02:23:30 +0000 2018","favourites_count":59705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54589,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976656093823856640\/zEoLH6Dc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976656093823856640\/zEoLH6Dc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":952,"favorite_count":1479,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":952,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705551036416,"id_str":"1235246705551036416","text":"RT - @MauroJattar: Me chupa la pija el Coronavirus, ya ganamos la Libertadores - m\u00e1s importante de la historia","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MauroJattar","name":"Mauro","id":259825664,"id_str":"259825664","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1156225489595523073,"id_str":"1156225489595523073","name":"Luca\ud83e\udd2a","screen_name":"LucaFonseca6","location":"","description":"Abril - 13","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":92,"listed_count":0,"created_at":"Tue - Jul 30 15:30:13 +0000 2019","favourites_count":683,"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\/1227453302830510087\/1mNJGHMO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227453302830510087\/1mNJGHMO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1156225489595523073\/1581621422","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:46:11 +0000 2020","id":1234912973728239616,"id_str":"1234912973728239616","text":"Me - chupa la pija el Coronavirus, ya ganamos la Libertadores m\u00e1s importante - de la historia","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259825664,"id_str":"259825664","name":"Mauro","screen_name":"MauroJattar","location":"","description":"El - que abandona no tiene premio. Ram\u00f3n, Ortega y Gallardo.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":439,"friends_count":273,"listed_count":16,"created_at":"Wed - Mar 02 17:37:50 +0000 2011","favourites_count":5453,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15055,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F50A15","profile_background_image_url":"http:\/\/abs.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\/1083050981552783360\/t-LUercU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083050981552783360\/t-LUercU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259825664\/1476158248","profile_link_color":"E61538","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2346,"favorite_count":7499,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":2346,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705483878402,"id_str":"1235246705483878402","text":"New - coronavirus cases confirmed in Devon https:\/\/t.co\/eqRWnuQMo0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eqRWnuQMo0","expanded_url":"https:\/\/www.cornwalllive.com\/news\/local-news\/coronavirus-new-cases-confirmed-devon-3915314?utm_source=twitter.com&utm_medium=social&utm_campaign=sharebar","display_url":"cornwalllive.com\/news\/local-new\u2026","indices":[41,64]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"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":187,"friends_count":540,"listed_count":1,"created_at":"Sat - Aug 03 19:09:08 +0000 2019","favourites_count":31079,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5574,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:19 +0000 2020","id":1235246705433554944,"id_str":"1235246705433554944","text":"Getting - my coronavirus facts straight so I can \u201cFake news!!\u201d the shit outta - my boss at this meeting today \ud83d\ude05","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24535669,"id_str":"24535669","name":"Wednesday - Addams","screen_name":"MotherDream","location":"Virginia, USA","description":"I - hate it here \ud83c\udf0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":556,"listed_count":7,"created_at":"Sun - Mar 15 15:16:57 +0000 2009","favourites_count":1800,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11639,"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\/1230882480669982720\/iFq9hWyQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230882480669982720\/iFq9hWyQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24535669\/1583200029","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246705379028992,"id_str":"1235246705379028992","text":"Do - you ever find yourself saying \"wow, the general dollar store wasn''t here - yesterday!\"??? #coronavirus #WednesdayThoughts","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[91,103]},{"text":"WednesdayThoughts","indices":[104,122]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15276584,"id_str":"15276584","name":"Von - Franklinschtien","screen_name":"Savior06","location":"Michigan","description":"good - read: Psalm 3:7; 144 1-2; 58:6-7; 1Cor 16:13; Proverbs 22:3; Luke 12:29","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":425,"listed_count":13,"created_at":"Mon - Jun 30 05:37:41 +0000 2008","favourites_count":112,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1296,"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\/1164331171674824704\/HcMjgNgV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164331171674824704\/HcMjgNgV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15276584\/1551143764","profile_link_color":"000022","profile_sidebar_border_color":"575757","profile_sidebar_fill_color":"D1D1D1","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246705379020800,"id_str":"1235246705379020800","text":"RT - @carlzimmer: Waive Fees for Coronavirus Tests and Treatment, Health Experts - Urge https:\/\/t.co\/LfvBnKYvGo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"carlzimmer","name":"Carl - Zimmer","id":14085070,"id_str":"14085070","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/LfvBnKYvGo","expanded_url":"https:\/\/nyti.ms\/3aqVTpu","display_url":"nyti.ms\/3aqVTpu","indices":[84,107]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":811008691969196032,"id_str":"811008691969196032","name":"factsVfake\u2744#VetsResistSupportSquadron","screen_name":"MichelleHillie7","location":"Redacted - For Privacy & Safety ","description":"Fight Fake with Facts! #News - mostly - #Politics , Some current events, #Humor , #Military Brat , #VetsResistSupportSquadron","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9237,"friends_count":8829,"listed_count":16,"created_at":"Tue - Dec 20 00:41:54 +0000 2016","favourites_count":80363,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":141454,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915662139855130624\/vmIn1ZrL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915662139855130624\/vmIn1ZrL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811008691969196032\/1507145839","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:19:38 +0000 2020","id":1235238481795960833,"id_str":"1235238481795960833","text":"Waive - Fees for Coronavirus Tests and Treatment, Health Experts Urge https:\/\/t.co\/LfvBnKYvGo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LfvBnKYvGo","expanded_url":"https:\/\/nyti.ms\/3aqVTpu","display_url":"nyti.ms\/3aqVTpu","indices":[68,91]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14085070,"id_str":"14085070","name":"Carl - Zimmer","screen_name":"carlzimmer","location":"Connecticut","description":"@nytimes - columnist. Author: Planet of Viruses, She Has Her Mother''s Laugh, etc. https:\/\/t.co\/1NiAvgFpqR","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/1NiAvgFpqR","expanded_url":"http:\/\/carlzimmer.com\/books\/","display_url":"carlzimmer.com\/books\/","indices":[80,103]}]}},"protected":false,"followers_count":274777,"friends_count":1417,"listed_count":5924,"created_at":"Wed - Mar 05 21:10:54 +0000 2008","favourites_count":444,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":49581,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/916034313069715457\/url2G14j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/916034313069715457\/url2G14j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14085070\/1582665663","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":100,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":39,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246705362300932,"id_str":"1235246705362300932","text":"RT - @eldiariodedross: No sab\u00eda que M\u00e9xico report\u00f3 5 casos de Coronavirus. - Me enorgullece que en lugar de haber miedo, le hayan dedicado una\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eldiariodedross","name":"Dross","id":78324623,"id_str":"78324623","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367445763,"id_str":"367445763","name":"Rockstar\u2b50\ufe0f","screen_name":"kiketHuzBL","location":"La - Cima Del \u00c9xito","description":"Trc.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":409,"friends_count":259,"listed_count":1,"created_at":"Sun - Sep 04 00:15:56 +0000 2011","favourites_count":18324,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13499,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220966850894483457\/BQG6CZBk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220966850894483457\/BQG6CZBk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367445763\/1577059688","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:51:20 +0000 2020","id":1235216262336311296,"id_str":"1235216262336311296","text":"No - sab\u00eda que M\u00e9xico report\u00f3 5 casos de Coronavirus. Me enorgullece - que en lugar de haber miedo, le hayan dedicado u\u2026 https:\/\/t.co\/vxABYrz1JX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vxABYrz1JX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235216262336311296","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78324623,"id_str":"78324623","name":"Dross","screen_name":"eldiariodedross","location":"En - la estaci\u00f3n Shenzhou","description":"Genocida de youtubers de salseo. - Scare Master Supreme. Sugar Daddy profesional. Exitoso escritor de horror. - Balcony beefcake.","url":"https:\/\/t.co\/lKohPsCg6N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lKohPsCg6N","expanded_url":"https:\/\/www.youtube.com\/user\/DrossRotzank","display_url":"youtube.com\/user\/DrossRotz\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2978039,"friends_count":67,"listed_count":2161,"created_at":"Tue - Sep 29 14:32:01 +0000 2009","favourites_count":25691,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":29311,"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\/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\/1229426343739133952\/tqlI0U27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229426343739133952\/tqlI0U27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78324623\/1568328119","profile_link_color":"6E6E6E","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1591,"favorite_count":15701,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":1591,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246705144221696,"id_str":"1235246705144221696","text":"RT - @elpaquito_2: Ya est\u00e1n empezando el hospital para el coronavirus en Sevilla, - algunos estar\u00e1n ingresados unos 15 d\u00edas. https:\/\/t.co\/NLLIN\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elpaquito_2","name":"El - Paquito","id":905543489785561088,"id_str":"905543489785561088","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287847531,"id_str":"287847531","name":"Guillermo - Ricchetti","screen_name":"GRicchetti39","location":"Aprovechando que el Pisuerga..","description":"Me - hallaba yo con sed de un cubata, y decid\u00ed que era momento de nacer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":283,"friends_count":753,"listed_count":0,"created_at":"Mon - Apr 25 19:56:58 +0000 2011","favourites_count":17736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8700,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616195540380975104\/N3oMMql6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616195540380975104\/N3oMMql6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287847531\/1400665307","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 20:10:32 +0000 2020","id":1234934200656109569,"id_str":"1234934200656109569","text":"Ya - est\u00e1n empezando el hospital para el coronavirus en Sevilla, algunos estar\u00e1n - ingresados unos 15 d\u00edas. https:\/\/t.co\/NLLINfseys","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234934182796812290,"id_str":"1234934182796812290","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/ESNeGKaXYAIP_-x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESNeGKaXYAIP_-x.jpg","url":"https:\/\/t.co\/NLLINfseys","display_url":"pic.twitter.com\/NLLINfseys","expanded_url":"https:\/\/twitter.com\/elpaquito_2\/status\/1234934200656109569\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1171,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1999,"resize":"fit"},"small":{"w":680,"h":664,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234934182796812290,"id_str":"1234934182796812290","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/ESNeGKaXYAIP_-x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESNeGKaXYAIP_-x.jpg","url":"https:\/\/t.co\/NLLINfseys","display_url":"pic.twitter.com\/NLLINfseys","expanded_url":"https:\/\/twitter.com\/elpaquito_2\/status\/1234934200656109569\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1171,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1999,"resize":"fit"},"small":{"w":680,"h":664,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905543489785561088,"id_str":"905543489785561088","name":"El - Paquito","screen_name":"elpaquito_2","location":"Sevilla, Espa\u00f1a","description":"Opini\u00f3n - y tonter\u00edas, sobre todo tonter\u00edas. Lo que hace el aburrimiento. - Me gusta sevillanizar las cosas. Guasa sevillana.\nContacto: elpaquito.dos@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13607,"friends_count":316,"listed_count":70,"created_at":"Wed - Sep 06 21:29:26 +0000 2017","favourites_count":47442,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101409399178969094\/7hYZzUFP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101409399178969094\/7hYZzUFP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905543489785561088\/1504733819","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4519,"favorite_count":13661,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":4519,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246705127247872,"id_str":"1235246705127247872","text":"RT - @HiHyderabad: Just Few Cases of #CoronaVirus in India and people are crazy - for #Masks!!\n\nDaily 400 people die in road accidents, still n\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[35,47]},{"text":"Masks","indices":[82,88]}],"symbols":[],"user_mentions":[{"screen_name":"HiHyderabad","name":"Hi - Hyderabad","id":243216752,"id_str":"243216752","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":962913796099485696,"id_str":"962913796099485696","name":"Simhadri - CH","screen_name":"simhadribolarum","location":"Bolarum, Secunderabad","description":"Retd - govt employee, Social worker\nPresident, Federation of New Bolarum Colonies - Welfare Association ( FNBC )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":109,"listed_count":2,"created_at":"Mon - Feb 12 04:58:33 +0000 2018","favourites_count":29400,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25298,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/962918033483165696\/LUJn3F4H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/962918033483165696\/LUJn3F4H_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:54:20 +0000 2020","id":1235141519444762630,"id_str":"1235141519444762630","text":"Just - Few Cases of #CoronaVirus in India and people are crazy for #Masks!!\n\nDaily - 400 people die in road accidents,\u2026 https:\/\/t.co\/Y6F6lqzjNX","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[18,30]},{"text":"Masks","indices":[65,71]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Y6F6lqzjNX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235141519444762630","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243216752,"id_str":"243216752","name":"Hi - Hyderabad","screen_name":"HiHyderabad","location":"Hyderabad, India","description":"Tweets - from Hyderabad and Hyderabadis. \u2764\ufe0f Hyderabad \u2764\ufe0f Telangana - \u2764\ufe0f India. \n \u0c39\u0c48\u0c26\u0c30\u0c3e\u0c2c\u0c3e\u0c26\u0c4d - --- \u062d\u06cc\u062f\u0631\u0627\u0628\u0627\u062f --- \u0939\u0948\u0926\u0930\u093e\u092c\u093e\u0926","url":"https:\/\/t.co\/V8nVDZZ9em","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/V8nVDZZ9em","expanded_url":"https:\/\/www.facebook.com\/hihyderabad\/","display_url":"facebook.com\/hihyderabad\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19117,"friends_count":950,"listed_count":104,"created_at":"Wed - Jan 26 15:27:38 +0000 2011","favourites_count":116979,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":114134,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C5922C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080007957985792000\/bx3TIS4w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080007957985792000\/bx3TIS4w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243216752\/1480143001","profile_link_color":"0084B4","profile_sidebar_border_color":"C5922C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":191,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":75,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704770928640,"id_str":"1235246704770928640","text":"RT - @lufrann: \u00bfEl que tiene coronavirus viaj\u00f3 en primera clase, en la - declaraci\u00f3n jurada no inform\u00f3 ning\u00fan s\u00edntoma y a la tarde - fue al hospi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lufrann","name":"LL","id":143200848,"id_str":"143200848","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":613952008,"id_str":"613952008","name":"Mecha - Corta\ud83d\udc9a","screen_name":"Flopicecere","location":"Buenos Aires, Argentina","description":"Campeona - de Am\u00e9rica 9.12.2018 \u26aa\ud83d\udd34\u26aa\n\n\nzurda feminista \ud83d\udc9a\u270a\ud83c\udffc\n\nIG: - Flopicecere","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":948,"friends_count":868,"listed_count":3,"created_at":"Thu - Jun 21 02:25:25 +0000 2012","favourites_count":4353,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":34440,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"88E9F0","profile_background_image_url":"http:\/\/abs.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\/1199435068768423937\/-IRmHwnx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199435068768423937\/-IRmHwnx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/613952008\/1557789534","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 19:14:32 +0000 2020","id":1234920110881636358,"id_str":"1234920110881636358","text":"\u00bfEl - que tiene coronavirus viaj\u00f3 en primera clase, en la declaraci\u00f3n - jurada no inform\u00f3 ning\u00fan s\u00edntoma y a la tarde f\u2026 https:\/\/t.co\/a9PuAy0xnT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a9PuAy0xnT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234920110881636358","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143200848,"id_str":"143200848","name":"LL","screen_name":"lufrann","location":"","description":"Comunico - excels. Maestrando UNQ. Riquelmismo de izquierda.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1383,"friends_count":432,"listed_count":26,"created_at":"Wed - May 12 21:34:44 +0000 2010","favourites_count":21828,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33357,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6EA3FF","profile_background_image_url":"http:\/\/abs.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\/921589514937798656\/0qhDt3P9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921589514937798656\/0qhDt3P9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143200848\/1538146558","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3DBCA","profile_text_color":"3D3D3C","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":843,"favorite_count":6935,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":843,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704653463553,"id_str":"1235246704653463553","text":"RT - @eerlijkzeggen: De verspreiding van het #coronavirus is een tikkende tijdbom. - Tijd voor rigoureuze maatregelen. Geen mensen uit risicoge\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[43,55]}],"symbols":[],"user_mentions":[{"screen_name":"eerlijkzeggen","name":"Chris_Jansen_PVV","id":244533853,"id_str":"244533853","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"nl","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":830950104710397952,"id_str":"830950104710397952","name":"Simba - & Scar4Trump","screen_name":"Marcel99923044","location":"","description":"Reserve - account Marcel4Trump.\n\n@BerkhofMarcel","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1310,"friends_count":3102,"listed_count":0,"created_at":"Mon - Feb 13 01:21:58 +0000 2017","favourites_count":7419,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16982,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180459578309447680\/UrAxDJ41_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180459578309447680\/UrAxDJ41_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/830950104710397952\/1570278445","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:12:03 +0000 2020","id":1235191277421023232,"id_str":"1235191277421023232","text":"De - verspreiding van het #coronavirus is een tikkende tijdbom. Tijd voor rigoureuze - maatregelen. Geen mensen uit ris\u2026 https:\/\/t.co\/9CKWp75qNQ","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[24,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9CKWp75qNQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235191277421023232","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"nl","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":244533853,"id_str":"244533853","name":"Chris_Jansen_PVV","screen_name":"eerlijkzeggen","location":"","description":"PVV - Tweede Kamerlid","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2728,"friends_count":887,"listed_count":61,"created_at":"Sat - Jan 29 14:44:54 +0000 2011","favourites_count":10010,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11705,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1858129397\/C.A._Jansen__PVV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1858129397\/C.A._Jansen__PVV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244533853\/1548551204","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":118,"favorite_count":441,"favorited":false,"retweeted":false,"lang":"nl"},"is_quote_status":false,"retweet_count":118,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"nl"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704640823296,"id_str":"1235246704640823296","text":"Coronavirus: - la arrogancia y el misterio de Corea del Norte pueden terminar en un desastre - - https:\/\/t.co\/SL16xQl8El","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SL16xQl8El","expanded_url":"https:\/\/clar.in\/2wrTXhA?fromRef=twitter","display_url":"clar.in\/2wrTXhA?fromRe\u2026","indices":[93,116]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":2377661929,"id_str":"2377661929","name":"JOS\u00c9 - ADARMES","screen_name":"ADARMESJEB","location":"CARACAS","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":543,"friends_count":528,"listed_count":6,"created_at":"Fri - Mar 07 21:07:53 +0000 2014","favourites_count":2063,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72226,"lang":null,"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\/442825471495897088\/M7R_hMHG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442825471495897088\/M7R_hMHG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2377661929\/1453497075","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"},"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":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704481492993,"id_str":"1235246704481492993","text":"RT - @mariancarbone: hola viste que lleg\u00f3 el coronavirus queres q te vacune - la cola contesta\n\nenviar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mariancarbone","name":"iaio","id":731728730,"id_str":"731728730","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1037765908373090305,"id_str":"1037765908373090305","name":"agustin - fernandez","screen_name":"agusstin_fer","location":"Cerro Largo, Uruguay","description":"snap\ud83d\udc7b: - agusstinfer ig: agusstin_fer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":205,"friends_count":237,"listed_count":0,"created_at":"Thu - Sep 06 18:14:08 +0000 2018","favourites_count":4044,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235233664289644544\/2HsmIL-F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235233664289644544\/2HsmIL-F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1037765908373090305\/1561837640","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 02:49:18 +0000 2020","id":1235034556413161472,"id_str":"1235034556413161472","text":"hola - viste que lleg\u00f3 el coronavirus queres q te vacune la cola contesta\n\nenviar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":731728730,"id_str":"731728730","name":"iaio","screen_name":"mariancarbone","location":"","description":"responde - estupida","url":"https:\/\/t.co\/FcmPx3CN7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FcmPx3CN7d","expanded_url":"http:\/\/www.instagram.com\/mariancarbone19","display_url":"instagram.com\/mariancarbone19","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":164302,"friends_count":2396,"listed_count":52,"created_at":"Wed - Aug 01 23:56:36 +0000 2012","favourites_count":28634,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":49648,"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\/1212945027732770816\/r8Biy03V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212945027732770816\/r8Biy03V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/731728730\/1577754435","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7095,"favorite_count":54015,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":7095,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704246640641,"id_str":"1235246704246640641","text":"Coronavirus - : \u00e9change muscl\u00e9 entre le s\u00e9nateur LR de l\u2019Oise J\u00e9r\u00f4me - Bascher et Laurent Nu\u00f1ez | Public Senat https:\/\/t.co\/U2OelCnV65","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U2OelCnV65","expanded_url":"https:\/\/www.publicsenat.fr\/article\/parlementaire\/coronavirus-echange-muscle-entre-le-senateur-lr-de-l-oise-jerome-bascher-et","display_url":"publicsenat.fr\/article\/parlem\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":497078244,"id_str":"497078244","name":"alix - marielle","screen_name":"alixmarielle","location":"","description":"journaliste - je ne suis pas d accord avec ce que vous dites mais je me battrai pour que - vous ayez le droit de le dire","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":384,"friends_count":399,"listed_count":31,"created_at":"Sun - Feb 19 16:01:01 +0000 2012","favourites_count":11355,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29869,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/767746915056451585\/c0sJuQZ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/767746915056451585\/c0sJuQZ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/497078244\/1471880009","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704225652736,"id_str":"1235246704225652736","text":"RT - @SharylAttkisson: I defer to https:\/\/t.co\/2E8ilK708i but this is the clearest - explanation I''ve seen given to the public about how scient\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SharylAttkisson","name":"Sharyl - Attkisson\ud83d\udd75\ufe0f\u200d\u2642\ufe0f","id":203226736,"id_str":"203226736","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/2E8ilK708i","expanded_url":"http:\/\/CDC.gov","display_url":"CDC.gov","indices":[32,55]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1159476625848918016,"id_str":"1159476625848918016","name":"Mark","screen_name":"Mack88268000","location":"trumpsville","description":"Cattle, - Hogs, Beans, Corn, baseball, futures broker 1980 to present.TRUMP 2020,,BEST - EVER","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":606,"friends_count":1758,"listed_count":1,"created_at":"Thu - Aug 08 14:49:04 +0000 2019","favourites_count":1822,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5968,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218239586079514625\/BvxbnQeE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218239586079514625\/BvxbnQeE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1159476625848918016\/1583253071","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:51:06 +0000 2020","id":1235246402449657859,"id_str":"1235246402449657859","text":"I - defer to https:\/\/t.co\/2E8ilK708i but this is the clearest explanation I''ve - seen given to the public about how sci\u2026 https:\/\/t.co\/eeSzSMmdeC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2E8ilK708i","expanded_url":"http:\/\/CDC.gov","display_url":"CDC.gov","indices":[11,34]},{"url":"https:\/\/t.co\/eeSzSMmdeC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246402449657859","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":203226736,"id_str":"203226736","name":"Sharyl - Attkisson\ud83d\udd75\ufe0f\u200d\u2642\ufe0f","screen_name":"SharylAttkisson","location":"Washington, - DC","description":"Nonpartisan Investigative Journalist @FullMeasureNews *Note* - RTs not=endorsement; RTs may be interesting, silly, wrong, outrageous. Think - for yourself.","url":"http:\/\/t.co\/206qyeOcuD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/206qyeOcuD","expanded_url":"http:\/\/SharylAttkisson.com","display_url":"SharylAttkisson.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":277014,"friends_count":6890,"listed_count":3441,"created_at":"Fri - Oct 15 20:25:13 +0000 2010","favourites_count":44114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":50047,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B7ADDE","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\/1168003266581422080\/rQCLjd_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168003266581422080\/rQCLjd_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/203226736\/1538844734","profile_link_color":"E81C4F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233571588592873472,"quoted_status_id_str":"1233571588592873472","quoted_status":{"created_at":"Sat - Feb 29 01:56:00 +0000 2020","id":1233571588592873472,"id_str":"1233571588592873472","text":"Everyone - should watch and share this excellent video by Singapore\u2019s Health Minister - Mr. Gan Kim Yong. \nThere are ma\u2026 https:\/\/t.co\/8PcJ3F09u8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8PcJ3F09u8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233571588592873472","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1203122402814767105,"id_str":"1203122402814767105","name":"Covfefe - Winston 007","screen_name":"RockyWinston007","location":"Nowhere","description":"Am - here now anyhow to support @POTUS and to call out #FakeNews. #MAGA #KAG #QAnon - #TheGreatAwakening #HedgeFund #Delta30 rt, follow \u2260 endorsement.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19560,"friends_count":14685,"listed_count":16,"created_at":"Sat - Dec 07 01:22:03 +0000 2019","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8688,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213869366762229766\/h-EkvEyN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213869366762229766\/h-EkvEyN_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1203122402814767105\/1575771912","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3457,"favorite_count":3986,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":158,"favorite_count":225,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233571588592873472,"quoted_status_id_str":"1233571588592873472","retweet_count":158,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704133169155,"id_str":"1235246704133169155","text":"RT - @Naveen5665: Isolation wards at these hospitals. #CoronaAlert #Hyderabad #Telangana - #CoronavirusIndia #coronavirus #COVID19india https:\/\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaAlert","indices":[52,64]},{"text":"Hyderabad","indices":[65,75]},{"text":"Telangana","indices":[76,86]},{"text":"CoronavirusIndia","indices":[87,104]},{"text":"coronavirus","indices":[105,117]},{"text":"COVID19india","indices":[118,131]}],"symbols":[],"user_mentions":[{"screen_name":"Naveen5665","name":"Naveen","id":2329873718,"id_str":"2329873718","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1012635920,"id_str":"1012635920","name":"Vamsi - K. Gantada \u02b7\u02b0\u2071\u02e2\u1d57\u02e1\u1d49","screen_name":"VamsiGantada","location":"Vijayawada, - Andhra Pradesh","description":"I have no religion, every heart is my temple","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":60,"listed_count":0,"created_at":"Sat - Dec 15 06:32:50 +0000 2012","favourites_count":512,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4074,"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\/1116374484628295680\/I9rcNUWp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116374484628295680\/I9rcNUWp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1012635920\/1554999524","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:08:14 +0000 2020","id":1235235612346716160,"id_str":"1235235612346716160","text":"Isolation - wards at these hospitals. #CoronaAlert #Hyderabad #Telangana #CoronavirusIndia - #coronavirus #COVID19india https:\/\/t.co\/Y9wZsHsuGn","truncated":false,"entities":{"hashtags":[{"text":"CoronaAlert","indices":[36,48]},{"text":"Hyderabad","indices":[49,59]},{"text":"Telangana","indices":[60,70]},{"text":"CoronavirusIndia","indices":[71,88]},{"text":"coronavirus","indices":[89,101]},{"text":"COVID19india","indices":[102,115]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235235602234212352,"id_str":"1235235602234212352","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRwPFUWAAAVgdN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRwPFUWAAAVgdN.jpg","url":"https:\/\/t.co\/Y9wZsHsuGn","display_url":"pic.twitter.com\/Y9wZsHsuGn","expanded_url":"https:\/\/twitter.com\/Naveen5665\/status\/1235235612346716160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":953,"resize":"fit"},"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":750,"h":953,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235235602234212352,"id_str":"1235235602234212352","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRwPFUWAAAVgdN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRwPFUWAAAVgdN.jpg","url":"https:\/\/t.co\/Y9wZsHsuGn","display_url":"pic.twitter.com\/Y9wZsHsuGn","expanded_url":"https:\/\/twitter.com\/Naveen5665\/status\/1235235612346716160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":953,"resize":"fit"},"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":750,"h":953,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2329873718,"id_str":"2329873718","name":"Naveen","screen_name":"Naveen5665","location":"Telangana - - 509105","description":"A+ve","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3919,"friends_count":438,"listed_count":20,"created_at":"Thu - Feb 06 07:23:37 +0000 2014","favourites_count":111,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40728,"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\/1215868123108130817\/u-mhOXFJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215868123108130817\/u-mhOXFJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2329873718\/1568326550","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":39,"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704120623104,"id_str":"1235246704120623104","text":"RT - @thecyberwire: Super Tuesday security was super quiet. EU''s Rapid Alert System - fights coronavirus misinformation. US offers Ukraine cybe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thecyberwire","name":"The - CyberWire","id":851460667,"id_str":"851460667","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":270124606,"id_str":"270124606","name":"Hyrum - M","screen_name":"hyrum_m","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":56,"listed_count":69,"created_at":"Tue - Mar 22 01:31:36 +0000 2011","favourites_count":23672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8943,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1045837125248110592\/PMawaN8E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1045837125248110592\/PMawaN8E_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:58:00 +0000 2020","id":1235233038084321281,"id_str":"1235233038084321281","text":"Super - Tuesday security was super quiet. EU''s Rapid Alert System fights coronavirus - misinformation. US offers Ukrain\u2026 https:\/\/t.co\/yfnqKqQlnX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yfnqKqQlnX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235233038084321281","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/meetedgar.com\" rel=\"nofollow\"\u003eMeetEdgar\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851460667,"id_str":"851460667","name":"The - CyberWire","screen_name":"thecyberwire","location":"Fulton, Maryland, USA","description":"Concise - cybersecurity news & analysis for the busy professional. Follow @HackingHumansCW - & @CaveatCW too.","url":"https:\/\/t.co\/HQuCt1gLbK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HQuCt1gLbK","expanded_url":"http:\/\/www.thecyberwire.com","display_url":"thecyberwire.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":30556,"friends_count":877,"listed_count":1160,"created_at":"Fri - Sep 28 17:37:19 +0000 2012","favourites_count":4575,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":116905,"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\/1071486739632525314\/_0gA3_qy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1071486739632525314\/_0gA3_qy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851460667\/1559858181","profile_link_color":"7282CD","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"},"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246704108199936,"id_str":"1235246704108199936","text":"RT - @GOPLeader: What a scam\u2014Speaker Pelosi held up the vote on coronavirus - funding so that her campaign team could run ads against Republica\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOPLeader","name":"Kevin - McCarthy","id":19739126,"id_str":"19739126","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3514507517,"id_str":"3514507517","name":"\ud83c\uddfa\ud83c\uddf8 - American Colleen \ud83c\uddfa\ud83c\uddf8","screen_name":"itscollmc","location":"","description":"Free - thinker. Supporter of the US Constitution. Rescue dogs are the best. #NeverWarren","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":953,"friends_count":514,"listed_count":3,"created_at":"Tue - Sep 01 17:03:17 +0000 2015","favourites_count":40214,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25580,"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\/638759572656812032\/_GTmaitQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638759572656812032\/_GTmaitQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3514507517\/1441128910","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 19:32:01 +0000 2020","id":1234924508500447234,"id_str":"1234924508500447234","text":"What - a scam\u2014Speaker Pelosi held up the vote on coronavirus funding so that - her campaign team could run ads against\u2026 https:\/\/t.co\/oLgn9ilVZG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oLgn9ilVZG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234924508500447234","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":19739126,"id_str":"19739126","name":"Kevin - McCarthy","screen_name":"GOPLeader","location":"Bakersfield, CA","description":"Republican - Leader and Representative of California''s 23rd District in the House of Representatives.\nhttps:\/\/t.co\/ZqWsqD6L0T","url":"https:\/\/t.co\/eB1lud6Yi3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eB1lud6Yi3","expanded_url":"http:\/\/republicanleader.gov","display_url":"republicanleader.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZqWsqD6L0T","expanded_url":"https:\/\/www.instagram.com\/repkevinmccarthy\/","display_url":"instagram.com\/repkevinmccart\u2026","indices":[100,123]}]}},"protected":false,"followers_count":708093,"friends_count":1388,"listed_count":4807,"created_at":"Thu - Jan 29 22:28:48 +0000 2009","favourites_count":1829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12552,"lang":null,"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\/1144683452064833536\/fZbuxrtg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144683452064833536\/fZbuxrtg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19739126\/1582230846","profile_link_color":"0A2644","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"122C73","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20833,"favorite_count":42986,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20833,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703965605894,"id_str":"1235246703965605894","text":"Todav\u00eda - no sale ninguna estrella pidiendo suspensi\u00f3n del plebiscito por el coronavirus?? - Jajaj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126151906,"id_str":"126151906","name":"Alessandro - Avagliano","screen_name":"OyeAvagliano","location":"","description":"Apasionado - de la conversa, la verdad\/mentira y la naturaleza. Creo que falta mucho por - hacer. Donante.","url":"https:\/\/t.co\/u59RNEMWkU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/u59RNEMWkU","expanded_url":"http:\/\/www.facebook.com\/alessandro.avaglianosoto","display_url":"facebook.com\/alessandro.ava\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":171,"friends_count":221,"listed_count":1,"created_at":"Thu - Mar 25 00:25:36 +0000 2010","favourites_count":675,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":720,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548894629022953472\/IOJuKGs3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548894629022953472\/IOJuKGs3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/126151906\/1507298767","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"0010b4cb51ca93d8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0010b4cb51ca93d8.json","place_type":"city","name":"Santiago","full_name":"Santiago, - Chile","country_code":"CL","country":"Chile","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-70.6929589,-33.4785739],[-70.6262719,-33.4785739],[-70.6262719,-33.4257485],[-70.6929589,-33.4257485]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703856553984,"id_str":"1235246703856553984","text":"RT - @taehunnies: a direct, sincere acknowledgment of ARMYs recent efforts towards - coronavirus relief from someone who once harshly critiqued\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"taehunnies","name":"hunnie - \u2077 \ud83e\udd0d","id":1082837068122869761,"id_str":"1082837068122869761","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":974030454142767104,"id_str":"974030454142767104","name":"\ud835\udd44\ud835\udd46\ud835\udd4b\ud835\udd4a:\u2077 - \ud835\udd4a\u210d\ud835\udd38\ud835\udd3b\ud835\udd46\ud835\udd4e","screen_name":"joonietunes94","location":"wherever - @BTS_twt is mentioned","description":"\ud83c\udf20\u2728\u2081\u2083\u2084\u2083\u2084\u2080 - ways I love bts\n\n\ud835\udcfd\ud835\udcf1\ud835\udcee 7 \ud835\udd02\ud835\udcee\ud835\udcea\ud835\udcfb\ud835\udcfc - \ud835\udd00\ud835\udcee \ud835\udcf1\ud835\udcea\ud835\udcff\ud835\udcee - \ud835\udceb\ud835\udcee\ud835\udcee\ud835\udcf7 \ud835\udcfd\ud835\udcf8\ud835\udcf0\ud835\udcee\ud835\udcfd\ud835\udcf1\ud835\udcee\ud835\udcfb, - \ud835\udcea\ud835\udcf5\ud835\udd00\ud835\udcea\ud835\udd02\ud835\udcfc \ud835\udcec\ud835\udcf8\ud835\udcf7\ud835\udcfc\ud835\udcf2\ud835\udcfc\ud835\udcfd - \ud835\udcf8\ud835\udcef 7 \ud835\udcf6\ud835\udcee\ud835\udcf6\ud835\udceb\ud835\udcee\ud835\udcfb\ud835\udcfc. - \ud835\udcf8\ud835\udcef \ud835\udcd1\ud835\udce3\ud835\udce2.","url":"https:\/\/t.co\/mteV5tJ422","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mteV5tJ422","expanded_url":"http:\/\/IMISSBTSHOURSOPEN.COM","display_url":"IMISSBTSHOURSOPEN.COM","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":483,"friends_count":1483,"listed_count":1,"created_at":"Wed - Mar 14 21:12:11 +0000 2018","favourites_count":186489,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40338,"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\/1227032708750159874\/GcfM1fyK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227032708750159874\/GcfM1fyK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/974030454142767104\/1581382369","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:28:26 +0000 2020","id":1235089700840333313,"id_str":"1235089700840333313","text":"a - direct, sincere acknowledgment of ARMYs recent efforts towards coronavirus - relief from someone who once harshly c\u2026 https:\/\/t.co\/SkQs4E6jNk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SkQs4E6jNk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235089700840333313","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1082837068122869761,"id_str":"1082837068122869761","name":"hunnie - \u2077 \ud83e\udd0d","screen_name":"taehunnies","location":"","description":"bts - is my light \u2728 fan account - bu: @taeshunnie","url":"https:\/\/t.co\/bKoO2PAHFF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bKoO2PAHFF","expanded_url":"https:\/\/youtu.be\/7maBmBk0uJw","display_url":"youtu.be\/7maBmBk0uJw","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53361,"friends_count":382,"listed_count":109,"created_at":"Wed - Jan 09 03:10:49 +0000 2019","favourites_count":8376,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14951,"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\/1230476711243829248\/fOVmn5jk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230476711243829248\/fOVmn5jk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1082837068122869761\/1582086932","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4411,"favorite_count":10918,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4411,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703835414528,"id_str":"1235246703835414528","text":"RT - @molerogascon: J\u00fcrgen Klopp sobre el coronavirus:\n\u201cNo entiendo - ni me gusta que simplemente por el hecho de ser famoso mi opini\u00f3n sea - rel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"molerogascon","name":"Pep - Molero","id":213982456,"id_str":"213982456","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451997305,"id_str":"451997305","name":"Crist\u00f3bal - R","screen_name":"CrisRguezR","location":"","description":"Atlas FC - Star - Wars - F1 ; MKT & RP. Entrepreneur Geek. May the force be with you.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":300,"friends_count":1106,"listed_count":8,"created_at":"Sun - Jan 01 08:45:12 +0000 2012","favourites_count":2987,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5298,"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\/847267085386252289\/Kaq5Xw7E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/847267085386252289\/Kaq5Xw7E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451997305\/1490116082","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:36:57 +0000 2020","id":1234986149283631105,"id_str":"1234986149283631105","text":"J\u00fcrgen - Klopp sobre el coronavirus:\n\u201cNo entiendo ni me gusta que simplemente - por el hecho de ser famoso mi opini\u00f3n s\u2026 https:\/\/t.co\/xFVIWkrBWR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xFVIWkrBWR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234986149283631105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33979,"favorite_count":118198,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":33979,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703814508544,"id_str":"1235246703814508544","text":"RT - @KALEDIAN: Cosas que quedan claras a causa de la puta alarma del Coronavirus:\n\n1- - Tenemos un sistema p\u00fablico que funciona DE PUTA MADRE.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KALEDIAN","name":"Mr. - Icelander \ud83d\udc80\ud83d\udd3b","id":138705871,"id_str":"138705871","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2363377662,"id_str":"2363377662","name":"Opinar - sin saber \ud83d\udd3b","screen_name":"opinarsinsaber","location":"Tanque - de suspensi\u00f3n sensorial","description":"Ser humano pensante, m\u00e1s - bien dubitante, que no es poco. https:\/\/t.co\/xlPK4MSJeF","url":"https:\/\/t.co\/rXjhvfbZxR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rXjhvfbZxR","expanded_url":"https:\/\/nomorewhitenoise.wordpress.com\/","display_url":"nomorewhitenoise.wordpress.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/xlPK4MSJeF","expanded_url":"http:\/\/opinarsinsaber.wordpress.com","display_url":"opinarsinsaber.wordpress.com","indices":[57,80]}]}},"protected":false,"followers_count":106,"friends_count":490,"listed_count":6,"created_at":"Thu - Feb 27 00:34:42 +0000 2014","favourites_count":9274,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4678,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/679068550406012928\/J7Z9TeJL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/679068550406012928\/J7Z9TeJL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2363377662\/1450737531","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 12:30:13 +0000 2020","id":1234818359272800257,"id_str":"1234818359272800257","text":"Cosas - que quedan claras a causa de la puta alarma del Coronavirus:\n\n1- Tenemos - un sistema p\u00fablico que funciona DE P\u2026 https:\/\/t.co\/XDVfJn1wKR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XDVfJn1wKR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234818359272800257","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138705871,"id_str":"138705871","name":"Mr. - Icelander \ud83d\udc80\ud83d\udd3b","screen_name":"KALEDIAN","location":"HELL\u00b4S - KITCHEN","description":"Las mentes cerradas suelen tener la boca muy abierta.","url":"https:\/\/t.co\/m0B0AYpWhJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m0B0AYpWhJ","expanded_url":"https:\/\/www.behance.net\/kaledian","display_url":"behance.net\/kaledian","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4053,"friends_count":963,"listed_count":98,"created_at":"Fri - Apr 30 10:06:48 +0000 2010","favourites_count":51974,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":172679,"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\/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\/1123545904647147520\/oVTswf81_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123545904647147520\/oVTswf81_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138705871\/1478536317","profile_link_color":"ABB8C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11589,"favorite_count":36601,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":11589,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703797772288,"id_str":"1235246703797772288","text":"Couple''s - holiday vow despite cruise ship quarantined over coronavirus fears https:\/\/t.co\/83OemzoEIP - https:\/\/t.co\/co8Wf4AW2v","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/83OemzoEIP","expanded_url":"https:\/\/www.mirror.co.uk\/news\/world-news\/coronavirus-2000-cruise-ship-passengers-21631745","display_url":"mirror.co.uk\/news\/world-new\u2026","indices":[76,99]}],"media":[{"id":1235245644085964800,"id_str":"1235245644085964800","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR5XmIXsAA9BOo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR5XmIXsAA9BOo.jpg","url":"https:\/\/t.co\/co8Wf4AW2v","display_url":"pic.twitter.com\/co8Wf4AW2v","expanded_url":"https:\/\/twitter.com\/DailyMirror\/status\/1235246703797772288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":502,"resize":"fit"},"large":{"w":2048,"h":1511,"resize":"fit"},"medium":{"w":1200,"h":885,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235245644085964800,"id_str":"1235245644085964800","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR5XmIXsAA9BOo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR5XmIXsAA9BOo.jpg","url":"https:\/\/t.co\/co8Wf4AW2v","display_url":"pic.twitter.com\/co8Wf4AW2v","expanded_url":"https:\/\/twitter.com\/DailyMirror\/status\/1235246703797772288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":502,"resize":"fit"},"large":{"w":2048,"h":1511,"resize":"fit"},"medium":{"w":1200,"h":885,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":16887175,"id_str":"16887175","name":"Daily - Mirror","screen_name":"DailyMirror","location":"UK","description":"The official - Daily Mirror & Mirror Online Twitter account \n\ud83d\uddde\ufe0f - real news - in real time.\n@MirrorBreaking_ for breaking news \ud83d\udea8 \n@MirrorCeleb - for showbiz news \ud83d\udc51","url":"http:\/\/t.co\/QVBfMK244U","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QVBfMK244U","expanded_url":"http:\/\/www.mirror.co.uk\/","display_url":"mirror.co.uk","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1158612,"friends_count":4252,"listed_count":6387,"created_at":"Tue - Oct 21 14:58:45 +0000 2008","favourites_count":1276,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":595318,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D62327","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195277250217807872\/dlxoXVnM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195277250217807872\/dlxoXVnM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16887175\/1581347245","profile_link_color":"D62327","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F3F3","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"},"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703776845826,"id_str":"1235246703776845826","text":"RT - @ghitis: La JEP deber\u00eda encargarse de la lucha contra el coronavirus... - ellos dejan limpio lo que sea!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ghitis","name":"David - Ghitis","id":25490757,"id_str":"25490757","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35267800,"id_str":"35267800","name":"cbarraga","screen_name":"cbarraga","location":"Barranquilla, - Atl\u00e1ntico","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":915,"friends_count":3502,"listed_count":14,"created_at":"Sat - Apr 25 17:53:12 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8F703F","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\/1228032257430036481\/9xAFx0y0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228032257430036481\/9xAFx0y0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35267800\/1581620680","profile_link_color":"ABB8C2","profile_sidebar_border_color":"0F0080","profile_sidebar_fill_color":"CDB788","profile_text_color":"563419","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:37:16 +0000 2020","id":1235197619573575681,"id_str":"1235197619573575681","text":"La - JEP deber\u00eda encargarse de la lucha contra el coronavirus... ellos dejan - limpio lo que sea!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":25490757,"id_str":"25490757","name":"David - Ghitis","screen_name":"ghitis","location":"Bogot\u00e1, D.C., Colombia","description":"Columnista - de El Parche del Capuchino y Los Irreverentes. Con licencia para trinar.\nLa - justicia no puede ser v\u00edctima de la paz.\ud83c\udde8\ud83c\uddf4\ud83c\uddee\ud83c\uddf1\ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/ft6T3AWkjC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ft6T3AWkjC","expanded_url":"https:\/\/www.elparchedelcapuchino.com\/author\/dghitis\/","display_url":"elparchedelcapuchino.com\/author\/dghitis\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":59720,"friends_count":1694,"listed_count":130,"created_at":"Fri - Mar 20 11:36:54 +0000 2009","favourites_count":48615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":195181,"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\/905084301297029121\/myXqg8kJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905084301297029121\/myXqg8kJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25490757\/1571865142","profile_link_color":"0B14BD","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":130,"favorite_count":351,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":130,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703696949248,"id_str":"1235246703696949248","text":"RT - @FutbolBible: Jurgen Klopp''s response when asked about Coronavirus is absolutely - class. This man speaks so much sense, absolutely spot o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FutbolBible","name":"FutbolBible","id":1123488680,"id_str":"1123488680","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79122533,"id_str":"79122533","name":"irfan","screen_name":"ipank11","location":"","description":"-Lifelong - learning-","url":"https:\/\/t.co\/FX8eXEWc9P","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FX8eXEWc9P","expanded_url":"http:\/\/pulangsenja.wordpress.com","display_url":"pulangsenja.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":385,"listed_count":0,"created_at":"Fri - Oct 02 07:29:46 +0000 2009","favourites_count":566,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4852,"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\/699779599639515136\/2yi3rhbL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/699779599639515136\/2yi3rhbL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/79122533\/1387855856","profile_link_color":"4169E1","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:49:27 +0000 2020","id":1235140289825853440,"id_str":"1235140289825853440","text":"Jurgen - Klopp''s response when asked about Coronavirus is absolutely class. This man - speaks so much sense, absolutely\u2026 https:\/\/t.co\/s5ob7HdqwI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s5ob7HdqwI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235140289825853440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1123488680,"id_str":"1123488680","name":"FutbolBible","screen_name":"FutbolBible","location":"England, - United Kingdom","description":"\u26bd\ufe0f If you love football then simply - click that follow button. We post the best football tweets. For promotion - contact us via DM or FutbolBible@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":249935,"friends_count":14933,"listed_count":1053,"created_at":"Sat - Jan 26 23:50:04 +0000 2013","favourites_count":6854,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4504,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000305","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261582636645\/55e9a4980b50801ab91c8e13e5c77f40_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261582636645\/55e9a4980b50801ab91c8e13e5c77f40_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1123488680\/1555466861","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41765,"favorite_count":174261,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":41765,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703688716289,"id_str":"1235246703688716289","text":"RT - @faroushhhhhh: Le Maroc seul pays heureux quand ils ont su qu\u2019il y avait - un cas de Coronavirus, ils sont partis klaxonner devant l\u2019h\u00f4pit\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"faroushhhhhh","name":"Farah_you","id":1139651965540020225,"id_str":"1139651965540020225","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1230985456281686023,"id_str":"1230985456281686023","name":"shaima\ud83c\uddf2\ud83c\udde6\ud83c\udde6\ud83c\uddea","screen_name":"shaima32bxl","location":"Bruxelles, - Belgique","description":"\ud83d\uddd3 A rejoint Twitter en mars 2018","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":54,"listed_count":0,"created_at":"Fri - Feb 21 22:39:53 +0000 2020","favourites_count":69,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230985594953551872\/7uK787o8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230985594953551872\/7uK787o8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1230985456281686023\/1582368569","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:25:54 +0000 2020","id":1234877670271410182,"id_str":"1234877670271410182","text":"Le - Maroc seul pays heureux quand ils ont su qu\u2019il y avait un cas de Coronavirus, - ils sont partis klaxonner devant l\u2026 https:\/\/t.co\/tEyZGfVwRB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tEyZGfVwRB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234877670271410182","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1139651965540020225,"id_str":"1139651965540020225","name":"Farah_you","screen_name":"faroushhhhhh","location":"Quelque - part ","description":"Lorsque tu ne sais pas ou tu vas , rappelle toi d''o\u00f9 - tu viens \ud83c\uddf2\ud83c\udde6 @jul","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":958,"friends_count":801,"listed_count":1,"created_at":"Fri - Jun 14 21:52:57 +0000 2019","favourites_count":5219,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11188,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229565573060841473\/n5rO3JRc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229565573060841473\/n5rO3JRc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1139651965540020225\/1583444481","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2834,"favorite_count":7112,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":2834,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703680180225,"id_str":"1235246703680180225","text":"Amazon - Sells Books That Claim Satan Caused The Coronavirus https:\/\/t.co\/ajOXXN4n8q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ajOXXN4n8q","expanded_url":"https:\/\/www.forbes.com\/sites\/rosaescandon\/2020\/02\/28\/amazon-sells-books-that-claim-satan-caused-the-coronavirus\/","display_url":"forbes.com\/sites\/rosaesca\u2026","indices":[59,82]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25461610,"id_str":"25461610","name":"sweet_emmee\/Emily\u267f\ufe0f","screen_name":"sweet_emmee","location":"Satan''s. - Asshole ","description":"Recycle yourself become an organ donor. All politicians - are pieces of shit.","url":"https:\/\/t.co\/i07wF2ODWz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i07wF2ODWz","expanded_url":"http:\/\/www.aboxofcrayons.webs.com","display_url":"aboxofcrayons.webs.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1300,"friends_count":4999,"listed_count":32,"created_at":"Fri - Mar 20 04:42:00 +0000 2009","favourites_count":531,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":140711,"lang":null,"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\/1232494949741944833\/2qiL_4An_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232494949741944833\/2qiL_4An_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25461610\/1582684670","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"},"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703659360257,"id_str":"1235246703659360257","text":"RT - @RepMichaelWaltz: Congress should have been here last weekend to pass a #coronavirus - funding bill.\n\nBut here we are, with no bill to vot\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[75,87]}],"symbols":[],"user_mentions":[{"screen_name":"RepMichaelWaltz","name":"Rep. - Michael Waltz","id":1082416697380913152,"id_str":"1082416697380913152","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":844987451626213376,"id_str":"844987451626213376","name":"Truthseeker","screen_name":"Shaddilay","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":478,"listed_count":1,"created_at":"Thu - Mar 23 19:01:22 +0000 2017","favourites_count":20262,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13267,"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\/1235587141515821057\/mE7lFI1g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235587141515821057\/mE7lFI1g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/844987451626213376\/1580522328","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:28:32 +0000 2020","id":1235240723517255681,"id_str":"1235240723517255681","text":"Congress - should have been here last weekend to pass a #coronavirus funding bill.\n\nBut - here we are, with no bill to\u2026 https:\/\/t.co\/VV9vzn9IfS","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[54,66]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VV9vzn9IfS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235240723517255681","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1082416697380913152,"id_str":"1082416697380913152","name":"Rep. - Michael Waltz","screen_name":"RepMichaelWaltz","location":"","description":"Congressman - for #FL6 (Volusia, Flagler, Lake, St Johns Counties), Green Beret, National - Guard Lt. Col., former CEO, Author of \"Warrior Diplomat,\" Father.","url":"https:\/\/t.co\/QOB7UQmYz2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QOB7UQmYz2","expanded_url":"http:\/\/waltz.house.gov","display_url":"waltz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18308,"friends_count":511,"listed_count":224,"created_at":"Mon - Jan 07 23:20:25 +0000 2019","favourites_count":877,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":1976,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215019343739838464\/ZGNl7bHe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215019343739838464\/ZGNl7bHe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1082416697380913152\/1560377890","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235236383112998912,"quoted_status_id_str":"1235236383112998912","quoted_status":{"created_at":"Wed - Mar 04 16:11:17 +0000 2020","id":1235236383112998912,"id_str":"1235236383112998912","text":"Congress - should''ve already passed a funding bill to combat coronavirus. Period. But - Democrats are hellbent on sneak\u2026 https:\/\/t.co\/26hKMBMO4s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/26hKMBMO4s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235236383112998912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19739126,"id_str":"19739126","name":"Kevin - McCarthy","screen_name":"GOPLeader","location":"Bakersfield, CA","description":"Republican - Leader and Representative of California''s 23rd District in the House of Representatives.\nhttps:\/\/t.co\/ZqWsqD6L0T","url":"https:\/\/t.co\/eB1lud6Yi3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eB1lud6Yi3","expanded_url":"http:\/\/republicanleader.gov","display_url":"republicanleader.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZqWsqD6L0T","expanded_url":"https:\/\/www.instagram.com\/repkevinmccarthy\/","display_url":"instagram.com\/repkevinmccart\u2026","indices":[100,123]}]}},"protected":false,"followers_count":708093,"friends_count":1388,"listed_count":4807,"created_at":"Thu - Jan 29 22:28:48 +0000 2009","favourites_count":1829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12552,"lang":null,"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\/1144683452064833536\/fZbuxrtg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144683452064833536\/fZbuxrtg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19739126\/1582230846","profile_link_color":"0A2644","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"122C73","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12035,"favorite_count":31046,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":688,"favorite_count":1637,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235236383112998912,"quoted_status_id_str":"1235236383112998912","retweet_count":688,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703541805057,"id_str":"1235246703541805057","text":"RT - @_sabanaqvi: Years ago a VHP leader whom I met with Uma Bharti gifted me cow - urine soap for good complexion. I passed on \"gift\" to a pro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_sabanaqvi","name":"Saba - Naqvi","id":1019469630,"id_str":"1019469630","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":986248806445363200,"id_str":"986248806445363200","name":"Narendra - Shah","screen_name":"NrndraShah","location":" India","description":"Hate Hitler","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":187,"friends_count":728,"listed_count":0,"created_at":"Tue - Apr 17 14:23:33 +0000 2018","favourites_count":49292,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235130525850853377\/J1RLzHG6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235130525850853377\/J1RLzHG6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/986248806445363200\/1558002389","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:13:26 +0000 2020","id":1235191625766318081,"id_str":"1235191625766318081","text":"Years - ago a VHP leader whom I met with Uma Bharti gifted me cow urine soap for good - complexion. I passed on \"gift\"\u2026 https:\/\/t.co\/X8Dee9nxFS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/X8Dee9nxFS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235191625766318081","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1019469630,"id_str":"1019469630","name":"Saba - Naqvi","screen_name":"_sabanaqvi","location":"","description":"Books, In Good - Faith (2012) Capital Conquest (2015). Shades of Saffron: From Vajpayee to - Modi ( 2018) Politics of Jugaad: the coalition handbook (March 2019)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":384360,"friends_count":978,"listed_count":634,"created_at":"Tue - Dec 18 10:29:25 +0000 2012","favourites_count":2913,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7864,"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\/2990423736\/fc6bbff4bbc0132feada7c1cd0a2f2f0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2990423736\/fc6bbff4bbc0132feada7c1cd0a2f2f0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1019469630\/1559158318","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":226,"favorite_count":818,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":226,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703537786880,"id_str":"1235246703537786880","text":"RT - @CesareSacchetti: Lucia Azzolina \u00e8 intenzionata a chiudere le scuole. - \u00c8 la stessa Lucia Azzolina che un mese fa diceva che la quarantena\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CesareSacchetti","name":"Cesare - Sacchetti","id":1365423529,"id_str":"1365423529","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":366742478,"id_str":"366742478","name":"Domenico - Coiro","screen_name":"superdomer","location":"","description":"Non chiedete - cosa possa fare il paese per voi: chiedete cosa potete fare voi per il paese - -Domenico (dominus) Massimo K\u20ac- non so come sapesse mio padre nel 1972","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":593,"friends_count":1061,"listed_count":40,"created_at":"Fri - Sep 02 18:50:31 +0000 2011","favourites_count":22165,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34569,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512714191661060096\/H6G8lCh5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512714191661060096\/H6G8lCh5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366742478\/1384609628","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:50:26 +0000 2020","id":1235216035906805761,"id_str":"1235216035906805761","text":"Lucia - Azzolina \u00e8 intenzionata a chiudere le scuole. \u00c8 la stessa Lucia - Azzolina che un mese fa diceva che la quarant\u2026 https:\/\/t.co\/LpBenJIykt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LpBenJIykt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235216035906805761","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1365423529,"id_str":"1365423529","name":"Cesare - Sacchetti","screen_name":"CesareSacchetti","location":"","description":"Journalist. - Politically incorrect and heretical. My blog is The eye of the needle (https:\/\/t.co\/D56vqq2IcN). - Join me on Telegram: https:\/\/t.co\/HW8UFqm6Gj","url":"https:\/\/t.co\/Uxtyt4cLOw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Uxtyt4cLOw","expanded_url":"https:\/\/lacrunadellago.net\/","display_url":"lacrunadellago.net","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/D56vqq2IcN","expanded_url":"http:\/\/lacrunadellago.net","display_url":"lacrunadellago.net","indices":[83,106]},{"url":"https:\/\/t.co\/HW8UFqm6Gj","expanded_url":"https:\/\/t.me\/cesaresacchetti","display_url":"t.me\/cesaresacchetti","indices":[130,153]}]}},"protected":false,"followers_count":26218,"friends_count":212,"listed_count":125,"created_at":"Fri - Apr 19 21:14:33 +0000 2013","favourites_count":6957,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225733766271918080\/bWc9vR5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225733766271918080\/bWc9vR5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1365423529\/1578062386","profile_link_color":"3B94D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":633,"favorite_count":1433,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":633,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703529336832,"id_str":"1235246703529336832","text":"RT - @Obiba_: The coronavirus has mutated into at least two separate strains since - the outbreak began in December, according to Chinese scien\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Obiba_","name":"Tutankhamun.","id":445491240,"id_str":"445491240","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133869886,"id_str":"133869886","name":"Mintamino","screen_name":"BraTumTum","location":"Accra, - Ghana","description":"RTs are not endorsements","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1517,"friends_count":918,"listed_count":18,"created_at":"Fri - Apr 16 21:24:13 +0000 2010","favourites_count":11330,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":127413,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1235098943953997825\/h24oviyj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235098943953997825\/h24oviyj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133869886\/1581083124","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:34:26 +0000 2020","id":1235196907703721984,"id_str":"1235196907703721984","text":"The - coronavirus has mutated into at least two separate strains since the outbreak - began in December, according to C\u2026 https:\/\/t.co\/28B1njdakA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/28B1njdakA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235196907703721984","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":445491240,"id_str":"445491240","name":"Tutankhamun.","screen_name":"Obiba_","location":"Afriqu\u00e9","description":"The - weight of this world will not bring us down. Where God Guides, He Provides! - Disrespect in any form is not tolerated here. You won''t last 2 sec. \ud83d\ude18\ud83d\ude4f\ud83c\udffe\u270a\ud83c\udffe","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8060,"friends_count":362,"listed_count":84,"created_at":"Sat - Dec 24 13:27:30 +0000 2011","favourites_count":904,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":359124,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1157048323091529730\/HELUdMz7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1157048323091529730\/HELUdMz7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/445491240\/1528448502","profile_link_color":"3B94D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703508205569,"id_str":"1235246703508205569","text":"RT - @narendramodi: Experts across the world have advised to reduce mass gatherings - to avoid the spread of COVID-19 Novel Coronavirus. Hence,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"narendramodi","name":"Narendra - Modi","id":18839785,"id_str":"18839785","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":757149111233581059,"id_str":"757149111233581059","name":"Somdeb - Chakraborty","screen_name":"hello_somdeb","location":"","description":"Fear - and Truth. Combination unmatched","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":217,"friends_count":316,"listed_count":0,"created_at":"Sun - Jul 24 09:43:10 +0000 2016","favourites_count":53930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10461,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233031176622764032\/qzxFwzi1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233031176622764032\/qzxFwzi1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/757149111233581059\/1551846742","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:03:14 +0000 2020","id":1235083359501430789,"id_str":"1235083359501430789","text":"Experts - across the world have advised to reduce mass gatherings to avoid the spread - of COVID-19 Novel Coronavirus.\u2026 https:\/\/t.co\/ItCl1V8NlZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ItCl1V8NlZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235083359501430789","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18839785,"id_str":"18839785","name":"Narendra - Modi","screen_name":"narendramodi","location":"India","description":"Prime - Minister of India","url":"https:\/\/t.co\/zzYhUUfq6i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zzYhUUfq6i","expanded_url":"http:\/\/www.narendramodi.in","display_url":"narendramodi.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53459866,"friends_count":2371,"listed_count":25198,"created_at":"Sat - Jan 10 17:18:56 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":25997,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F4EDD4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1134082549041393672\/QbihPzrL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134082549041393672\/QbihPzrL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18839785\/1559221352","profile_link_color":"4E7096","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D5DFED","profile_text_color":"233863","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18472,"favorite_count":101733,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18472,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703478853632,"id_str":"1235246703478853632","text":"RT - @zeefa64: #ShakingMyHeadOutLoud \nhttps:\/\/t.co\/Z1xabcNN23","truncated":false,"entities":{"hashtags":[{"text":"ShakingMyHeadOutLoud","indices":[13,34]}],"symbols":[],"user_mentions":[{"screen_name":"zeefa64","name":"Zee - Zembry \ud83d\udc8b \ud83c\uddfa\ud83c\uddf8 \u274c \u2764","id":234497162,"id_str":"234497162","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/Z1xabcNN23","expanded_url":"https:\/\/www.dailywire.com\/news\/denver-democrat-candi-cdebaca-stands-in-solidarity-with-wanting-to-use-coronavirus-on-trump-supporters?utm_content=non_insiders&utm_campaign=dw_newsletter&utm_medium=email&utm_source=housefile&_hsenc=p2ANqtz-96ZqJc1i4pjwh5qSpqBwCbgWTScJfWjR-iAG4bkGrvgF-UqeMb0Y-vZvzGa3s5AvI8yttJjiITqluhCdbzZ8-ncSVJug&_hsmi=84249965","display_url":"dailywire.com\/news\/denver-de\u2026","indices":[36,59]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217271416460103680,"id_str":"1217271416460103680","name":"ReasonInTheWind","screen_name":"ReasonWind","location":"Everywhere...","description":"\u2764\ufe0f\ud83c\uddfa\ud83c\uddf8kag\ud83c\uddfa\ud83c\uddf8\u2764\ufe0f\u23f0DrainTheSwamp\u23f0 - People Worldwide Are Fighting Against Tyranny!\ud83d\ude4f\ud83c\udffb No - DMs please.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":236,"friends_count":219,"listed_count":0,"created_at":"Wed - Jan 15 02:28:09 +0000 2020","favourites_count":5819,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":899,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227477273110028296\/SdeiSHJr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227477273110028296\/SdeiSHJr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217271416460103680\/1579083308","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:30:00 +0000 2020","id":1235241090489503747,"id_str":"1235241090489503747","text":"#ShakingMyHeadOutLoud - \nhttps:\/\/t.co\/Z1xabcNN23","truncated":false,"entities":{"hashtags":[{"text":"ShakingMyHeadOutLoud","indices":[0,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Z1xabcNN23","expanded_url":"https:\/\/www.dailywire.com\/news\/denver-democrat-candi-cdebaca-stands-in-solidarity-with-wanting-to-use-coronavirus-on-trump-supporters?utm_content=non_insiders&utm_campaign=dw_newsletter&utm_medium=email&utm_source=housefile&_hsenc=p2ANqtz-96ZqJc1i4pjwh5qSpqBwCbgWTScJfWjR-iAG4bkGrvgF-UqeMb0Y-vZvzGa3s5AvI8yttJjiITqluhCdbzZ8-ncSVJug&_hsmi=84249965","display_url":"dailywire.com\/news\/denver-de\u2026","indices":[23,46]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234497162,"id_str":"234497162","name":"Zee - Zembry \ud83d\udc8b \ud83c\uddfa\ud83c\uddf8 \u274c \u2764","screen_name":"zeefa64","location":"Phoenix, - AZ","description":"ORRN. Flight Attendant. Catholic. Political Activist, Administrator - https:\/\/t.co\/tjwgzRNXVT #MAGA #Q #ProudDeplorable #KAG *Shadow Banned *No - Dates","url":"https:\/\/t.co\/fGXLo0hfBD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fGXLo0hfBD","expanded_url":"http:\/\/www.facebook.com\/zee.zembry","display_url":"facebook.com\/zee.zembry","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/tjwgzRNXVT","expanded_url":"http:\/\/OverpassesforAmerica.org","display_url":"OverpassesforAmerica.org","indices":[68,91]}]}},"protected":false,"followers_count":31195,"friends_count":34116,"listed_count":55,"created_at":"Wed - Jan 05 20:17:35 +0000 2011","favourites_count":100838,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104351,"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\/1212770112153047042\/1OSNrWB3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212770112153047042\/1OSNrWB3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234497162\/1524923762","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":4,"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703470669831,"id_str":"1235246703470669831","text":"@AWorldOutOfMind - Leave Trump alone. If he wants to congregate with sick people who are we to - stop him? Go coronavirus.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AWorldOutOfMind","name":"Saint - Brian The Godless","id":2258357868,"id_str":"2258357868","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1235046296320241664,"in_reply_to_status_id_str":"1235046296320241664","in_reply_to_user_id":2258357868,"in_reply_to_user_id_str":"2258357868","in_reply_to_screen_name":"AWorldOutOfMind","user":{"id":1070451521895186433,"id_str":"1070451521895186433","name":"Thinker","screen_name":"ln10YAYGYEBuTyy","location":"","description":"I - like sports and understand the need for a free press","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":1,"listed_count":0,"created_at":"Wed - Dec 05 22:55:05 +0000 2018","favourites_count":1291,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":167,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070736581391237120\/EMnqnDPk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070736581391237120\/EMnqnDPk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1070451521895186433\/1544118468","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703369957376,"id_str":"1235246703369957376","text":"RT - @Diego17Nicolas: 63 femicidios en 2 meses,en Argentina no hay coronavirus,hay - algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Diego17Nicolas","name":"Diego - Nicol\u00e1s Manzur","id":1232174067207278592,"id_str":"1232174067207278592","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1182686456701165570,"id_str":"1182686456701165570","name":"Agos","screen_name":"pennella24","location":"Villa - Pueyrred\u00f3n, Buenos Aires","description":"19\ud83d\udcab\n\u2022P I S - C I A N A\u2022","url":"https:\/\/t.co\/DfuUSfgURs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DfuUSfgURs","expanded_url":"https:\/\/instagram.com\/agos_pennella?igshid=1rlxg9llxq4ja","display_url":"instagram.com\/agos_pennella?\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":198,"listed_count":0,"created_at":"Fri - Oct 11 15:56:50 +0000 2019","favourites_count":375,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212549569386602497\/4iTFTF7X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212549569386602497\/4iTFTF7X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1182686456701165570\/1580821370","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 17:52:48 +0000 2020","id":1234537151536287745,"id_str":"1234537151536287745","text":"63 - femicidios en 2 meses,en Argentina no hay coronavirus,hay algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232174067207278592,"id_str":"1232174067207278592","name":"Diego - Nicol\u00e1s Manzur","screen_name":"Diego17Nicolas","location":"","description":"\u2649\n\ud83c\udf47 - Mendoza-Argentina\ud83c\udf77\nig: 17diego_nicolas \n\nCARC \ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":101,"listed_count":0,"created_at":"Tue - Feb 25 05:22:56 +0000 2020","favourites_count":172,"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:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232174067207278592\/1583297600","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12833,"favorite_count":22725,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":12833,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703357448198,"id_str":"1235246703357448198","text":"RT - @tragicom24: Coronavirus, scuole e Universit\u00e0 chiuse per sempre.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tragicom24","name":"Tragicom24","id":497190015,"id_str":"497190015","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1182979295117037568,"id_str":"1182979295117037568","name":"fat - bottomed rag doll","screen_name":"guevarabennet","location":"Mordor, Middle - Earth","description":"troppo politico, perch\u00e9 vivo in un\ntalk show dove - se parlo troppo poi litigo, il mio lessico poco compreso, chi mi critica lo - fa per partito preso","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":429,"listed_count":0,"created_at":"Sat - Oct 12 11:20:37 +0000 2019","favourites_count":682,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219346846155448321\/qDh5blGO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219346846155448321\/qDh5blGO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1182979295117037568\/1570983351","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:38:20 +0000 2020","id":1235197891142176768,"id_str":"1235197891142176768","text":"Coronavirus, - scuole e Universit\u00e0 chiuse per sempre.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":497190015,"id_str":"497190015","name":"Tragicom24","screen_name":"tragicom24","location":"Bologna, - Emilia Romagna","description":"Fino Alla Fine \u26aa\ufe0f\u26ab\ufe0f Ball - is Life \ud83c\udfc0 Law Student \u2696\ufe0f #MambaForever \ud83d\udc9b\ud83d\udc9c - 8\ufe0f\u20e3\/2\ufe0f\u20e34\ufe0f\u20e3 TuidderCalcio\u26bd\ufe0f","url":"https:\/\/t.co\/IgXVNp0tJR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IgXVNp0tJR","expanded_url":"https:\/\/www.instagram.com\/aluz12\/?hl=it","display_url":"instagram.com\/aluz12\/?hl=it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7521,"friends_count":167,"listed_count":5,"created_at":"Sun - Feb 19 18:28:00 +0000 2012","favourites_count":16850,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3698,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231609074455805956\/9VJJNj1g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231609074455805956\/9VJJNj1g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/497190015\/1580549361","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2834,"favorite_count":11016,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":2834,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703357423616,"id_str":"1235246703357423616","text":"RT - @RyutaroUchiyama: I''m stunned by the depth of #coronavirus information being - released in #Singapore. On this website you can see every k\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[49,61]},{"text":"Singapore","indices":[92,102]}],"symbols":[],"user_mentions":[{"screen_name":"RyutaroUchiyama","name":"\ud83d\udcce - \u00ae \u00a5 \u00a8 \u2020 \u00e5 \u00ae \u00f8","id":1080275878771388416,"id_str":"1080275878771388416","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":952795387,"id_str":"952795387","name":"Thomas - Crouzier","screen_name":"ThomasCrouzier","location":"Stockholm, Sweden","description":"Driven - by curiosity.","url":"https:\/\/t.co\/zArauI6sNY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zArauI6sNY","expanded_url":"http:\/\/biopolymersforlife.org","display_url":"biopolymersforlife.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":393,"friends_count":306,"listed_count":41,"created_at":"Sat - Nov 17 02:33:35 +0000 2012","favourites_count":250,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":866,"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\/519758270861279232\/iH_ls30X_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/519758270861279232\/iH_ls30X_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/952795387\/1421840085","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 23:08:59 +0000 2020","id":1234616723615166465,"id_str":"1234616723615166465","text":"I''m - stunned by the depth of #coronavirus information being released in #Singapore. - On this website you can see ever\u2026 https:\/\/t.co\/cPgcd7BRFm","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]},{"text":"Singapore","indices":[71,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cPgcd7BRFm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234616723615166465","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1080275878771388416,"id_str":"1080275878771388416","name":"\ud83d\udcce - \u00ae \u00a5 \u00a8 \u2020 \u00e5 \u00ae \u00f8","screen_name":"RyutaroUchiyama","location":"London, - England","description":"\u02da \u02d9\u5185\u5c71\u9686\u592a\u90ce\u3067\u3059 - \u02da\ud83d\udcce Computational cultural psychology & cognitive evolution - \u00ba \u301c \u02da PhD candidate at the London School of Economics \u00ba\u02da\u00a8\ud83d\udcce - Japanese sense of reality \u2022 \u2248","url":"https:\/\/t.co\/jAffbNH909","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jAffbNH909","expanded_url":"http:\/\/uchiyamaryutaro.com","display_url":"uchiyamaryutaro.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":621,"friends_count":164,"listed_count":5,"created_at":"Wed - Jan 02 01:33:34 +0000 2019","favourites_count":57,"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":"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\/1208543072273010689\/CWpHKcTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208543072273010689\/CWpHKcTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1080275878771388416\/1576974442","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9725,"favorite_count":19701,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9725,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703332253698,"id_str":"1235246703332253698","text":"@_onerolita - si no me mata el coronavirus me mata y no se q onda man. jajajajaja","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_onerolita","name":"Rolita","id":1276746475,"id_str":"1276746475","indices":[0,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234999382090514432,"in_reply_to_status_id_str":"1234999382090514432","in_reply_to_user_id":1276746475,"in_reply_to_user_id_str":"1276746475","in_reply_to_screen_name":"_onerolita","user":{"id":998670909388066816,"id_str":"998670909388066816","name":"facundo","screen_name":"facundonavas129","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":425,"friends_count":450,"listed_count":0,"created_at":"Mon - May 21 21:04:34 +0000 2018","favourites_count":28868,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19298,"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\/1234350162136436736\/tztrmzec_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234350162136436736\/tztrmzec_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/998670909388066816\/1582265430","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703302914049,"id_str":"1235246703302914049","text":"RT - @ROSNALJU: Coronavirus or not \n\nYou shouldn\u2019t have to be told to wash - your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ROSNALJU","name":"RO$NA","id":224805342,"id_str":"224805342","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":219827365,"id_str":"219827365","name":"amandaalynnxo.\u2728","screen_name":"amandaalynnxo","location":"NJ\u2708\ufe0fFL","description":"812|1015|212,forever.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":735,"friends_count":820,"listed_count":3,"created_at":"Fri - Nov 26 00:24:29 +0000 2010","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":64618,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"121012","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\/1184083254011449344\/UB8mZobi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184083254011449344\/UB8mZobi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219827365\/1507562674","profile_link_color":"EB660E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"3D273D","profile_text_color":"F0E7F0","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 19:48:03 +0000 2020","id":1234566154523275265,"id_str":"1234566154523275265","text":"Coronavirus - or not \n\nYou shouldn\u2019t have to be told to wash your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224805342,"id_str":"224805342","name":"RO$NA","screen_name":"ROSNALJU","location":"SLC","description":"IG - @ROSNALJU","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2460,"friends_count":585,"listed_count":12,"created_at":"Thu - Dec 09 22:32:46 +0000 2010","favourites_count":17407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"40030B","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\/1227249944861401088\/100hmgPB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227249944861401088\/100hmgPB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224805342\/1510187001","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"959FA6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86346,"favorite_count":208737,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":86346,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703168671745,"id_str":"1235246703168671745","text":"New - York reports more coronavirus cases, bringing total in state to six\n\nhttps:\/\/t.co\/GMEMKrw1Dk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GMEMKrw1Dk","expanded_url":"https:\/\/www.scmp.com\/news\/world\/united-states-canada\/article\/3065072\/new-york-reports-more-coronavirus-cases-bringing","display_url":"scmp.com\/news\/world\/uni\u2026","indices":[73,96]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":984316404324184064,"id_str":"984316404324184064","name":"Corona - Virus News 24x7","screen_name":"coronanewsapp","location":"Hong Kong","description":"latest - corona virus news","url":"https:\/\/t.co\/Okt7uigpuN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Okt7uigpuN","expanded_url":"https:\/\/play.google.com\/store\/apps\/details?id=com.codecrewz.nabin.coronanews","display_url":"play.google.com\/store\/apps\/det\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":595,"listed_count":2,"created_at":"Thu - Apr 12 06:24:53 +0000 2018","favourites_count":835,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":567,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232862321036296192\/rAQpHm3T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232862321036296192\/rAQpHm3T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/984316404324184064\/1582772424","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703147655168,"id_str":"1235246703147655168","text":"RT - @paultutiven: URGENTE: 3 casos nuevos de coronavirus en Ecuador, son familiares - directos de la primera paciente. En total en el pa\u00eds hay\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"paultutiven","name":"Paul - Tutiven Fuentes","id":128955581,"id_str":"128955581","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52269959,"id_str":"52269959","name":"Galo - Merino","screen_name":"GaloMerinoM","location":"Guayaquil","description":"Lasallano, - Polit\u00e9cnico, Ing. RF, Ing. Telecomunicaciones, #Ecuatoriano #Guayaco - #futbolero #aventurero","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":489,"listed_count":2,"created_at":"Tue - Jun 30 02:11:15 +0000 2009","favourites_count":2264,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":56400,"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\/1156690510670684160\/uPg6rDnb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1156690510670684160\/uPg6rDnb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52269959\/1438476733","profile_link_color":"0099CC","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:57:52 +0000 2020","id":1235233005414866945,"id_str":"1235233005414866945","text":"URGENTE: - 3 casos nuevos de coronavirus en Ecuador, son familiares directos de la primera - paciente. En total en el p\u2026 https:\/\/t.co\/pPAjyv9ZkN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pPAjyv9ZkN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235233005414866945","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128955581,"id_str":"128955581","name":"Paul - Tutiven Fuentes","screen_name":"paultutiven","location":"Guayaquil - Ecuador","description":"TELEAMAZONAS - - NOTICIAS - LICENCIADO EN COMUNICACI\u00d3N SOCIAL","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29525,"friends_count":733,"listed_count":120,"created_at":"Fri - Apr 02 18:39:01 +0000 2010","favourites_count":238,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169331925020004352\/ar-vCrXW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169331925020004352\/ar-vCrXW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128955581\/1422850164","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":70,"favorite_count":52,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":70,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703030218752,"id_str":"1235246703030218752","text":"#SXSW - is still on, y''all https:\/\/t.co\/lqGNHBJ9vN","truncated":false,"entities":{"hashtags":[{"text":"SXSW","indices":[0,5]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lqGNHBJ9vN","expanded_url":"https:\/\/www.adweek.com\/brand-marketing\/south-by-southwest-is-not-canceled-despite-coronavirus-concerns\/","display_url":"adweek.com\/brand-marketin\u2026","indices":[25,48]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23899218,"id_str":"23899218","name":"Katie - Lundstrom","screen_name":"klundster","location":"Austin, TX","description":"breaking - news @adweek; \n@UTJSchool & @TheLBJSchool; \npast: @DONUTdailynews, @TexasHRO, - @TexasTribune, @SINow. \nstory ideas? \ud83d\udc49 kathryn.lundstrom@adweek.com","url":"https:\/\/t.co\/dlBfnjVDoq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dlBfnjVDoq","expanded_url":"https:\/\/www.linkedin.com\/in\/kathrynmlundstrom\/","display_url":"linkedin.com\/in\/kathrynmlun\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":561,"friends_count":1582,"listed_count":14,"created_at":"Thu - Mar 12 04:39:32 +0000 2009","favourites_count":5570,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"378074","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\/1232320228601757697\/zpJTsbFG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232320228601757697\/zpJTsbFG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23899218\/1570825918","profile_link_color":"37A168","profile_sidebar_border_color":"525252","profile_sidebar_fill_color":"A6A6A6","profile_text_color":"262626","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246703004897281,"id_str":"1235246703004897281","text":"RT - @AmitShah: Holi is a very important festival for we Indians but in the wake - of Coronavirus, i have decided not to participate in any Hol\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmitShah","name":"Amit - Shah","id":1447949844,"id_str":"1447949844","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1206008239243976704,"id_str":"1206008239243976704","name":"My - Info","screen_name":"MyInfo99244513","location":"","description":"chess player","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":131,"listed_count":0,"created_at":"Sun - Dec 15 00:29:15 +0000 2019","favourites_count":2250,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":225,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206008472464027648\/Bwd5hRoS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206008472464027648\/Bwd5hRoS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 07:32:27 +0000 2020","id":1235105813418479616,"id_str":"1235105813418479616","text":"Holi - is a very important festival for we Indians but in the wake of Coronavirus, - i have decided not to participate\u2026 https:\/\/t.co\/vtGFZzaCSR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vtGFZzaCSR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235105813418479616","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1447949844,"id_str":"1447949844","name":"Amit - Shah","screen_name":"AmitShah","location":"","description":"Union Home Minister, - Government of India | MP, Gandhinagar Lok Sabha.","url":"https:\/\/t.co\/T8qyKz0gq5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/T8qyKz0gq5","expanded_url":"http:\/\/www.amitshah.co.in","display_url":"amitshah.co.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17655682,"friends_count":295,"listed_count":3239,"created_at":"Wed - May 22 04:43:54 +0000 2013","favourites_count":123,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10637,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1180491411172413440\/AunoqDQW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180491411172413440\/AunoqDQW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447949844\/1483460817","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9146,"favorite_count":51746,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9146,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702946168832,"id_str":"1235246702946168832","text":"RT - @katsuyatakasu: \u300c4\u65e519:55\u66f4\u65b0\uff1a\u9ad8\u77e5\u770c\u30674\u4eba\u306e\u611f\u67d3\u78ba\u8a8d - \u5c0f\u5b66\u751f\u542b\u3080\u7537\u5973\u300d #Coronavirus https:\/\/t.co\/MRBexKUXrw","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[51,63]}],"symbols":[],"user_mentions":[{"screen_name":"katsuyatakasu","name":"\u9ad8\u9808\u514b\u5f25","id":362401254,"id_str":"362401254","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/MRBexKUXrw","expanded_url":"https:\/\/twitter.com\/i\/events\/1219057585707315201","display_url":"twitter.com\/i\/events\/12190\u2026","indices":[64,87]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218150510,"id_str":"218150510","name":"\u30b7\u30eb\u30af\u30bb\u30e9\u30d4\u30b9\u30c8\u5742\u68a8\u79c0\u5b50","screen_name":"silktherapylabs","location":"silk\u306e\u9593\u30fbosaka - Japan","description":"20\u5e74\u524d\u79c1\u304c\u51fa\u9022\u3063\u305f\u306e\u306f\u5929\u306e\u866b\u2026\u8695\u3067\u3057\u305f\u3002\u30b7\u30eb\u30af\u30ed\u30fc\u30c9\u306f\u6587\u5b57\u3069\u304a\u308a\u7d79\u306e\u9053\u3002\u307b\u3093\u306e\u5c0f\u3055\u306a\u5e7c\u866b\u304c\u7d21\u304e\u3060\u30591\u7b4b\u306e\u7cf8\u306f\u897f\u6d0b\u3068\u6771\u6d0b\u306e\u6587\u5316\u3092\u7d50\u3073\u3064\u3051\u308b\u307b\u3069\u5f37\u529b\u3067\u3057\u305f\u3002\u30b7\u30eb\u30af\u30fb\u7e6d\u30fb\u8695\u306e\u30d5\u30f3\u30fb\u86f9\u306a\u3069\u3092\u6709\u52b9\u5229\u7528\u3057\u305f\u5929\u7136\u6210\u5206\u306b\u62d8\u308a\u6d17\u9854\u6599\u3084\u30d1\u30c3\u30af\u30fb\u3092\u958b\u767a\u3002\u30b7\u30eb\u30af\u30bb\u30e9\u30d4\u30fc\u3092\u4e3b\u5bb0\u3002\u8457\u66f8\u30fb\u96d1\u8a8c\u30fb\u8b1b\u6f14\u2605\u8695\u306e\u30d5\u30f3\u3067\u7d79\u306e\u808c\u8457\u2605\u8695\u306e\u30d5\u30f3\u306f6\u89d2\u5f62\u306e\u304a\u661f\u69d8","url":"https:\/\/t.co\/BV6J3aOPoS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BV6J3aOPoS","expanded_url":"http:\/\/ameblo.jp\/silktherapy\/","display_url":"ameblo.jp\/silktherapy\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3468,"friends_count":3950,"listed_count":23,"created_at":"Sun - Nov 21 15:24:17 +0000 2010","favourites_count":66871,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":204553,"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\/893361627717746689\/gvCRWZ_y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/893361627717746689\/gvCRWZ_y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218150510\/1416904781","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 11:21:00 +0000 2020","id":1235163327426252800,"id_str":"1235163327426252800","text":"\u300c4\u65e519:55\u66f4\u65b0\uff1a\u9ad8\u77e5\u770c\u30674\u4eba\u306e\u611f\u67d3\u78ba\u8a8d - \u5c0f\u5b66\u751f\u542b\u3080\u7537\u5973\u300d #Coronavirus https:\/\/t.co\/MRBexKUXrw","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[32,44]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MRBexKUXrw","expanded_url":"https:\/\/twitter.com\/i\/events\/1219057585707315201","display_url":"twitter.com\/i\/events\/12190\u2026","indices":[45,68]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":362401254,"id_str":"362401254","name":"\u9ad8\u9808\u514b\u5f25","screen_name":"katsuyatakasu","location":"","description":"\u7be4\u5fd7\u5bb6\u3001\u6559\u80b2\u8005\u3001\u58f2\u308c\u306a\u3044\u3082\u306e\u304b\u304d\u3002\u30c1\u30e3\u30ec\u30f3\u30b8\u30e3\u30fc\u3002\u50e7\u4fb6\u3002\u30d5\u30ea\u30fc\u30e1\u30a4\u30bd\u30f3\u3002\u30ca\u30b7\u30e7\u30ca\u30ea\u30b9\u30c8\u3002\u30ae\u30e3\u30f3\u30d6\u30e9\u30fc\u3002\u5168\u8eab\u764c\u3002\u3064\u3044\u306f\u3044\u3002\u3061\u3087\u3044\u5f79\u5c02\u9580\u5f79\u8005\u3001\u533b\u8005\u3082\u3067\u304d\u308b\u3002","url":"https:\/\/t.co\/daibwZxJAr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/daibwZxJAr","expanded_url":"https:\/\/www.takasu.co.jp\/","display_url":"takasu.co.jp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":639047,"friends_count":337,"listed_count":3920,"created_at":"Fri - Aug 26 10:14:42 +0000 2011","favourites_count":943,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":104919,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1110426165670363136\/2ZyuJzHc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1110426165670363136\/2ZyuJzHc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/362401254\/1553733471","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"0825bc369803ff9d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0825bc369803ff9d.json","place_type":"city","name":"Nisshin-shi","full_name":"Nisshin-shi, - Aichi","country_code":"JP","country":"Japan","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[137.000106,35.10759],[137.098746,35.10759],[137.098746,35.169075],[137.000106,35.169075]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":177,"favorite_count":589,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"is_quote_status":false,"retweet_count":177,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702753435650,"id_str":"1235246702753435650","text":"RT - @Blayofficial: And on today\u2019s episode of Londoners battling Coronavirus.. - https:\/\/t.co\/8mKlgjtKc9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Blayofficial","name":"Baby - Goat\ud83d\udc10 #NoDaysOff","id":467547816,"id_str":"467547816","indices":[3,16]}],"urls":[],"media":[{"id":1235220669702574080,"id_str":"1235220669702574080","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"}]},"extended_entities":{"media":[{"id":1235220669702574080,"id_str":"1235220669702574080","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"},{"id":1235220669740265474,"id_str":"1235220669740265474","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5cWsAIUHDs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5cWsAIUHDs.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":312,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":550,"h":1200,"resize":"fit"},"large":{"w":640,"h":1396,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"},{"id":1235220669790646274,"id_str":"1235220669790646274","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5oXcAInpvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5oXcAInpvd.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":1222,"resize":"fit"},"small":{"w":445,"h":680,"resize":"fit"},"medium":{"w":786,"h":1200,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"},{"id":1235220669840973824,"id_str":"1235220669840973824","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip50XYAAhf-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip50XYAAhf-C.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"large":{"w":690,"h":960,"resize":"fit"},"small":{"w":489,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":690,"h":960,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1193521781405028352,"id_str":"1193521781405028352","name":"5foot2andhungry","screen_name":"5foot2andhungry","location":"Manchester - ","description":"username says it all tbh. Persian x British","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":88,"listed_count":0,"created_at":"Sun - Nov 10 13:32:29 +0000 2019","favourites_count":4903,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2969,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231275238228418561\/FAq4-Hhm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231275238228418561\/FAq4-Hhm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1193521781405028352\/1573392834","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:08:57 +0000 2020","id":1235220694671204357,"id_str":"1235220694671204357","text":"And - on today\u2019s episode of Londoners battling Coronavirus.. https:\/\/t.co\/8mKlgjtKc9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235220669702574080,"id_str":"1235220669702574080","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235220669702574080,"id_str":"1235220669702574080","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}},{"id":1235220669740265474,"id_str":"1235220669740265474","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5cWsAIUHDs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5cWsAIUHDs.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":312,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":550,"h":1200,"resize":"fit"},"large":{"w":640,"h":1396,"resize":"fit"}}},{"id":1235220669790646274,"id_str":"1235220669790646274","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5oXcAInpvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5oXcAInpvd.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":1222,"resize":"fit"},"small":{"w":445,"h":680,"resize":"fit"},"medium":{"w":786,"h":1200,"resize":"fit"}}},{"id":1235220669840973824,"id_str":"1235220669840973824","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip50XYAAhf-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip50XYAAhf-C.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"large":{"w":690,"h":960,"resize":"fit"},"small":{"w":489,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":690,"h":960,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":467547816,"id_str":"467547816","name":"Baby - Goat\ud83d\udc10 #NoDaysOff\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded","screen_name":"Blayofficial","location":"London, - England","description":"I am a songwriter. A poet. I Rap. I create\/post random - content. I promote those who I feel got potential but don\u2019t have a platform - to show \ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff","url":"https:\/\/t.co\/1KBNQ2eJvG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1KBNQ2eJvG","expanded_url":"https:\/\/curiouscat.me\/Blayofficial","display_url":"curiouscat.me\/Blayofficial","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21991,"friends_count":8926,"listed_count":275,"created_at":"Wed - Jan 18 15:52:24 +0000 2012","favourites_count":52923,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":99751,"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\/1202042685940477954\/EwQz1AsU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202042685940477954\/EwQz1AsU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/467547816\/1579133896","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47990,"favorite_count":194671,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":47990,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702745079814,"id_str":"1235246702745079814","text":"RT - @AdeMontchalin: M\u00eame pendant les rencontres diplomatiques on n''oublie - pas les bons gestes \u00e0 adopter pour faire barri\u00e8re au #coronavirus\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[126,138]}],"symbols":[],"user_mentions":[{"screen_name":"AdeMontchalin","name":"Am\u00e9lie - de Montchalin","id":800435764966215680,"id_str":"800435764966215680","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37291086,"id_str":"37291086","name":"Christophe - Guilhou","screen_name":"ChrisGuilhou","location":"Yaound\u00e9","description":"Ambassadeur - de France \ud83c\uddeb\ud83c\uddf7 au Cameroun \ud83c\udde8\ud83c\uddf2","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4397,"friends_count":691,"listed_count":38,"created_at":"Sat - May 02 21:49:49 +0000 2009","favourites_count":2516,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":3402,"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\/1226223277149999104\/HSBDcLqK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226223277149999104\/HSBDcLqK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37291086\/1583169076","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:50:52 +0000 2020","id":1235246344434077696,"id_str":"1235246344434077696","text":"M\u00eame - pendant les rencontres diplomatiques on n''oublie pas les bons gestes \u00e0 - adopter pour faire barri\u00e8re au\u2026 https:\/\/t.co\/ZEDGfd4Csc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZEDGfd4Csc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246344434077696","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[108,131]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800435764966215680,"id_str":"800435764966215680","name":"Am\u00e9lie - de Montchalin","screen_name":"AdeMontchalin","location":"Essonne, Ile-de-France","description":"Secr\u00e9taire - d\u2019Etat aux Affaires Europ\u00e9ennes \ud83c\uddea\ud83c\uddfa @francediplo - #QuaiDOrsay #Essonne","url":"https:\/\/t.co\/OoTCtK8pA1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OoTCtK8pA1","expanded_url":"https:\/\/www.instagram.com\/amelie.demontchalin\/","display_url":"instagram.com\/amelie.demontc\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":39309,"friends_count":2117,"listed_count":415,"created_at":"Sun - Nov 20 20:28:52 +0000 2016","favourites_count":23827,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5814,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1147102391742976001\/fmReRIdg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1147102391742976001\/fmReRIdg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800435764966215680\/1562325498","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":268,"favorite_count":695,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":268,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702732488707,"id_str":"1235246702732488707","text":"Nervy - British lawmakers sweat over coronavirus reaching parliament https:\/\/t.co\/M8lUmSNLpx - https:\/\/t.co\/1KpQhQuJD8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/M8lUmSNLpx","expanded_url":"https:\/\/uk.reuters.com\/article\/uk-health-coronavirus-britain-parliament-idUKKBN20R25C?taid=5e5fdcc138da270001ffed8d&utm_campaign=trueAnthem%3A+Trending+Content&utm_medium=trueAnthem&utm_source=twitter","display_url":"uk.reuters.com\/article\/uk-hea\u2026","indices":[67,90]}],"media":[{"id":1235246701440618497,"id_str":"1235246701440618497","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6VJFXUAE2UAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6VJFXUAE2UAq.jpg","url":"https:\/\/t.co\/1KpQhQuJD8","display_url":"pic.twitter.com\/1KpQhQuJD8","expanded_url":"https:\/\/twitter.com\/ReutersUK\/status\/1235246702732488707\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":451,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":679,"resize":"fit"},"large":{"w":1024,"h":679,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235246701440618497,"id_str":"1235246701440618497","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6VJFXUAE2UAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6VJFXUAE2UAq.jpg","url":"https:\/\/t.co\/1KpQhQuJD8","display_url":"pic.twitter.com\/1KpQhQuJD8","expanded_url":"https:\/\/twitter.com\/ReutersUK\/status\/1235246702732488707\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":451,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":679,"resize":"fit"},"large":{"w":1024,"h":679,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":17038090,"id_str":"17038090","name":"Reuters - UK","screen_name":"ReutersUK","location":"London, United Kingdom","description":"Reuters - UK editors. From pigeons to multimedia, Reuters has been delivering the news - since 1851.","url":"http:\/\/t.co\/TCkfRZtyJD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/TCkfRZtyJD","expanded_url":"http:\/\/uk.reuters.com\/","display_url":"uk.reuters.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":123715,"friends_count":474,"listed_count":3921,"created_at":"Wed - Oct 29 08:43:00 +0000 2008","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":161118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"444444","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\/877448884787838976\/VzLMhDg3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877448884787838976\/VzLMhDg3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17038090\/1535623073","profile_link_color":"006F97","profile_sidebar_border_color":"F5F5F5","profile_sidebar_fill_color":"F5F5F5","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"},"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702610833408,"id_str":"1235246702610833408","text":"RT - @B52Malmet: Breaking: Los Angeles-area officials declare emergency, confirm - new #coronavirus cases https:\/\/t.co\/86Rq49xiR3","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[83,95]}],"symbols":[],"user_mentions":[{"screen_name":"B52Malmet","name":"Barbara - Malmet","id":2876041031,"id_str":"2876041031","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/86Rq49xiR3","expanded_url":"https:\/\/www.cnbc.com\/2020\/03\/04\/los-angeles-area-officials-declare-local-emergency-confirm-new-coronavirus-cases.html?__source=iosappshare%7Ccom.apple.UIKit.activity.PostToTwitter","display_url":"cnbc.com\/2020\/03\/04\/los\u2026","indices":[103,126]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":38444226,"id_str":"38444226","name":"QUEEN - G\u270a\ud83c\udffd\ud83d\ude4c\ud83c\udffd\u270c\ud83c\udffd\ud83c\uddfa\ud83c\uddf8\ud83c\udf0a\u2744","screen_name":"gdirtydime","location":"CHATTANOOGA - TENNESSEE","description":"I am just a Child of God Living for My Jesus...amen - Stay Blessed and Highly Favored.\ud83d\ude4f\ud83c\udf0a\ud83c\udf0a#bluewave - its coming2020\ud83d\ude0e\u270c#Resistance\ud83c\udf0a#FBR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18928,"friends_count":17632,"listed_count":45,"created_at":"Thu - May 07 14:48:37 +0000 2009","favourites_count":298295,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":275278,"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\/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\/1229644176414953472\/DD7DSGkQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229644176414953472\/DD7DSGkQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38444226\/1580589170","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:46:36 +0000 2020","id":1235245267194126339,"id_str":"1235245267194126339","text":"Breaking: - Los Angeles-area officials declare emergency, confirm new #coronavirus cases https:\/\/t.co\/86Rq49xiR3","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[68,80]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/86Rq49xiR3","expanded_url":"https:\/\/www.cnbc.com\/2020\/03\/04\/los-angeles-area-officials-declare-local-emergency-confirm-new-coronavirus-cases.html?__source=iosappshare%7Ccom.apple.UIKit.activity.PostToTwitter","display_url":"cnbc.com\/2020\/03\/04\/los\u2026","indices":[88,111]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2876041031,"id_str":"2876041031","name":"Barbara - Malmet","screen_name":"B52Malmet","location":"New York, NY","description":"Artist, - Activist, TriAthlete, Producer- The democracy you save is your own. #ProtectTheFreePress - #WomensRightsAreHumanRights","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":157889,"friends_count":6798,"listed_count":375,"created_at":"Fri - Nov 14 05:18:51 +0000 2014","favourites_count":656441,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":292088,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876041031\/1579491738","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":135,"favorite_count":122,"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702585671681,"id_str":"1235246702585671681","text":"Thank - you @jeremyfaust! This is the common sense clinician review of #coronavirus - and #COVID\u30fc19 risk that we needed\u2026 https:\/\/t.co\/d2eBptBlq3","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[69,81]},{"text":"COVID\u30fc19","indices":[86,95]}],"symbols":[],"user_mentions":[{"screen_name":"jeremyfaust","name":"Jeremy - Faust MD MS","id":35328942,"id_str":"35328942","indices":[10,22]}],"urls":[{"url":"https:\/\/t.co\/d2eBptBlq3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246702585671681","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19193736,"id_str":"19193736","name":"Logan - Plaster","screen_name":"LoganPlaster","location":"Baltimore, MD","description":"Media - Direct @startuphealth; Editor-in-Chief of StartUp Health Magazine. I write - (& design stuff) about the future of health. Opinions my own.","url":"https:\/\/t.co\/jlYuEdzL2P","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jlYuEdzL2P","expanded_url":"http:\/\/www.startuphealth.com","display_url":"startuphealth.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":335,"friends_count":280,"listed_count":10,"created_at":"Mon - Jan 19 18:06:51 +0000 2009","favourites_count":142,"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":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057308014418440193\/wvnaAohX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057308014418440193\/wvnaAohX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19193736\/1540921537","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235243361054973953,"quoted_status_id_str":"1235243361054973953","quoted_status":{"created_at":"Wed - Mar 04 16:39:01 +0000 2020","id":1235243361054973953,"id_str":"1235243361054973953","text":"COVID-19 - isn\u2019t as deadly as we think. Here\u2019s why... https:\/\/t.co\/MnqRpDon5R","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MnqRpDon5R","expanded_url":"https:\/\/slate.com\/technology\/2020\/03\/coronavirus-mortality-rate-lower-than-we-think.html","display_url":"slate.com\/technology\/202\u2026","indices":[52,75]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35328942,"id_str":"35328942","name":"Jeremy - Faust MD MS","screen_name":"jeremyfaust","location":"Boston, MA","description":"Emergency - doc @HarvardMed @BrighamWomens Editor @ACEPNow Writer @Slate #FOAMed @FOAMpodcast - Music @RoomfulofTeeth prez. Tweets=explicit orders! jfaust@acep.org","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16731,"friends_count":1305,"listed_count":271,"created_at":"Sat - Apr 25 22:32:01 +0000 2009","favourites_count":10892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19216,"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\/785137883556540416\/k8ga2J4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785137883556540416\/k8ga2J4d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35328942\/1419984618","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":136,"favorite_count":267,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702585495559,"id_str":"1235246702585495559","text":"RT - @tedlieu: If true, the @StateDept officials who denied coronavirus testing - to exposed US embassy staff need to resign. \n\nAlso, a reminde\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedlieu","name":"Ted - Lieu","id":21059255,"id_str":"21059255","indices":[3,11]},{"screen_name":"StateDept","name":"Department - of State","id":9624742,"id_str":"9624742","indices":[26,36]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":342337183,"id_str":"342337183","name":"dzcazel - \u270a","screen_name":"dzcazel","location":"WA State","description":"#Resist - , it''s not futile.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":198,"listed_count":7,"created_at":"Mon - Jul 25 21:14:12 +0000 2011","favourites_count":23618,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13547,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225461378162413569\/FzcbCYnN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225461378162413569\/FzcbCYnN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/342337183\/1581007878","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:02:31 +0000 2020","id":1235234176414162944,"id_str":"1235234176414162944","text":"If - true, the @StateDept officials who denied coronavirus testing to exposed US - embassy staff need to resign. \n\nAlso\u2026 https:\/\/t.co\/mrIBNRmtmv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StateDept","name":"Department - of State","id":9624742,"id_str":"9624742","indices":[13,23]}],"urls":[{"url":"https:\/\/t.co\/mrIBNRmtmv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235234176414162944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21059255,"id_str":"21059255","name":"Ted - Lieu","screen_name":"tedlieu","location":"California","description":"Husband - of Betty, the love of my life. Father of two great kids. USAF veteran. Member - of Congress. In that order. Also, I don''t take orders from Vladimir Putin.","url":"https:\/\/t.co\/YZX138uDSy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YZX138uDSy","expanded_url":"http:\/\/www.TedLieu.com","display_url":"TedLieu.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251529,"friends_count":9798,"listed_count":7170,"created_at":"Tue - Feb 17 03:12:31 +0000 2009","favourites_count":50598,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":24133,"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\/537271043937673217\/3O1qePzP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537271043937673217\/3O1qePzP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21059255\/1485531357","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235180138263916545,"quoted_status_id_str":"1235180138263916545","quoted_status":{"created_at":"Wed - Mar 04 12:27:48 +0000 2020","id":1235180138263916545,"id_str":"1235180138263916545","text":"This - is shocking https:\/\/t.co\/5uaEB4VY4X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5uaEB4VY4X","expanded_url":"https:\/\/www.thedailybeast.com\/the-us-embassy-in-tokyo-refused-to-test-exposed-staff-for-coronavirus","display_url":"thedailybeast.com\/the-us-embassy\u2026","indices":[18,41]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14298769,"id_str":"14298769","name":"Molly - Jong-Fast","screen_name":"MollyJongFast","location":"","description":"Editor - at large @thedailybeast. https:\/\/t.co\/c9JzH8VPTP","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/c9JzH8VPTP","expanded_url":"https:\/\/www.instagram.com\/mollyjongfast\/?hl=en","display_url":"instagram.com\/mollyjongfast\/\u2026","indices":[37,60]}]}},"protected":false,"followers_count":433247,"friends_count":5562,"listed_count":2702,"created_at":"Fri - Apr 04 01:41:30 +0000 2008","favourites_count":747658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":184227,"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\/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\/1221616560252559360\/d29_Rmsb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221616560252559360\/d29_Rmsb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14298769\/1560033873","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2695,"favorite_count":3884,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2939,"favorite_count":6724,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235180138263916545,"quoted_status_id_str":"1235180138263916545","retweet_count":2939,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702489145345,"id_str":"1235246702489145345","text":"RT - @ali11iverson: La Tunisie qui met \"en quarantaine\" le contamin\u00e9 du - coronavirus \ud83d\ude2d : https:\/\/t.co\/G5pXghJJ01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ali11iverson","name":"AliChwerreb(\u0639\u0644\u064a - \u0634\u0648\u0631\u0628)\ud83c\uddf9\ud83c\uddf3\ud83c\udde8\ud83c\uddf5","id":918577011718873088,"id_str":"918577011718873088","indices":[3,16]}],"urls":[],"media":[{"id":1234993245651951616,"id_str":"1234993245651951616","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","url":"https:\/\/t.co\/G5pXghJJ01","display_url":"pic.twitter.com\/G5pXghJJ01","expanded_url":"https:\/\/twitter.com\/ali11iverson\/status\/1234993248638132226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":719,"h":540,"resize":"fit"},"large":{"w":719,"h":540,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}},"source_status_id":1234993248638132226,"source_status_id_str":"1234993248638132226","source_user_id":918577011718873088,"source_user_id_str":"918577011718873088"}]},"extended_entities":{"media":[{"id":1234993245651951616,"id_str":"1234993245651951616","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","url":"https:\/\/t.co\/G5pXghJJ01","display_url":"pic.twitter.com\/G5pXghJJ01","expanded_url":"https:\/\/twitter.com\/ali11iverson\/status\/1234993248638132226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":719,"h":540,"resize":"fit"},"large":{"w":719,"h":540,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}},"source_status_id":1234993248638132226,"source_status_id_str":"1234993248638132226","source_user_id":918577011718873088,"source_user_id_str":"918577011718873088"}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874312469015035904,"id_str":"874312469015035904","name":"gb - milleliri","screen_name":"gbmilleliri1","location":"Bastia, France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":78,"listed_count":0,"created_at":"Mon - Jun 12 17:08:31 +0000 2017","favourites_count":1845,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1252,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/874315990636670976\/ulHuhos3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874315990636670976\/ulHuhos3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874312469015035904\/1527075175","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 00:05:10 +0000 2020","id":1234993248638132226,"id_str":"1234993248638132226","text":"La - Tunisie qui met \"en quarantaine\" le contamin\u00e9 du coronavirus \ud83d\ude2d - : https:\/\/t.co\/G5pXghJJ01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234993245651951616,"id_str":"1234993245651951616","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","url":"https:\/\/t.co\/G5pXghJJ01","display_url":"pic.twitter.com\/G5pXghJJ01","expanded_url":"https:\/\/twitter.com\/ali11iverson\/status\/1234993248638132226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":719,"h":540,"resize":"fit"},"large":{"w":719,"h":540,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234993245651951616,"id_str":"1234993245651951616","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","url":"https:\/\/t.co\/G5pXghJJ01","display_url":"pic.twitter.com\/G5pXghJJ01","expanded_url":"https:\/\/twitter.com\/ali11iverson\/status\/1234993248638132226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":719,"h":540,"resize":"fit"},"large":{"w":719,"h":540,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":918577011718873088,"id_str":"918577011718873088","name":"AliChwerreb(\u0639\u0644\u064a - \u0634\u0648\u0631\u0628)\ud83c\uddf9\ud83c\uddf3\ud83c\udde8\ud83c\uddf5","screen_name":"ali11iverson","location":"","description":"Be - careful what you wish for","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2065,"friends_count":2033,"listed_count":1,"created_at":"Thu - Oct 12 20:40:00 +0000 2017","favourites_count":9560,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7487,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1201443972050235392\/ar3cGFLS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1201443972050235392\/ar3cGFLS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/918577011718873088\/1576340342","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12555,"favorite_count":44868,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":12555,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702468136968,"id_str":"1235246702468136968","text":"RT - @rebeccaballhaus: \"It was a great comeback for Joe Biden,\u201d Trump says - of Super Tuesday in a meeting to discuss the coronavirus response\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rebeccaballhaus","name":"Rebecca - Ballhaus","id":705706292,"id_str":"705706292","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14480378,"id_str":"14480378","name":"Alan - Rappeport","screen_name":"arappeport","location":"Washington DC","description":"Economic - Policy reporter at The New York Times. Formerly @FT; @MarjorieDeane alum @TheEconomist - @LSEECHist. alan.rappeport@nytimes.com. RT \u2260 endorsement","url":"https:\/\/t.co\/oBbv2H6F8F","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oBbv2H6F8F","expanded_url":"https:\/\/www.nytimes.com\/by\/alan-rappeport","display_url":"nytimes.com\/by\/alan-rappep\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20552,"friends_count":2820,"listed_count":714,"created_at":"Tue - Apr 22 21:00:39 +0000 2008","favourites_count":6430,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":16159,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207074360806322176\/BvNoHJHa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207074360806322176\/BvNoHJHa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:51:50 +0000 2020","id":1235246584557981697,"id_str":"1235246584557981697","text":"\"It - was a great comeback for Joe Biden,\u201d Trump says of Super Tuesday in a - meeting to discuss the coronavirus respon\u2026 https:\/\/t.co\/iBUGjgycbE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iBUGjgycbE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246584557981697","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":705706292,"id_str":"705706292","name":"Rebecca - Ballhaus","screen_name":"rebeccaballhaus","location":"Washington, D.C.","description":"@WSJ - White House reporter","url":"https:\/\/t.co\/BzzVgFj1vG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BzzVgFj1vG","expanded_url":"https:\/\/www.wsj.com\/news\/author\/7537","display_url":"wsj.com\/news\/author\/75\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90270,"friends_count":1862,"listed_count":1991,"created_at":"Thu - Jul 19 20:12:07 +0000 2012","favourites_count":3461,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19553,"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\/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\/1011677272561025029\/pFFA3nTS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1011677272561025029\/pFFA3nTS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/705706292\/1546664300","profile_link_color":"B40B43","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702442844162,"id_str":"1235246702442844162","text":"\ud83e\udd16\n\/u\/twilightmoons - posted:\nSouth Korean Mayor Sues Coronavirus-Spreading Church for \u201cMurder\u201d\nhttps:\/\/t.co\/GS8Pu3S5B1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GS8Pu3S5B1","expanded_url":"https:\/\/www.reddit.com\/r\/atheism\/comments\/fdfu6t\/south_korean_mayor_sues_coronavirusspreading\/","display_url":"reddit.com\/r\/atheism\/comm\u2026","indices":[93,116]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/badfoodgoodfood.com\/\" rel=\"nofollow\"\u003eatheistscrape2\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":754331237062369280,"id_str":"754331237062369280","name":"robot - & bob","screen_name":"GodlessRobot","location":"Eagle, ID","description":"tweets - from robot (\ud83e\udd16) and bob (@bobsopinions ) -- but mostly robot, bob - rarely visits here, bad bob, bad bad bob","url":"https:\/\/t.co\/yG3NJ9TsbX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yG3NJ9TsbX","expanded_url":"http:\/\/godlessrobot.com","display_url":"godlessrobot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":131,"friends_count":0,"listed_count":30,"created_at":"Sat - Jul 16 15:05:56 +0000 2016","favourites_count":256,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":151635,"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\/818347598050246656\/yDFnliW4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/818347598050246656\/yDFnliW4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/754331237062369280\/1497644119","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702153482240,"id_str":"1235246702153482240","text":"RT - @EpochTimesChina: #Iran temporarily freed over 54,000 inmates from prison - in a move to prevent the #Coronavirus from spreading, as the d\u2026","truncated":false,"entities":{"hashtags":[{"text":"Iran","indices":[21,26]},{"text":"Coronavirus","indices":[102,114]}],"symbols":[],"user_mentions":[{"screen_name":"EpochTimesChina","name":"The - Epoch Times - China Insider","id":302152200,"id_str":"302152200","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":30196578,"id_str":"30196578","name":"Toon - Seri Anthraxxxx","screen_name":"anthraxxxx","location":"South East Asia ","description":"An - Independent Political Liar and a part time ahli falsampah. I also insult stupid - politicians for fun. Disclaimer: My drivel is not meant to be taken seriously","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10899,"friends_count":3488,"listed_count":246,"created_at":"Fri - Apr 10 10:47:48 +0000 2009","favourites_count":481,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":473814,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/756474844544311296\/h4lVJf2H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/756474844544311296\/h4lVJf2H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30196578\/1397212317","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:35:03 +0000 2020","id":1235242362730950656,"id_str":"1235242362730950656","text":"#Iran - temporarily freed over 54,000 inmates from prison in a move to prevent the - #Coronavirus from spreading, as th\u2026 https:\/\/t.co\/8mMJXyScJK","truncated":true,"entities":{"hashtags":[{"text":"Iran","indices":[0,5]},{"text":"Coronavirus","indices":[81,93]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8mMJXyScJK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242362730950656","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":302152200,"id_str":"302152200","name":"The - Epoch Times - China Insider","screen_name":"EpochTimesChina","location":"New - York, NY","description":"China content of The Epoch Times. Read more: https:\/\/t.co\/mPLb1kUb5i\n\nSign - up for our China newsletter: https:\/\/t.co\/OovwXvDr5L","url":"https:\/\/t.co\/mPLb1kUb5i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mPLb1kUb5i","expanded_url":"https:\/\/www.theepochtimes.com\/c-china","display_url":"theepochtimes.com\/c-china","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/mPLb1kUb5i","expanded_url":"https:\/\/www.theepochtimes.com\/c-china","display_url":"theepochtimes.com\/c-china","indices":[45,68]},{"url":"https:\/\/t.co\/OovwXvDr5L","expanded_url":"http:\/\/ept.ms\/\u2013Newsletters","display_url":"ept.ms\/\u2013Newsletters","indices":[104,127]}]}},"protected":false,"followers_count":24585,"friends_count":69,"listed_count":609,"created_at":"Fri - May 20 17:54:18 +0000 2011","favourites_count":1241,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13946,"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\/1227266620457922561\/vHLrdOt5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227266620457922561\/vHLrdOt5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/302152200\/1581441235","profile_link_color":"082743","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":83,"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702124240904,"id_str":"1235246702124240904","text":"RT - @vwang3: Hundreds of millions of students around the world are out of school - because of coronavirus \u2014 a staggering number that is reshap\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vwang3","name":"Vivian - Wang","id":121590611,"id_str":"121590611","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39863200,"id_str":"39863200","name":"s\u04d9\u028c\u04d9\u0279 - l\u0250 \u0250l\u04d9nz\u04d9u\u04d9\u028c","screen_name":"MOREMIO","location":"En - alg\u00fan lugar del mundo","description":"Venezolano, si no lo fuera pagar\u00eda - por serlo. Primero el suelo nativo que nada. Nuestra vida no es otra cosa - que la herencia de nuestro pa\u00eds Sim\u00f3n Bol\u00edvar","url":"https:\/\/t.co\/2ga8xlCAQc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2ga8xlCAQc","expanded_url":"https:\/\/twitter.com\/MOREMIO","display_url":"twitter.com\/MOREMIO","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3447,"friends_count":3693,"listed_count":42,"created_at":"Wed - May 13 23:05:09 +0000 2009","favourites_count":9923,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":168561,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/998199828231344130\/3o9bWfI1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/998199828231344130\/3o9bWfI1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39863200\/1526824399","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:55:51 +0000 2020","id":1235232496138121216,"id_str":"1235232496138121216","text":"Hundreds - of millions of students around the world are out of school because of coronavirus - \u2014 a staggering number th\u2026 https:\/\/t.co\/fOBlGbP27R","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fOBlGbP27R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235232496138121216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":121590611,"id_str":"121590611","name":"Vivian - Wang","screen_name":"vwang3","location":"","description":"china correspondent - @nytimes. can detect all free food within a five-mile radius. vivian.wang@nytimes.com","url":"https:\/\/t.co\/OWT7oU2fI6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OWT7oU2fI6","expanded_url":"https:\/\/www.nytimes.com\/by\/vivian-wang?action=click&contentCollection=N.Y.%20%2F%20Region&module=Byl","display_url":"nytimes.com\/by\/vivian-wang\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6056,"friends_count":1231,"listed_count":176,"created_at":"Wed - Mar 10 00:15:17 +0000 2010","favourites_count":16024,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8570,"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\/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\/772763219647664128\/IgjoVqHQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772763219647664128\/IgjoVqHQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121590611\/1479309667","profile_link_color":"038543","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":75,"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246702057136128,"id_str":"1235246702057136128","text":"Lol.\nWhen - I predicted Trump would blame Obama for the coronavirus I was joking.\nOr - at least I thought I was... https:\/\/t.co\/ltSgi8nH3p","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ltSgi8nH3p","expanded_url":"https:\/\/twitter.com\/johnjharwood\/status\/1235242070488616961","display_url":"twitter.com\/johnjharwood\/s\u2026","indices":[111,134]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136706317,"id_str":"136706317","name":"eli - friedmann","screen_name":"eligit","location":"Morningside Heights, Manhattan","description":"Guitar - player\/teacher + photographer in NYC. All Trump supporters, republicans, - libertarians, gun nuts, + climate change deniers cheerfully blocked on sight.","url":"https:\/\/t.co\/KBHd528wJg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KBHd528wJg","expanded_url":"https:\/\/www.flickr.com\/photos\/elifriedmann\/","display_url":"flickr.com\/photos\/elifrie\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3196,"friends_count":662,"listed_count":65,"created_at":"Sat - Apr 24 17:38:42 +0000 2010","favourites_count":85674,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":60854,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1140753217661411328\/esoZouH__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140753217661411328\/esoZouH__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136706317\/1581092650","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235242070488616961,"quoted_status_id_str":"1235242070488616961","quoted_status":{"created_at":"Wed - Mar 04 16:33:53 +0000 2020","id":1235242070488616961,"id_str":"1235242070488616961","text":"right - now, the White House is holding a coronavirus meeting in front of television - cameras\n\nVP Pence began by flatt\u2026 https:\/\/t.co\/DOT9QkSmkj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DOT9QkSmkj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242070488616961","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259395895,"id_str":"259395895","name":"John - Harwood","screen_name":"JohnJHarwood","location":"Washington, DC","description":"White - House Correspondent for @CNN","url":"https:\/\/t.co\/IaghNWqyKC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IaghNWqyKC","expanded_url":"http:\/\/www.cnn.com","display_url":"cnn.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":347649,"friends_count":1711,"listed_count":5761,"created_at":"Tue - Mar 01 20:49:40 +0000 2011","favourites_count":6148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":123424,"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\/868178337859911680\/GJ8zcy-z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/868178337859911680\/GJ8zcy-z_normal.jpg","profile_link_color":"3473A3","profile_sidebar_border_color":"CFCFCF","profile_sidebar_fill_color":"E3E3E3","profile_text_color":"5E5E5E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2144,"favorite_count":4479,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246701960663042,"id_str":"1235246701960663042","text":"RT - @jgalemparte: Hay un caso de inmunidad al #coronavirus de una adulta mayor - en Chile. Adivinen quien es.","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[45,57]}],"symbols":[],"user_mentions":[{"screen_name":"jgalemparte","name":"Gabriel - Alemparte","id":207741909,"id_str":"207741909","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":272549972,"id_str":"272549972","name":"Rodrigo - Salas S.","screen_name":"rsalassaavedra","location":"santiago. chile","description":"Lo - que diga en mi cuenta no tiene porqu\u00e9 tener relaci\u00f3n con lo que - piense mi partido o conglomerado. #Pi\u00f1eraQlao","url":"https:\/\/t.co\/J4d8tSOV36","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J4d8tSOV36","expanded_url":"http:\/\/www.facebook.com\/hijodelabolsa","display_url":"facebook.com\/hijodelabolsa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":579,"friends_count":614,"listed_count":2,"created_at":"Sat - Mar 26 18:57:47 +0000 2011","favourites_count":26602,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17923,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1140973321485524993\/ZvN9HJgC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140973321485524993\/ZvN9HJgC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272549972\/1557921614","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 01:10:29 +0000 2020","id":1235009686132445184,"id_str":"1235009686132445184","text":"Hay - un caso de inmunidad al #coronavirus de una adulta mayor en Chile. Adivinen - quien es.","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":207741909,"id_str":"207741909","name":"Gabriel - Alemparte","screen_name":"jgalemparte","location":"Santiago Chile","description":"Abogado - ejerciendo mi profesi\u00f3n, Master Ciencia Pol\u00edtica, socialdem\u00f3crata, - independiente, creo en la libertad, #YoApruebo Columnista https:\/\/t.co\/EKuz906TBc","url":"https:\/\/t.co\/Q9IECjKfE4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Q9IECjKfE4","expanded_url":"http:\/\/www.alempartevillanueva.cl","display_url":"alempartevillanueva.cl","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/EKuz906TBc","expanded_url":"http:\/\/www.entrepiso.cl","display_url":"entrepiso.cl","indices":[133,156]}]}},"protected":false,"followers_count":42359,"friends_count":30872,"listed_count":101,"created_at":"Mon - Oct 25 23:22:35 +0000 2010","favourites_count":37262,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":77206,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180794190625738752\/yfXDpqgX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180794190625738752\/yfXDpqgX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/207741909\/1582929230","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":888,"favorite_count":5046,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":888,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246701755199488,"id_str":"1235246701755199488","text":"RT - @hanalfabeto: Si para evitar contagiarse el coronavirus hay que lavarse las - manos, Massa est\u00e1 inmunizado de por vida.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanalfabeto","name":"Beto - Hanalfa","id":172976690,"id_str":"172976690","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":926806306987524099,"id_str":"926806306987524099","name":"Hernan - Superunknown","screen_name":"Hpsuperunknown","location":"","description":"Vers\u00e1til - en tema de carencias. Voy a dejar para ma\u00f1ana lo que ayer deje para hoy.\n\ud83d\udc99\ud83d\udc9b\ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":210,"friends_count":1532,"listed_count":0,"created_at":"Sat - Nov 04 13:40:17 +0000 2017","favourites_count":4484,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2777,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1118557677343444992\/rdgIwqBj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118557677343444992\/rdgIwqBj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/926806306987524099\/1548972958","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 10:49:47 +0000 2020","id":1235155473759981568,"id_str":"1235155473759981568","text":"Si - para evitar contagiarse el coronavirus hay que lavarse las manos, Massa est\u00e1 - inmunizado de por vida.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":172976690,"id_str":"172976690","name":"Beto - Hanalfa","screen_name":"hanalfabeto","location":"Buenos Aires, Argentina","description":"Gordito - cul\u00f3n \ud83d\ude1c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111021,"friends_count":9485,"listed_count":237,"created_at":"Sat - Jul 31 02:55:12 +0000 2010","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60124,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"111111","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\/1111852322513137664\/DhNHavt2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1111852322513137664\/DhNHavt2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172976690\/1566756729","profile_link_color":"1400FF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3433,"favorite_count":12351,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":3433,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246701734219778,"id_str":"1235246701734219778","text":"RT - @GOPLeader: Congress should''ve already passed a funding bill to combat coronavirus. - Period. But Democrats are hellbent on sneaking in el\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOPLeader","name":"Kevin - McCarthy","id":19739126,"id_str":"19739126","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":233949261,"id_str":"233949261","name":"Rep. - Bill Huizenga","screen_name":"RepHuizenga","location":"2nd District, MI","description":"I - serve the people of the 2nd District of Michigan. Member of Financial Services - Committee. Father of 5. Visit http:\/\/t.co\/Rj7T6mD76d for even more!","url":"http:\/\/t.co\/F9UwL81Pr9","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/F9UwL81Pr9","expanded_url":"http:\/\/huizenga.house.gov\/contact","display_url":"huizenga.house.gov\/contact","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/Rj7T6mD76d","expanded_url":"http:\/\/facebook.com\/rephuizenga","display_url":"facebook.com\/rephuizenga","indices":[111,133]}]}},"protected":false,"followers_count":21996,"friends_count":5050,"listed_count":927,"created_at":"Tue - Jan 04 14:01:28 +0000 2011","favourites_count":1585,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/443039780276682753\/UYej9mz0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/443039780276682753\/UYej9mz0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/233949261\/1551386050","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:11:17 +0000 2020","id":1235236383112998912,"id_str":"1235236383112998912","text":"Congress - should''ve already passed a funding bill to combat coronavirus. Period. But - Democrats are hellbent on sneak\u2026 https:\/\/t.co\/26hKMBMO4s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/26hKMBMO4s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235236383112998912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19739126,"id_str":"19739126","name":"Kevin - McCarthy","screen_name":"GOPLeader","location":"Bakersfield, CA","description":"Republican - Leader and Representative of California''s 23rd District in the House of Representatives.\nhttps:\/\/t.co\/ZqWsqD6L0T","url":"https:\/\/t.co\/eB1lud6Yi3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eB1lud6Yi3","expanded_url":"http:\/\/republicanleader.gov","display_url":"republicanleader.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZqWsqD6L0T","expanded_url":"https:\/\/www.instagram.com\/repkevinmccarthy\/","display_url":"instagram.com\/repkevinmccart\u2026","indices":[100,123]}]}},"protected":false,"followers_count":708093,"friends_count":1388,"listed_count":4807,"created_at":"Thu - Jan 29 22:28:48 +0000 2009","favourites_count":1829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12552,"lang":null,"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\/1144683452064833536\/fZbuxrtg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144683452064833536\/fZbuxrtg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19739126\/1582230846","profile_link_color":"0A2644","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"122C73","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12035,"favorite_count":31046,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12035,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246701482586120,"id_str":"1235246701482586120","text":"RT - @anneloehr: How to be leaderly in utter uncertainty and what behaviors to - focus on in this current coronavirus situation https:\/\/t.co\/1B\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"anneloehr","name":"anneloehr","id":16846753,"id_str":"16846753","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.dehenry.com\" rel=\"nofollow\"\u003eHello from entwistletx\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15588825,"id_str":"15588825","name":"Faun - deHenry","screen_name":"entwistletx","location":"Global","description":"Data-driven - business strategist, innovator, mom of 4 amazing human beings, & human owned - by a bird and a dog https:\/\/t.co\/ejeIanytZO","url":"https:\/\/t.co\/CNpgH6LFQp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CNpgH6LFQp","expanded_url":"http:\/\/ow.ly\/bLAw30d4srH","display_url":"ow.ly\/bLAw30d4srH","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ejeIanytZO","expanded_url":"https:\/\/buff.ly\/2XUPctO","display_url":"buff.ly\/2XUPctO","indices":[109,132]}]}},"protected":false,"followers_count":36222,"friends_count":28948,"listed_count":1803,"created_at":"Thu - Jul 24 20:51:00 +0000 2008","favourites_count":21562,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":341215,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"96510C","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\/976878554666471425\/BJHFc8tF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976878554666471425\/BJHFc8tF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15588825\/1521740600","profile_link_color":"91D2FA","profile_sidebar_border_color":"1F1008","profile_sidebar_fill_color":"1F1108","profile_text_color":"85612C","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:35:04 +0000 2020","id":1235227265383960576,"id_str":"1235227265383960576","text":"How - to be leaderly in utter uncertainty and what behaviors to focus on in this - current coronavirus situation\u2026 https:\/\/t.co\/o8mLFJbfys","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/o8mLFJbfys","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235227265383960576","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":16846753,"id_str":"16846753","name":"anneloehr","screen_name":"anneloehr","location":"Washington, - DC","description":"I help leaders prepare for the four workplace trends that - will change our organizations in the next ten years. Are you ready?","url":"https:\/\/t.co\/xX9qpB2Vns","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xX9qpB2Vns","expanded_url":"https:\/\/centerforhci.org\/","display_url":"centerforhci.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4273,"friends_count":3966,"listed_count":569,"created_at":"Sun - Oct 19 02:26:42 +0000 2008","favourites_count":789,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26099,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F5E2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371566441\/Anne_-_head_shot_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371566441\/Anne_-_head_shot_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16846753\/1449633060","profile_link_color":"4FB4C4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F5F5E2","profile_text_color":"382104","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246701461598209,"id_str":"1235246701461598209","text":"RT - @MrMichaelSpicer: brexit: I sure did a great job fuelling xenophobia and racism\n\ncoronavirus: - hold my beer\n\nbrexit: no","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrMichaelSpicer","name":"Michael - Spicer","id":93222172,"id_str":"93222172","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9800882,"id_str":"9800882","name":"sfxmaven","screen_name":"sfxmaven","location":"New - York","description":"Emily Lee: Keys, vox, noise, social media - @ShearwaterBand, - @LomaTheBand, @SnakeOilSounds, & Droneflower. Featured in @2M2LN. Freelance - music supervisor.","url":"https:\/\/t.co\/RbSmaAZuDd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RbSmaAZuDd","expanded_url":"http:\/\/emilyleemusicservices.com","display_url":"emilyleemusicservices.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":616,"friends_count":147,"listed_count":32,"created_at":"Tue - Oct 30 17:19:19 +0000 2007","favourites_count":7687,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30922,"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\/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\/610551461550931969\/IQ1TeV4C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610551461550931969\/IQ1TeV4C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9800882\/1445548110","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:35:31 +0000 2020","id":1235212279622205440,"id_str":"1235212279622205440","text":"brexit: - I sure did a great job fuelling xenophobia and racism\n\ncoronavirus: hold - my beer\n\nbrexit: no","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":240350,"friends_count":1734,"listed_count":715,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32825,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29259,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1188,"favorite_count":7817,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1188,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246701247705088,"id_str":"1235246701247705088","text":"@GiorgiaMeloni - Solo un intervento delle forze armate pu\u00f2 ristabilire ordine legalit\u00e0 - e sicurezza della salute degli\u2026 https:\/\/t.co\/8KEi5bQ2Rd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GiorgiaMeloni","name":"Giorgia - Meloni \ud83c\uddee\ud83c\uddf9 \u0646","id":130537001,"id_str":"130537001","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/8KEi5bQ2Rd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246701247705088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235236049082888193,"in_reply_to_status_id_str":"1235236049082888193","in_reply_to_user_id":130537001,"in_reply_to_user_id_str":"130537001","in_reply_to_screen_name":"GiorgiaMeloni","user":{"id":957017372740681728,"id_str":"957017372740681728","name":"Orion\u2019s - belt","screen_name":"orionisbelt","location":"Italy","description":"Milton - Friedman. Margaret Thatcher, Ronald Reagan, Donald Trump, Antonio Martino","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":57,"listed_count":1,"created_at":"Fri - Jan 26 22:28:16 +0000 2018","favourites_count":5434,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3475,"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\/1126761620682579968\/jGdhegoL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126761620682579968\/jGdhegoL_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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:18 +0000 2020","id":1235246701234937858,"id_str":"1235246701234937858","text":"RT - @iskandrah: This sounds an awful lot like a country woefully unprepared for - #COVID19 #coronavirus","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[79,87]},{"text":"coronavirus","indices":[88,100]}],"symbols":[],"user_mentions":[{"screen_name":"iskandrah","name":"\ud835\uddd4\ud835\uddf9\ud835\uddf2\ud835\ude05\ud835\uddee\ud835\uddfb\ud835\uddf1\ud835\uddff\ud835\uddee - \ud835\udddb\ud835\uddee\ud835\uddf9\ud835\uddee\ud835\uddef\ud835\ude06","id":160304538,"id_str":"160304538","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2329509259,"id_str":"2329509259","name":"Raging - Radical Woman-Julian Assange","screen_name":"fightBackAnon","location":"Washington, - USA","description":"I\u2019ve lost patience. #NoMiddleGround Spelman College - Grad. The 1% are ruling the country and destroying the planet while they''re - at it. We need to stop them.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2561,"friends_count":2573,"listed_count":99,"created_at":"Wed - Feb 05 23:32:36 +0000 2014","favourites_count":103527,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":113739,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199536442856235008\/gd7eIdwd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199536442856235008\/gd7eIdwd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2329509259\/1561171344","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:48:27 +0000 2020","id":1235245735517523968,"id_str":"1235245735517523968","text":"This - sounds an awful lot like a country woefully unprepared for #COVID19 #coronavirus - https:\/\/t.co\/oKYvdgAgow","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[64,72]},{"text":"coronavirus","indices":[73,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oKYvdgAgow","expanded_url":"https:\/\/twitter.com\/matthewstoller\/status\/1235239113298759680","display_url":"twitter.com\/matthewstoller\u2026","indices":[86,109]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160304538,"id_str":"160304538","name":"\ud835\uddd4\ud835\uddf9\ud835\uddf2\ud835\ude05\ud835\uddee\ud835\uddfb\ud835\uddf1\ud835\uddff\ud835\uddee - \ud835\udddb\ud835\uddee\ud835\uddf9\ud835\uddee\ud835\uddef\ud835\ude06","screen_name":"iskandrah","location":"United - States","description":"Trans* #Bernie2020 Organizer. Inclusion & Diversity - Trainer. She\/Her. Comms for Nathaniel Mulcahy. Palestinian\ud83c\uddf5\ud83c\uddf8 - @ADC. Text me 24\/7: (978) 785-6875.","url":"https:\/\/t.co\/98mgezUVqG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/98mgezUVqG","expanded_url":"https:\/\/www.Mulcahy2020.com","display_url":"Mulcahy2020.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17255,"friends_count":7558,"listed_count":299,"created_at":"Sun - Jun 27 20:18:34 +0000 2010","favourites_count":165229,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":73494,"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\/1235408972993224705\/Uv2KPY7L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235408972993224705\/Uv2KPY7L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160304538\/1582874165","profile_link_color":"981CEB","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":"regular"},"geo":null,"coordinates":null,"place":{"id":"f54a2170ff4b15f7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/f54a2170ff4b15f7.json","place_type":"admin","name":"Illinois","full_name":"Illinois, - USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-91.51308,36.970298],[-87.019935,36.970298],[-87.019935,42.508303],[-91.51308,42.508303]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1235239113298759680,"quoted_status_id_str":"1235239113298759680","quoted_status":{"created_at":"Wed - Mar 04 16:22:08 +0000 2020","id":1235239113298759680,"id_str":"1235239113298759680","text":"Just - spoke with ER doc who say he''s seeing cases he''s 99% sure are #coronavirus. - Negative for flu, recent travel, w\u2026 https:\/\/t.co\/CZW3Q11r3Z","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[67,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CZW3Q11r3Z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235239113298759680","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2030711,"id_str":"2030711","name":"Matt - Stoller","screen_name":"matthewstoller","location":"Washington, DC","description":"Author, - \"Goliath: The Hundred Year War Between Monopoly Power and Democracy,\" Research - Director at American Economic Liberties Project (@econliberties)","url":"https:\/\/t.co\/F15IvFj79S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/F15IvFj79S","expanded_url":"http:\/\/mattstoller.com","display_url":"mattstoller.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":84026,"friends_count":2501,"listed_count":2009,"created_at":"Fri - Mar 23 17:05:29 +0000 2007","favourites_count":3642,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":82985,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180516130340970498\/xkpgVSP__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180516130340970498\/xkpgVSP__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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5982,"favorite_count":14143,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235239113298759680,"quoted_status_id_str":"1235239113298759680","retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246701109301252,"id_str":"1235246701109301252","text":"RT - @McguireScotty: Israel: \ud83c\uddee\ud83c\uddf1 \n\nCORONAVIRUS PRESS CONFERENCE: - PM Netanyahu says he will be the first to refrain from shaking hands and asks\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"McguireScotty","name":"Scotty - McGuire","id":862716927696916481,"id_str":"862716927696916481","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1055534204925165569,"id_str":"1055534204925165569","name":"#1 - Elite Hershel Walker top cat\ud83d\udc31\ud83c\uddfa\ud83c\uddf8 MAGA","screen_name":"HershelWalker3","location":"","description":"TRUMP - 2020- TRUMP 2020- TRUMP 2020- TRUMP 2020- TRUMP 2020- TRUMP 2020- TRUMP 2020- - TRUMP 2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3803,"friends_count":4996,"listed_count":1,"created_at":"Thu - Oct 25 18:59:00 +0000 2018","favourites_count":62770,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41233,"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\/1234918725876408320\/i8nzv2zj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234918725876408320\/i8nzv2zj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1055534204925165569\/1581259492","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:04:02 +0000 2020","id":1235234558699876352,"id_str":"1235234558699876352","text":"Israel: - \ud83c\uddee\ud83c\uddf1 \n\nCORONAVIRUS PRESS CONFERENCE: PM Netanyahu says - he will be the first to refrain from shaking hands and\u2026 https:\/\/t.co\/OqVIKyZASg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OqVIKyZASg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235234558699876352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":862716927696916481,"id_str":"862716927696916481","name":"Scotty - McGuire","screen_name":"McguireScotty","location":"America ","description":"#MAGA\ud83c\uddfa\ud83c\uddf8#TrumpTrain - \nArtist, I read the news & pass it along. History of Television Production. - Student of Biblical Prophecy. Anti-Communist \ud83c\uddfa\ud83c\uddf8 Independent","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43031,"friends_count":41362,"listed_count":67,"created_at":"Thu - May 11 17:11:58 +0000 2017","favourites_count":112000,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":224416,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/937216544345608192\/kIzTkHEh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/937216544345608192\/kIzTkHEh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/862716927696916481\/1512287229","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":172,"favorite_count":134,"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246701092499457,"id_str":"1235246701092499457","text":"RT - @marechalboulon: l''eau b\u00e9nite qui te prot\u00e8ge m\u00eame pas du coronavirus - c''est bien la preuve que la religion \u00e7a marche pas https:\/\/t.co\/ALy\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marechalboulon","name":"John - Marshall Bolt \ud83d\udd29","id":154089313,"id_str":"154089313","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4726524089,"id_str":"4726524089","name":"camarade_sans_paupiere","screen_name":"Salut_c_Ducon","location":"","description":"Bonjour - ! vous voulez que je vous pr\u00e9sente Vibro, ma soeur ? \n\nr\u00e9volution, - gr\u00e8ve g\u00e9n\u00e9rale \ud83c\udff3\ufe0f\u200d\ud83c\udf08\u262d\ud83c\udff4\n \u2764\ufe0f\ud83e\udde1\ud83d\udc9b\ud83d\udc9a\ud83d\udc99\ud83d\udc9c\ud83d\udda4\u2763\ufe0f\ud83d\udc95\ud83d\udc9e\ud83d\udc93\ud83d\udc97\ud83d\udc96\ud83d\udc9d\ud83d\udc9f\u262e\ufe0f\u2665\ufe0f\ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":337,"friends_count":305,"listed_count":43,"created_at":"Wed - Jan 06 17:09:51 +0000 2016","favourites_count":55413,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":352314,"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\/698110684270305280\/3FS4w366_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/698110684270305280\/3FS4w366_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4726524089\/1455266018","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 13:00:25 +0000 2020","id":1233738795343863809,"id_str":"1233738795343863809","text":"l''eau - b\u00e9nite qui te prot\u00e8ge m\u00eame pas du coronavirus c''est bien la - preuve que la religion \u00e7a marche pas https:\/\/t.co\/ALyWlAkE6u","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ALyWlAkE6u","expanded_url":"https:\/\/twitter.com\/franceinfo\/status\/1233737329141067776","display_url":"twitter.com\/franceinfo\/sta\u2026","indices":[103,126]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154089313,"id_str":"154089313","name":"John - Marshall Bolt \ud83d\udd29","screen_name":"marechalboulon","location":"","description":"J''aime - la r\u00e9ussite et les SUV\nJe n''aime pas la jalousie","url":"https:\/\/t.co\/MsW7rSUqhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MsW7rSUqhN","expanded_url":"http:\/\/tasreussitavieconnard.com","display_url":"tasreussitavieconnard.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4777,"friends_count":994,"listed_count":78,"created_at":"Thu - Jun 10 10:06:53 +0000 2010","favourites_count":8393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59583,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/2191103979\/avatar3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2191103979\/avatar3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154089313\/1490215139","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233737329141067776,"quoted_status_id_str":"1233737329141067776","quoted_status":{"created_at":"Sat - Feb 29 12:54:35 +0000 2020","id":1233737329141067776,"id_str":"1233737329141067776","text":"Coronavirus - : l''archev\u00eaque de Paris ordonne de \"vider les b\u00e9nitiers\" pour - \u00e9viter la propagation\u2026 https:\/\/t.co\/aMKbRArkHC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aMKbRArkHC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233737329141067776","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[97,120]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":38395124,"id_str":"38395124","name":"franceinfo","screen_name":"franceinfo","location":"Paris, - France","description":"L''actualit\u00e9 en direct et en continu avec le m\u00e9dia - global du service public.","url":"https:\/\/t.co\/AzKd7bYBis","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AzKd7bYBis","expanded_url":"http:\/\/franceinfo.fr","display_url":"franceinfo.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1505454,"friends_count":1287,"listed_count":10229,"created_at":"Thu - May 07 08:17:50 +0000 2009","favourites_count":17769,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":243511,"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\/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\/1019886363515211776\/D2TBSqHw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019886363515211776\/D2TBSqHw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38395124\/1568032086","profile_link_color":"41505F","profile_sidebar_border_color":"FFEE00","profile_sidebar_fill_color":"FFEE00","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":85,"favorite_count":128,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"retweet_count":197,"favorite_count":702,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1233737329141067776,"quoted_status_id_str":"1233737329141067776","retweet_count":197,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246701037776896,"id_str":"1235246701037776896","text":"RT - @DavidNakamura: Trump on coronavirus: \"I haven''t touched my face in weeks - -- and I miss it.\"","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DavidNakamura","name":"David - Nakamura","id":23621827,"id_str":"23621827","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587937354,"id_str":"587937354","name":"Judith - Adams","screen_name":"jbfletcher28","location":"Henderson, NV","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":240,"friends_count":310,"listed_count":0,"created_at":"Wed - May 23 00:06:30 +0000 2012","favourites_count":61022,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39798,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033523203115638784\/ni_D1faV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033523203115638784\/ni_D1faV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:47:05 +0000 2020","id":1235245388891906048,"id_str":"1235245388891906048","text":"Trump - on coronavirus: \"I haven''t touched my face in weeks -- and I miss it.\"","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23621827,"id_str":"23621827","name":"David - Nakamura","screen_name":"DavidNakamura","location":"Washington, D.C.","description":"Washington - Post reporter.","url":"https:\/\/t.co\/uw8Ny88C5e","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uw8Ny88C5e","expanded_url":"http:\/\/www.washingtonpost.com\/david-nakamura\/2011\/03\/02\/AByo4sM_page.html","display_url":"washingtonpost.com\/david-nakamura\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":69960,"friends_count":1217,"listed_count":1737,"created_at":"Tue - Mar 10 17:42:56 +0000 2009","favourites_count":6784,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":21185,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C3C6E8","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\/809942331851935745\/BczzXmKo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809942331851935745\/BczzXmKo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23621827\/1572725260","profile_link_color":"3B94D9","profile_sidebar_border_color":"0039C9","profile_sidebar_fill_color":"000000","profile_text_color":"ADB0E3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":190,"favorite_count":549,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":190,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246701004324867,"id_str":"1235246701004324867","text":"#Coronavirus - L''aggiornamento sui contagiati in Emilia Romagna: sono 544 i casi totali - registrati\u2026 https:\/\/t.co\/cMddsNEkxT","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cMddsNEkxT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246701004324867","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[98,121]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151389560,"id_str":"151389560","name":"Corriere - di Bologna","screen_name":"corrierebologna","location":"Bologna","description":"","url":"https:\/\/t.co\/0Ith3bfqYX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0Ith3bfqYX","expanded_url":"http:\/\/www.corrieredibologna.it","display_url":"corrieredibologna.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17418,"friends_count":154,"listed_count":300,"created_at":"Thu - Jun 03 08:52:42 +0000 2010","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35475,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/855066735891927044\/dMr6xpwE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/855066735891927044\/dMr6xpwE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151389560\/1502096441","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"it"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700710764547,"id_str":"1235246700710764547","text":"KubeCon - being postponed to mid-summer \ud83e\udd7a https:\/\/t.co\/g2nGKDeKcC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/g2nGKDeKcC","expanded_url":"https:\/\/events.linuxfoundation.org\/kubecon-cloudnativecon-europe\/attend\/novel-coronavirus-update\/","display_url":"events.linuxfoundation.org\/kubecon-cloudn\u2026","indices":[40,63]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":109534929,"id_str":"109534929","name":"Borja - Reinares","screen_name":"borjareinares","location":"Madrid, Spain","description":"I - tell computers what to do. Don''t take this seriously. Breaking platforms - at @BBVA. @NSSpain. @CruzRojaRioja.","url":"https:\/\/t.co\/BOBSwiOAJY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BOBSwiOAJY","expanded_url":"https:\/\/borjareinares.com","display_url":"borjareinares.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2739,"friends_count":1032,"listed_count":182,"created_at":"Fri - Jan 29 11:22:41 +0000 2010","favourites_count":48155,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35044,"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\/607930537848602625\/qfaocmyA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607930537848602625\/qfaocmyA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/109534929\/1390461854","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":"regular"},"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700702445569,"id_str":"1235246700702445569","text":"RT - @EricTrump: Since this will never get reported by the media, I wanted to share - a copy of this check. @realDonaldTrump is once again dona\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EricTrump","name":"Eric - Trump","id":39349894,"id_str":"39349894","indices":[3,13]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[104,120]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":217672901,"id_str":"217672901","name":"Cynthia Howard","screen_name":"cindyteatime","location":"Claremont, - NH","description":"Founder-#citizensforlowertaxes #TeaParty #FreedomCast\nCounty - Chair #Trump #MAGA #KAG\nRon Paul for President \nProud daughter Patton''s - Third Army, 4th Armored","url":"http:\/\/t.co\/vrZXTO48Ck","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/vrZXTO48Ck","expanded_url":"http:\/\/ccltgroup.webs.com","display_url":"ccltgroup.webs.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":370,"friends_count":372,"listed_count":26,"created_at":"Sat - Nov 20 05:12:59 +0000 2010","favourites_count":6997,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13979,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ED0E0E","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\/758116383414779905\/SZocyEY2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/758116383414779905\/SZocyEY2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217672901\/1469583458","profile_link_color":"E81C4F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 22:11:32 +0000 2020","id":1234964653014384644,"id_str":"1234964653014384644","text":"Since - this will never get reported by the media, I wanted to share a copy of this - check. @realDonaldTrump is once a\u2026 https:\/\/t.co\/FFRZFUKnpX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[89,105]}],"urls":[{"url":"https:\/\/t.co\/FFRZFUKnpX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234964653014384644","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39349894,"id_str":"39349894","name":"Eric - Trump","screen_name":"EricTrump","location":"","description":"Executive Vice - President of The @Trump Organization. Husband to @LaraLeaTrump. Large advocate - of @StJude Children''s Research Hospital. #MakeAmericaGreatAgain","url":"https:\/\/t.co\/uwwNiWPLLr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uwwNiWPLLr","expanded_url":"http:\/\/www.Trump.com","display_url":"Trump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3189081,"friends_count":905,"listed_count":6875,"created_at":"Mon - May 11 21:42:30 +0000 2009","favourites_count":11241,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6114,"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\/1231205981876604928\/KB8fUiwH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231205981876604928\/KB8fUiwH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39349894\/1516709628","profile_link_color":"116AB8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"616161","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"},"geo":null,"coordinates":null,"place":{"id":"01a9a39529b27f36","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01a9a39529b27f36.json","place_type":"city","name":"Manhattan","full_name":"Manhattan, - NY","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-74.026675,40.683935],[-73.910408,40.683935],[-73.910408,40.877483],[-74.026675,40.877483]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":21212,"favorite_count":62698,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21212,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700660314113,"id_str":"1235246700660314113","text":"RT - @kylegriffin1: Democratic Rep. Ruben Gallego has announced that he''ll introduce - a bill that would make Medicaid cover testing for and tr\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kylegriffin1","name":"Kyle - Griffin","id":32871086,"id_str":"32871086","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":806943914854850560,"id_str":"806943914854850560","name":"Laura - Gavre","screen_name":"laurargy","location":"Petaluma, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":474,"listed_count":1,"created_at":"Thu - Dec 08 19:29:56 +0000 2016","favourites_count":57738,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:00:00 +0000 2020","id":1235173142433337344,"id_str":"1235173142433337344","text":"Democratic - Rep. Ruben Gallego has announced that he''ll introduce a bill that would make - Medicaid cover testing for\u2026 https:\/\/t.co\/XgWcrewmLW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XgWcrewmLW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235173142433337344","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":32871086,"id_str":"32871086","name":"Kyle - Griffin","screen_name":"kylegriffin1","location":"Manhattan, NY","description":"Senior - Producer. MSNBC''s @TheLastWord. Opinions mine. Not as outlandish as I could - be.","url":"https:\/\/t.co\/lgyZmnczMB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lgyZmnczMB","expanded_url":"https:\/\/www.instagram.com\/griffinkyle\/","display_url":"instagram.com\/griffinkyle\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":688392,"friends_count":876,"listed_count":7720,"created_at":"Sat - Apr 18 12:45:48 +0000 2009","favourites_count":38129,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":57375,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961462238732275712\/omWV1cZs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961462238732275712\/omWV1cZs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32871086\/1455243585","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":790,"favorite_count":2357,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":790,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700605747200,"id_str":"1235246700605747200","text":"RT - @JuddLegum: 9 deaths out of 128 cases implies a mortality rate of 7%, which - far higher than the WHO estimates from coronavirus. \n\nSo the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JuddLegum","name":"Judd - Legum","id":15464697,"id_str":"15464697","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223335661,"id_str":"3223335661","name":"Tai - Fung","screen_name":"TaiFung_Seattle","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":64,"listed_count":1,"created_at":"Fri - May 22 13:12:41 +0000 2015","favourites_count":6384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":96897,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:41:07 +0000 2020","id":1235243889621164039,"id_str":"1235243889621164039","text":"9 - deaths out of 128 cases implies a mortality rate of 7%, which far higher than - the WHO estimates from coronavirus.\u2026 https:\/\/t.co\/eBdQIv8Atr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eBdQIv8Atr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243889621164039","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1235242903812870145,"in_reply_to_status_id_str":"1235242903812870145","in_reply_to_user_id":15464697,"in_reply_to_user_id_str":"15464697","in_reply_to_screen_name":"JuddLegum","user":{"id":15464697,"id_str":"15464697","name":"Judd - Legum","screen_name":"JuddLegum","location":"Washington, DC","description":"I - write Popular Information, a newsletter about politics and power. \n\nSend - tips: DMs open | judd@popular.info | jlegum@protonmail.com","url":"https:\/\/t.co\/7lEYXJGXf5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7lEYXJGXf5","expanded_url":"http:\/\/Popular.info","display_url":"Popular.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":404917,"friends_count":1305,"listed_count":6205,"created_at":"Thu - Jul 17 05:37:26 +0000 2008","favourites_count":4347,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":56740,"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\/636336373453053952\/yv-YqI5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636336373453053952\/yv-YqI5w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15464697\/1533728641","profile_link_color":"202037","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":141,"favorite_count":415,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":141,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700547182594,"id_str":"1235246700547182594","text":"RT - @Adnkronos: #Coronavirus, \"in #Italia circolava diverse settimane prima di - ''caso 1''\"\nhttps:\/\/t.co\/Kg0EnhDMHc https:\/\/t.co\/O7iteMnj27","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[15,27]},{"text":"Italia","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"Adnkronos","name":"Adnkronos","id":25676606,"id_str":"25676606","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/Kg0EnhDMHc","expanded_url":"https:\/\/tinyurl.com\/wzslcc3","display_url":"tinyurl.com\/wzslcc3","indices":[88,111]}],"media":[{"id":1235213962393923585,"id_str":"1235213962393923585","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRcjeoXsAED7yY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRcjeoXsAED7yY.jpg","url":"https:\/\/t.co\/O7iteMnj27","display_url":"pic.twitter.com\/O7iteMnj27","expanded_url":"https:\/\/twitter.com\/Adnkronos\/status\/1235213970853834752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":804,"resize":"fit"},"large":{"w":1600,"h":1072,"resize":"fit"},"small":{"w":680,"h":456,"resize":"fit"}},"source_status_id":1235213970853834752,"source_status_id_str":"1235213970853834752","source_user_id":25676606,"source_user_id_str":"25676606"}]},"extended_entities":{"media":[{"id":1235213962393923585,"id_str":"1235213962393923585","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRcjeoXsAED7yY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRcjeoXsAED7yY.jpg","url":"https:\/\/t.co\/O7iteMnj27","display_url":"pic.twitter.com\/O7iteMnj27","expanded_url":"https:\/\/twitter.com\/Adnkronos\/status\/1235213970853834752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":804,"resize":"fit"},"large":{"w":1600,"h":1072,"resize":"fit"},"small":{"w":680,"h":456,"resize":"fit"}},"source_status_id":1235213970853834752,"source_status_id_str":"1235213970853834752","source_user_id":25676606,"source_user_id_str":"25676606"}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425060148,"id_str":"425060148","name":"inezie - essenziali","screen_name":"ineziessenziali","location":"Roma ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4370,"friends_count":1264,"listed_count":112,"created_at":"Wed - Nov 30 14:16:52 +0000 2011","favourites_count":59710,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":102865,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/719415750847545344\/Lj7UY0bq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/719415750847545344\/Lj7UY0bq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425060148\/1440744927","profile_link_color":"FF3300","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:42:14 +0000 2020","id":1235213970853834752,"id_str":"1235213970853834752","text":"#Coronavirus, - \"in #Italia circolava diverse settimane prima di ''caso 1''\"\nhttps:\/\/t.co\/Kg0EnhDMHc - https:\/\/t.co\/O7iteMnj27","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]},{"text":"Italia","indices":[18,25]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Kg0EnhDMHc","expanded_url":"https:\/\/tinyurl.com\/wzslcc3","display_url":"tinyurl.com\/wzslcc3","indices":[73,96]}],"media":[{"id":1235213962393923585,"id_str":"1235213962393923585","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRcjeoXsAED7yY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRcjeoXsAED7yY.jpg","url":"https:\/\/t.co\/O7iteMnj27","display_url":"pic.twitter.com\/O7iteMnj27","expanded_url":"https:\/\/twitter.com\/Adnkronos\/status\/1235213970853834752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":804,"resize":"fit"},"large":{"w":1600,"h":1072,"resize":"fit"},"small":{"w":680,"h":456,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235213962393923585,"id_str":"1235213962393923585","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRcjeoXsAED7yY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRcjeoXsAED7yY.jpg","url":"https:\/\/t.co\/O7iteMnj27","display_url":"pic.twitter.com\/O7iteMnj27","expanded_url":"https:\/\/twitter.com\/Adnkronos\/status\/1235213970853834752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":804,"resize":"fit"},"large":{"w":1600,"h":1072,"resize":"fit"},"small":{"w":680,"h":456,"resize":"fit"}}}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25676606,"id_str":"25676606","name":"Adnkronos","screen_name":"Adnkronos","location":"Italia","description":"Vuoi - leggere altre notizie? Vieni sul nostro sito https:\/\/t.co\/WNy21ZatVs","url":"http:\/\/t.co\/9TbKCdPvge","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9TbKCdPvge","expanded_url":"http:\/\/www.adnkronos.com","display_url":"adnkronos.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/WNy21ZatVs","expanded_url":"http:\/\/www.adnkronos.com","display_url":"adnkronos.com","indices":[50,73]}]}},"protected":false,"followers_count":454571,"friends_count":136,"listed_count":3761,"created_at":"Sat - Mar 21 14:08:56 +0000 2009","favourites_count":469,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":256893,"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\/478852512561119232\/zBIHmE1__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478852512561119232\/zBIHmE1__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25676606\/1400139477","profile_link_color":"3B94D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700521873408,"id_str":"1235246700521873408","text":"RT - @RethinkSchools: Speaking Up Against Racism Around the New Coronavirus https:\/\/t.co\/ygVmcBRPpU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RethinkSchools","name":"Rethinking - Schools","id":161580500,"id_str":"161580500","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/ygVmcBRPpU","expanded_url":"https:\/\/www.tolerance.org\/magazine\/speaking-up-against-racism-around-the-new-coronavirus","display_url":"tolerance.org\/magazine\/speak\u2026","indices":[74,97]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913911827846725632,"id_str":"913911827846725632","name":"Memorylamp","screen_name":"memorylamp_yb","location":"Seattle, - WA","description":"teacher, writer, reader, queermama, learner, co-conspirator, - organizer, agitator","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":1217,"listed_count":2,"created_at":"Fri - Sep 29 23:42:14 +0000 2017","favourites_count":22057,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5624,"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\/1022329837107572736\/ASW3-UcJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022329837107572736\/ASW3-UcJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913911827846725632\/1506749731","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:50:37 +0000 2020","id":1235246281515290626,"id_str":"1235246281515290626","text":"Speaking - Up Against Racism Around the New Coronavirus https:\/\/t.co\/ygVmcBRPpU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ygVmcBRPpU","expanded_url":"https:\/\/www.tolerance.org\/magazine\/speaking-up-against-racism-around-the-new-coronavirus","display_url":"tolerance.org\/magazine\/speak\u2026","indices":[54,77]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":161580500,"id_str":"161580500","name":"Rethinking - Schools","screen_name":"RethinkSchools","location":"Milwaukee, WI","description":"Nonprofit - magazine & book publisher dedicated to sustaining & strengthening public education - through social justice teaching and education activism.","url":"https:\/\/t.co\/mKBAmKnRW9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mKBAmKnRW9","expanded_url":"http:\/\/www.rethinkingschools.org","display_url":"rethinkingschools.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":31689,"friends_count":1564,"listed_count":592,"created_at":"Thu - Jul 01 05:56:38 +0000 2010","favourites_count":4279,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9225,"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\/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\/1021495809458593792\/QaYHjBZn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1021495809458593792\/QaYHjBZn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161580500\/1571321963","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"},"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700308180993,"id_str":"1235246700308180993","text":"RT - @NSB91445288: Cuanto falta para que los kirchneristas salgan a decir que el - coronavirus es una enfermedad de ricos?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NSB91445288","name":"LaSus - #MM","id":1043654215116177411,"id_str":"1043654215116177411","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177808321,"id_str":"177808321","name":"Maximiliano - Guerra","screen_name":"maximilianoguer","location":"Argentina","description":"Bailarin, - Coreografo. Director del Ballet del Mercosur, fue tambi\u00e9n del Ballet - Estable del Teatro Colon","url":"https:\/\/t.co\/Bezwikp1Rn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Bezwikp1Rn","expanded_url":"http:\/\/www.maxiguerra.com","display_url":"maxiguerra.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":55134,"friends_count":522,"listed_count":135,"created_at":"Fri - Aug 13 03:17:43 +0000 2010","favourites_count":9381,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26497,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167627572181704704\/sjdLmIKN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167627572181704704\/sjdLmIKN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177808321\/1567219082","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 21:36:44 +0000 2020","id":1234955894397571078,"id_str":"1234955894397571078","text":"Cuanto - falta para que los kirchneristas salgan a decir que el coronavirus es una - enfermedad de ricos?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1043654215116177411,"id_str":"1043654215116177411","name":"LaSus - #MM","screen_name":"NSB91445288","location":"Chetoslovaquia","description":"Sue\u00f1o - con una Argentina sin peronismo. AGUANTE MACRI\ud83c\udf31","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5223,"friends_count":4049,"listed_count":3,"created_at":"Sun - Sep 23 00:12:09 +0000 2018","favourites_count":33979,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9637,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1187439196987895808\/ROSDsORV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1187439196987895808\/ROSDsORV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1043654215116177411\/1556732962","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":177,"favorite_count":711,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":177,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700198944769,"id_str":"1235246700198944769","text":"@KotakBankLtd - During this tough time of coronavirus, when everyone is advised to avoid travelling - to affected areas\u2026 https:\/\/t.co\/DcmJOhpNsp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KotakBankLtd","name":"Kotak - Mahindra Bank","id":350862570,"id_str":"350862570","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/DcmJOhpNsp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246700198944769","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":350862570,"in_reply_to_user_id_str":"350862570","in_reply_to_screen_name":"KotakBankLtd","user":{"id":138647498,"id_str":"138647498","name":"Vikas - Hulsure","screen_name":"vhulsure","location":"Hyderabad","description":"28 - Yrs Hyderabadi. Google Ads certified working for @regalix Vicky likes to Live! - Love! Laugh! \nSabka Saath Sabka VIKAS.","url":"https:\/\/t.co\/CDhAZHMFzC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CDhAZHMFzC","expanded_url":"https:\/\/www.instagram.com\/vhulsure","display_url":"instagram.com\/vhulsure","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":59,"listed_count":1,"created_at":"Fri - Apr 30 04:29:31 +0000 2010","favourites_count":175,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":921,"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\/1220853578790629376\/JSp9QXHz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220853578790629376\/JSp9QXHz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138647498\/1559387553","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246700010209280,"id_str":"1235246700010209280","text":"RT - @matthewstoller: Just spoke with ER doc who say he''s seeing cases he''s 99% - sure are #coronavirus. Negative for flu, recent travel, work\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[87,99]}],"symbols":[],"user_mentions":[{"screen_name":"matthewstoller","name":"Matt - Stoller","id":2030711,"id_str":"2030711","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110763904,"id_str":"110763904","name":"John - Gaffney","screen_name":"jfpgaffney","location":"SF Bay Area","description":"\"Some - people like to go out dancing.\nAnd other people, (like us) they gotta work.\"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":415,"friends_count":1289,"listed_count":31,"created_at":"Tue - Feb 02 17:58:45 +0000 2010","favourites_count":54821,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9509,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428328874359803904\/TX9qtE8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428328874359803904\/TX9qtE8C_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:22:08 +0000 2020","id":1235239113298759680,"id_str":"1235239113298759680","text":"Just - spoke with ER doc who say he''s seeing cases he''s 99% sure are #coronavirus. - Negative for flu, recent travel, w\u2026 https:\/\/t.co\/CZW3Q11r3Z","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[67,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CZW3Q11r3Z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235239113298759680","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2030711,"id_str":"2030711","name":"Matt - Stoller","screen_name":"matthewstoller","location":"Washington, DC","description":"Author, - \"Goliath: The Hundred Year War Between Monopoly Power and Democracy,\" Research - Director at American Economic Liberties Project (@econliberties)","url":"https:\/\/t.co\/F15IvFj79S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/F15IvFj79S","expanded_url":"http:\/\/mattstoller.com","display_url":"mattstoller.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":84026,"friends_count":2501,"listed_count":2009,"created_at":"Fri - Mar 23 17:05:29 +0000 2007","favourites_count":3642,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":82985,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180516130340970498\/xkpgVSP__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180516130340970498\/xkpgVSP__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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5982,"favorite_count":14143,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5982,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699913805824,"id_str":"1235246699913805824","text":"RT - @cnni: Iran announced Tuesday that it will temporarily release more than 54,000 - prisoners in an attempt to prevent the spread of coronav\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cnni","name":"CNN - International","id":2097571,"id_str":"2097571","indices":[3,8]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1233532932494692352,"id_str":"1233532932494692352","name":"\u0642\u0627\u0626\u062f\u0629 - \u0627\u0644\u062a\u0646\u0645\u064a\u0629 \u0627\u0644\u0645\u0633\u062a\u062f\u0627\u0645\u0629 - \u0628\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0628\u0637 \u0648\u0636\u0648\u0627\u062d\u064a\u0647\u0627","screen_name":"nahanihoz_","location":"","description":"\u200f\u200f\u200f\u200f\u0632\u064a\u0646\u0629 - \u0627\u0644\u062d\u0627\u0631\u0629 \u0627\u0645 \u062d\u0644\u0642 \u0637\u0627\u0631\u0629 - .. \u0648\u0622\u0647 \u064a\u0627\u0646\u0648 \u0645\u0646\u0647\u0627 \u0648\u064a\u0627\u062e\u062a\u064a - \u0639\u0644\u064a\u0647\u0627 . The dairies of Om Raya & Sekena","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":281,"listed_count":0,"created_at":"Fri - Feb 28 23:22:45 +0000 2020","favourites_count":21,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1241,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234178707973079041\/w3UmxNAK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234178707973079041\/w3UmxNAK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1233532932494692352\/1583017382","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:35:59 +0000 2020","id":1235242597712572417,"id_str":"1235242597712572417","text":"Iran - announced Tuesday that it will temporarily release more than 54,000 prisoners - in an attempt to prevent the spr\u2026 https:\/\/t.co\/vBhFu8PpCX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vBhFu8PpCX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242597712572417","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2097571,"id_str":"2097571","name":"CNN - International","screen_name":"cnni","location":"Everywhere","description":"Breaking - news from around the world, plus business, style, travel, sport and entertainment. - We #gothere.","url":"http:\/\/t.co\/kdkv08KSgi","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/kdkv08KSgi","expanded_url":"http:\/\/cnn.com\/international","display_url":"cnn.com\/international","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":9757645,"friends_count":370,"listed_count":40581,"created_at":"Sat - Mar 24 10:48:14 +0000 2007","favourites_count":135,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":220775,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3D4544","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/926050400062631936\/Rvynw19f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/926050400062631936\/Rvynw19f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2097571\/1497863018","profile_link_color":"004287","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EEEEEE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107,"favorite_count":189,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":107,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699813244936,"id_str":"1235246699813244936","text":"Trump - Administration Weighs Paying Medical Providers for Treating Uninsured Coronavirus - Patients https:\/\/t.co\/7Zq97Rs2BZ via @BreitbartNews","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BreitbartNews","name":"Breitbart - News","id":457984599,"id_str":"457984599","indices":[125,139]}],"urls":[{"url":"https:\/\/t.co\/7Zq97Rs2BZ","expanded_url":"http:\/\/bit.ly\/2vsLg6N","display_url":"bit.ly\/2vsLg6N","indices":[97,120]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":119991364,"id_str":"119991364","name":"The - Storm is Here #Trump2020","screen_name":"Hoya97","location":"Marietta, GA","description":"Christian, - conservative #TheGreatAwakening #WWG1WGA #MAGA #KAG #DrainTheSwamp NO LISTS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11104,"friends_count":12194,"listed_count":2,"created_at":"Fri - Mar 05 04:39:09 +0000 2010","favourites_count":176106,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":230696,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981985020649799680\/ruX8TVbB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981985020649799680\/ruX8TVbB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119991364\/1522960182","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699708157954,"id_str":"1235246699708157954","text":"RT - @SCMPHongKong: Coronavirus: pet dog belonging to Covid-19 patient infected, - Hong Kong health authorities confirm https:\/\/t.co\/x3lhpEwNAb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SCMPHongKong","name":"SCMP - Hong Kong","id":1161804899971026944,"id_str":"1161804899971026944","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/x3lhpEwNAb","expanded_url":"https:\/\/www.scmp.com\/news\/hong-kong\/health-environment\/article\/3065016\/coronavirus-pet-dog-belonging-covid-19-patient?utm_term=Autofeed&utm_medium=Social&utm_source=Twitter#Echobox=1583332170","display_url":"scmp.com\/news\/hong-kong\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":968533435265503233,"id_str":"968533435265503233","name":"CTLau","screen_name":"CTLau3","location":"","description":"Self - proclaimed international nomad, born and educated deeply entrenched in freedom, - human rights and universal suffrage, BUT now ......","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":57,"listed_count":0,"created_at":"Tue - Feb 27 17:09:00 +0000 2018","favourites_count":8372,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7369,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181053281386123264\/J5pgpVq-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181053281386123264\/J5pgpVq-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/968533435265503233\/1569951185","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:29:30 +0000 2020","id":1235210766988517376,"id_str":"1235210766988517376","text":"Coronavirus: - pet dog belonging to Covid-19 patient infected, Hong Kong health authorities - confirm https:\/\/t.co\/x3lhpEwNAb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/x3lhpEwNAb","expanded_url":"https:\/\/www.scmp.com\/news\/hong-kong\/health-environment\/article\/3065016\/coronavirus-pet-dog-belonging-covid-19-patient?utm_term=Autofeed&utm_medium=Social&utm_source=Twitter#Echobox=1583332170","display_url":"scmp.com\/news\/hong-kong\u2026","indices":[98,121]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":1161804899971026944,"id_str":"1161804899971026944","name":"SCMP - Hong Kong","screen_name":"SCMPHongKong","location":"Hong Kong","description":"News - and analysis about Hong Kong from the South China Morning Post.","url":"https:\/\/t.co\/2rqE2semx2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2rqE2semx2","expanded_url":"https:\/\/www.scmp.com\/hk","display_url":"scmp.com\/hk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8722,"friends_count":9,"listed_count":112,"created_at":"Thu - Aug 15 01:00:48 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":3987,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161870749335818240\/u6dAyghC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161870749335818240\/u6dAyghC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161804899971026944\/1565840458","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699704131585,"id_str":"1235246699704131585","text":"RT - @C33_14O: El coronavirus vino en avi\u00f3n, se puede decir que es una enfermedad - pasajera. https:\/\/t.co\/pxQJAu2sMB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"C33_14O","name":"C3\u03c0O - \ud83d\udc9a","id":1455719492,"id_str":"1455719492","indices":[3,11]}],"urls":[],"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}},"source_status_id":1234981828529774592,"source_status_id_str":"1234981828529774592","source_user_id":1455719492,"source_user_id_str":"1455719492"}]},"extended_entities":{"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}},"source_status_id":1234981828529774592,"source_status_id_str":"1234981828529774592","source_user_id":1455719492,"source_user_id_str":"1455719492"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152031951,"id_str":"152031951","name":"Mar\u00eda - Victoria \u2734","screen_name":"Viko97","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":836,"friends_count":645,"listed_count":0,"created_at":"Fri - Jun 04 22:21:40 +0000 2010","favourites_count":4544,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4935,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204866755706990595\/1QrVeTFs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204866755706990595\/1QrVeTFs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152031951\/1559498015","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:19:47 +0000 2020","id":1234981828529774592,"id_str":"1234981828529774592","text":"El - coronavirus vino en avi\u00f3n, se puede decir que es una enfermedad pasajera. - https:\/\/t.co\/pxQJAu2sMB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1455719492,"id_str":"1455719492","name":"C3\u03c0O - \ud83d\udc9a","screen_name":"C33_14O","location":"","description":"Un tripio - cualquiera.","url":"https:\/\/t.co\/lZYBEh23Av","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lZYBEh23Av","expanded_url":"http:\/\/es.favstar.fm\/users\/C33_14O","display_url":"es.favstar.fm\/users\/C33_14O","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10221,"friends_count":496,"listed_count":155,"created_at":"Sat - May 25 01:36:10 +0000 2013","favourites_count":30108,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33088,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/835843286568927236\/6AQ5W5lo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/835843286568927236\/6AQ5W5lo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1455719492\/1390756129","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3926,"favorite_count":31850,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":3926,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699553189889,"id_str":"1235246699553189889","text":"Health - departments across the state are preparing and responding in case any cases - of the Coronavirus are confirmed\u2026 https:\/\/t.co\/AZyYfIRsaD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AZyYfIRsaD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246699553189889","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21139887,"id_str":"21139887","name":"Mid-Michigan - NOW","screen_name":"midmichigannow","location":"Mid-Michigan","description":"Mid-Michigan - NOW keeps you connected to the latest news, weather, and sports for #Flint, - #Saginaw, #BayCity & #Midland.","url":"https:\/\/t.co\/JRB2LtwoZv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JRB2LtwoZv","expanded_url":"https:\/\/midmichiganNOW.com","display_url":"midmichiganNOW.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17328,"friends_count":2560,"listed_count":360,"created_at":"Tue - Feb 17 22:37:03 +0000 2009","favourites_count":8066,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":77086,"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\/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\/1193677834667118593\/LbMbjai-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193677834667118593\/LbMbjai-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21139887\/1579652592","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699532169216,"id_str":"1235246699532169216","text":"RT - @elmundoes: #\u00daLTIMAHORA del coronavirus \u2b55 El gobierno italiano cierra - los colegios y las universidades hasta mediados de marzo. https:\/\/\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u00daLTIMAHORA","indices":[15,26]}],"symbols":[],"user_mentions":[{"screen_name":"elmundoes","name":"EL - MUNDO","id":14436030,"id_str":"14436030","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":421369740,"id_str":"421369740","name":"\u03c1il\u03b1r - \u221e","screen_name":"PilarAfluflu","location":"","description":"Descubramos - todos los rincones del mundo \ud83c\udf0dSo\u00f1adora, Alegre y Optimista - \ud83d\udc69\ud83c\udffb Never give up, great things take time. \u23f3\u231b\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":179,"friends_count":328,"listed_count":3,"created_at":"Fri - Nov 25 21:21:46 +0000 2011","favourites_count":1427,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14703,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A9D9D1","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\/1032683110046093312\/0F1NELhf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032683110046093312\/0F1NELhf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/421369740\/1470411716","profile_link_color":"1AD47A","profile_sidebar_border_color":"000000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:18:43 +0000 2020","id":1235192951678132224,"id_str":"1235192951678132224","text":"#\u00daLTIMAHORA - del coronavirus \u2b55 El gobierno italiano cierra los colegios y las universidades - hasta mediados de marzo. https:\/\/t.co\/HdhdhNQylY","truncated":false,"entities":{"hashtags":[{"text":"\u00daLTIMAHORA","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HdhdhNQylY","expanded_url":"http:\/\/bit.ly\/39oUnE3","display_url":"bit.ly\/39oUnE3","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":14436030,"id_str":"14436030","name":"EL - MUNDO","screen_name":"elmundoes","location":"Espa\u00f1a","description":"Cuenta - oficial de EL MUNDO.","url":"https:\/\/t.co\/8EG72BAiov","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8EG72BAiov","expanded_url":"http:\/\/www.elmundo.es","display_url":"elmundo.es","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3503103,"friends_count":1368,"listed_count":30594,"created_at":"Fri - Apr 18 18:29:25 +0000 2008","favourites_count":2750,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":276732,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/959947259780747265\/ez18J78k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/959947259780747265\/ez18J78k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14436030\/1581703765","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":207,"favorite_count":198,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":207,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"}],"search_metadata":{"completed_in":0.11,"max_id":1235246706817630207,"max_id_str":"1235246706817630207","next_results":"?max_id=1235246699532169215&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1235246706817630207&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:40 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Leawood,%20KS&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:40 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:40 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/893312821647163393/MjP4sWvp_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:41 GMT - Last-Modified: - - Fri, 04 Aug 2017 03:27:08 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/893312821647163393 - X-Cache: - - MISS - X-Connection-Hash: - - ad1aca8ed4e7bdcc4e5651e5e0486194 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:41 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Leawood,%20KS&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:41 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Santiago%20del%20Estero,%20Argentina&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:41 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1131726460736167936/O5z2yLD4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146242' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:41 GMT - Last-Modified: - - Fri, 24 May 2019 00:57:49 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1131726460736167936 - X-Cache: - - HIT - X-Connection-Hash: - - '01178e5c081ff8c71fa97460d3b4bdff' - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '125' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:41 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Santiago%20del%20Estero,%20Argentina&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:41 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/442383735531782144/9sNEpgBK_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146516' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:43 GMT - Last-Modified: - - Sat, 08 Mar 2014 19:35:56 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/442383735531782144 - X-Cache: - - MISS - X-Connection-Hash: - - 52f75cda91a4555b949a627ce5bbcf3c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '1807' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:43 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1157730535814389760/HDon1o81_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '339778' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:44 GMT - Last-Modified: - - Sat, 03 Aug 2019 19:08:43 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1157730535814389760 - X-Cache: - - MISS - X-Connection-Hash: - - c04cf2083a45abc38802981f96b747b3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '275' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:44 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Virginia,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:44 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:44 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1230882480669982720/iFq9hWyQ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '157023' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:44 GMT - Last-Modified: - - Fri, 21 Feb 2020 15:48:26 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1230882480669982720 - X-Cache: - - MISS - X-Connection-Hash: - - 680c8dabb8280a136e81a8865469d830 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH5AACABUADwAyABthY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAEBAAMBAQEAAAAAAAAAAAAABgQFBwIDCP/EABkBAAMBAQEAAAAAAAAAAAAAAAACAwQBBf/aAAwDAQACEAMQAAAB4wAo/lffU7N6vuUtKnIdXXyGnOE3AOsVXMaSV7zndxJzpFy9HObcITcAqLfBrcu3N47TwurPmzlFO0gE2AO8XP546FCkRosr4enl8afbamLhFwDdedO7zZetWdcvEEYOd//EACUQAAIDAAIBAwQDAAAAAAAAAAMEAQIFBiARABMUEBIhIjA0Nf/aAAgBAQABBQL6ZuSR4QMpkxB8V0bw/hupEsiaouvHzQHh6QS0rls+4PlpxHHa3hDrgVqTjd8UViZgbWrpldoJn+t1w3pGFl9ib4zkQrq6EFVJ+E+uSr7ghLwxcwir5rLNS2JaIV68XSOxmkzpWtyAh/sF5j0W0fE68B/xXbgotuOVZNHosz7PXHOwEZiZ4lCzJJiv6m82H1zHvhEO7JifK9Wb81k3mn8v/8QAHREAAgEFAQEAAAAAAAAAAAAAAQIAAxAREjEhBP/aAAgBAwEBPwGUxu0qKAPIpzeiBqZUBwYnL0lAAxPpduReXV49QucmJy59GJosAxb/xAAgEQABBAICAwEAAAAAAAAAAAABAAIDERAxEiEEEzJR/9oACAECAQE/AU7ptqJxc+ipG8TmQOsUovvSl3mWTteIyxyKk3l8Hd/qjjDG0FNvIJBsL2vTnF28f//EADAQAAIBAgQEBAMJAAAAAAAAAAECAwARBBIhMRMgQXEiMlFhEJGhFDBCcnOSscHR/9oACAEBAAY/AvhxFxWGi8WW0rEf1Tqhj8Jte+lXEmH/AHH/AClSYx+LYg708nhITfmxJOt5WVR72FCOB4rqNj1rLKuSRdxUKxP40Y3qXK17pt8uZEbrjL/IUMTHM0R3NjWJkzcRtkPrUkEsKqW8xv0qTS2l9OZMLpbi3v3FCEl8vTL1oxyzRx/muDQ2abVPY0/bXm4t+tq4eazjY1K+NnDpbRfWsiaKKkC63XmLx2txSN+1JIWzdqzvKxQeUX2NWtuKkGg7cz/rH+BTNO6pH1JrJErCNTpfr8G5m+zTPG2pOXrQxr4h8dP+AStex7U7tqxrWj6W5s/BEnsTTSGNQW9K8n1q3D+tFcu/v99//8QAJRAAAgICAgEEAgMAAAAAAAAAAREAITFBIFFxYYGRoRDBMLHR/9oACAEBAAE/Ifxr6whJrGG5clZmTEdVFM/MlYDZoj6SqJNTi1yBuygyQRA5gldnGwNWTZZQBqlKuAo+5uW8p+CZ14ikAACB3oJbcbU/1NG4Ng1yRQDLzI/U6+zDTuEqxaQN+alw2g5Bs/TgqAl0B+OTMjABghtCVrNBN3AyXcwWhf8AU+IEyYSomJnqxyzs4aaivON4XAcKmMSI5bLjEBEEOQxDRLgLKEPiyMKPrWpUDohWIpex8cjoLBl6VUL+Yxr64UPu6yTs5/cUZyAWHGvTk6uSkBD21sVECAjcuHaw9x1MZ/mf/9oADAMBAAIAAwAAABDzgFXzwTNbzxGlTzyf5Tzw+/8A8//EAB4RAQABBAIDAAAAAAAAAAAAAAEAEBEgITFBUWHR/9oACAEDAQE/EIyCaIrRHG6vR8zamxgMi2wzf8wrBrqI8IFhcT1QOFP/xAAgEQEAAgEEAgMAAAAAAAAAAAABABExECBBUSFhcYHR/9oACAECAQE/EIzvPcKY4FJrVnxLgydithcQbq9mzY30Dz+fcBFiGj8a86sT3RC1p//EACQQAQEAAgIBBAIDAQAAAAAAAAERACExQVEgYXGRgaEQMNHx/9oACAEBAAE/EP4k9LPyFUJGnd9uMdOKokRo2NYKNJYVwiopH1yDOzu+TCE7f9Mdg7T79Qx3nDrhfFVegcQcIUdjdOXBTy8ane9mRt3hAslUnT9Y+y6S0rJ96E9RwiCHkX/Fn3iQaCoNbU5PwiZqFGmaIqaehcZWEQQONJTSCKI5oUrJsio30FNefVuCRrZAcya9HPeVzQtI5GOV7nGGr+DIHmCrvmYDbRYHiI8dB7mMgmQVqoX69Tkm5dhB+0+MioMHcHJ+7jQ9K1kjqWWac+ZkR0sQ/EeDnLsQITkN93x6iUYWsEZf3jJ3VWTwvO8BnBeuA44WLvxjhXkg99mJ7rnNpb7T9+qCU1f2yoWOYHx5fAbz4iThDwJ+d4gFWAaNnH23BGdwh3Rt/XqK9RVI0KooXq5UqLUbykAW2nWJlV55Kn7wTRYF0N/79ZoMRbCDE/31GqWAmSzbpvGVE0lM8AGaUtF809vBMCylUb83xlJQgeDd4nHOv7v/2SAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:44 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Virginia,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:44 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:44 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Michigan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:44 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:44 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1164331171674824704/HcMjgNgV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146242' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:45 GMT - Last-Modified: - - Thu, 22 Aug 2019 00:17:18 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1164331171674824704 - X-Cache: - - MISS - X-Connection-Hash: - - e9067340af2f4304609adbccbade17b3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:45 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Michigan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:45 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:45 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=CARACAS&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:45 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:45 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/442825471495897088/M7R_hMHG_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '145791' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:46 GMT - Last-Modified: - - Mon, 10 Mar 2014 00:51:14 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/442825471495897088 - X-Cache: - - MISS - X-Connection-Hash: - - c3a3b60129a1d2beb1c67f3895d4c42b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '1731' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:46 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=CARACAS&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:46 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:46 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/767746915056451585/c0sJuQZ4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '155999' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:46 GMT - Last-Modified: - - Mon, 22 Aug 2016 15:33:03 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/767746915056451585 - X-Cache: - - MISS - X-Connection-Hash: - - 02f92afe98440d6cfd7344a299e22fb3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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ihZ2pMYfSKk2MsDAM0WCEtQemmzFMzcA8rzGaHlApsMznDsktmhqCIDrWFKCsnY4rtaZbdN4i2/SIyxREwmHbrltRCacV2mwXXTvpQ1Q6EAEksK85pA41NECRie3YKfoWvUPKOlie6CowHb6gwKwmRvENgp9N91DzRaWGbbn0csgUZEpSgQUMUnQlpd1lyhlXAXum421CkNJs2I4EvsKmDJTm5zf75oRBRQljAdg+1TUjLsR/FT4o2vAQcxBTl8+l++Nkzf4OSdpUsMa+YErf280F1pAMYRoCk7o4Kzq0h+ClXmc+5dvAtPE0zsIIgsP2H3qaRLwz4oGWRbRRzEyUuLFMEF8wMYaZmgwiQlN5/EcQLPMR5GlJOF9iNFSCSiKITKvQUOAkEyYT/R1QQGKsgRJ0sexor+i/VXhsg+R3xlouneQyRC/yfdQtkUlubwAJLgxN3hrIkYliJRt/RQI9YE8qz+qKowsw0MXdihY5pUu5DWAXyuidpQXKg5eMrKgsVJZ/RvB2PVf9YomqiCSBll5WwCsGKzdHQToOLyq8xVphYpBgiOZPxx6qYJEEtJj7islwMjJOZD2pSyILF5g6LlJ6XRbYXw/A9JMBU5lgQRnhdxExakYsibpMkEuC7NDCCvUm8uwSmYp+YWAzxMy6mfSF4VCbgvsBph1WuAEFwXxFqLbUV2wOJT6aBgZJOBB/cNd34UTcdLNxmzyj4804IADC2zkJce/FLalmdafqilBShMWRdpTpOyg9hDEhwbPY1KgZqzAPBPZHdH6pLuQTPwtCd8WQnY+A+6W1E25dsfj79bAP7XOv43L6AP4HCv5fGsdL7TX8Hfo/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:46 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/548894629022953472/IOJuKGs3_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:47 GMT - Last-Modified: - - Sat, 27 Dec 2014 17:32:12 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/548894629022953472 - X-Cache: - - MISS - X-Connection-Hash: - - c6bf7fcb68af6bcf80f8ccf855452579 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '120' - Content-Length: - - '1579' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:47 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:47 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1195277250217807872/dlxoXVnM_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '335595' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:47 GMT - Last-Modified: - - Fri, 15 Nov 2019 09:45:58 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1195277250217807872 - X-Cache: - - HIT - X-Connection-Hash: - - 159ebe9d90572ef5565fb2a14ac7ae42 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:47 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Satan%27s.%20Asshole%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:48 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:48 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232494949741944833/2qiL_4An_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '172716' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:48 GMT - Last-Modified: - - Wed, 26 Feb 2020 02:35:49 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1232494949741944833 - X-Cache: - - MISS - X-Connection-Hash: - - a2c785649d85f0d5f95286f72127eeaa - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:48 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Satan%27s.%20Asshole%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:48 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:48 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1070736581391237120/EMnqnDPk_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146248' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:48 GMT - Last-Modified: - - Thu, 06 Dec 2018 17:45:48 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1070736581391237120 - X-Cache: - - MISS - X-Connection-Hash: - - 884b1b21236684affd74cc247768c906 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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fIHpw7FioVV31XDEL3Xh8d9wpfydXL+A/MbYMXVLXWP+NQsSqIbaXMe4MSzmwNAlMlAh4He6/M2Gyyu21WPSQKIaR9EVuGbRr+z5hjWhTCZy1/HbvKYIgqcNHzavYhehOSUQ5A2rGnAlk6ImULtPHQrMKXq8OGbMtMEUZvlGwYqHGDtLeZToK66IQoDeB09rfliV1DLLkOt4o0x8WIVTK2wza8LzNmAYRVZEHIIIU+6jav8AMTEvdir3Np5EOtQFVsWile5hPBM1K30NFBeg9I6znb+nhL0TtkwTR4xA+pqQ7j4ZcR+ZNsA3eDqniAeLalI1uHvaulImk4P3WIWRS3Xg5HF9v4qKQPTXoQBRQcs27Wr31FVtwIXLVQZb8AOu4L8DrCNFxWa2ymY4J4E+Ki2rn1/f8J+p3n10ftz7359P9ly/4//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:48 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235046296320241664.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b8c262afd5b16ab5d2dadac6aa19f393", - oauth_signature="8%2F5QLBVhojORAqOlBa%2FyTBHDlTw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486988", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2609' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:49 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:49 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348698942236061; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:49 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_R+Gbchs2ptE8yu79yFS8/w=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:49 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6c0de5e849a6fe2020c17c90143004ab - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '893' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '147' - X-Transaction: - - '0046459200dbaf07' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 03:35:57 +0000 2020","id":1235046296320241664,"id_str":"1235046296320241664","text":"watch - the guy with the beard to the right of Trump at the moment the gif stops to - recycle\n\nSNIFFF","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":1234142086204493824,"in_reply_to_status_id_str":"1234142086204493824","in_reply_to_user_id":2258357868,"in_reply_to_user_id_str":"2258357868","in_reply_to_screen_name":"AWorldOutOfMind","user":{"id":2258357868,"id_str":"2258357868","name":"Saint - Brian The Godless","screen_name":"AWorldOutOfMind","location":"At One with - the Collective ","description":"\"Never underestimate your inability to not - think incorrectly\" -Zen Master Imho\n\n#Resist #Progressive #Democrat #Liberal - #Atheist #Science #Cosmology #Occult","url":"https:\/\/t.co\/9jWNYHzjQP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9jWNYHzjQP","expanded_url":"http:\/\/salviaspace.blogspot.com\/","display_url":"salviaspace.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20844,"friends_count":17850,"listed_count":298,"created_at":"Mon - Dec 23 02:24:45 +0000 2013","favourites_count":303860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":449289,"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\/414949487119831040\/6aQcyWSS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414949487119831040\/6aQcyWSS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2258357868\/1514178106","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:49 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=At%20One%20with%20the%20Collective%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:49 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:49 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/414949487119831040/6aQcyWSS_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '24214' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:49 GMT - Last-Modified: - - Mon, 23 Dec 2013 02:42:01 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/414949487119831040 - X-Cache: - - MISS - X-Connection-Hash: - - 5316d3734d3c7926d9ea9f1d60f25e30 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2052' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:49 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=At%20One%20with%20the%20Collective%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:49 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:50 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234142086204493824.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="966c2dc4f5d63c1c37f7b15013868e97", - oauth_signature="tzDhQSk7b33S%2BR4%2Fm98m1G%2B4Zt0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486990", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2851' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:50 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:50 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348699069331820; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:50 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_EA8JsIVPbWQZ9Bpk6gB9pg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:50 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e74e99acae0c1246cbd7f3f0b60d6c41 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '892' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '136' - X-Transaction: - - 00ff71ca00476ca1 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Sun Mar 01 15:42:57 +0000 2020","id":1234142086204493824,"id_str":"1234142086204493824","text":"Someone - needs to tell Trump that a great way to catch coronavirus is to stand in front - a crowd of ten thousand scre\u2026 https:\/\/t.co\/6WPAWqY0tq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6WPAWqY0tq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234142086204493824","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":2258357868,"id_str":"2258357868","name":"Saint - Brian The Godless","screen_name":"AWorldOutOfMind","location":"At One with - the Collective ","description":"\"Never underestimate your inability to not - think incorrectly\" -Zen Master Imho\n\n#Resist #Progressive #Democrat #Liberal - #Atheist #Science #Cosmology #Occult","url":"https:\/\/t.co\/9jWNYHzjQP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9jWNYHzjQP","expanded_url":"http:\/\/salviaspace.blogspot.com\/","display_url":"salviaspace.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20844,"friends_count":17850,"listed_count":298,"created_at":"Mon - Dec 23 02:24:45 +0000 2013","favourites_count":303860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":449289,"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\/414949487119831040\/6aQcyWSS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414949487119831040\/6aQcyWSS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2258357868\/1514178106","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":331,"favorite_count":815,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:50 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=At%20One%20with%20the%20Collective%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:50 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:51 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234350162136436736/tztrmzec_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:51 GMT - Last-Modified: - - Mon, 02 Mar 2020 05:27:46 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1234350162136436736 - X-Cache: - - MISS - X-Connection-Hash: - - 212739f13ae476b3b8bb75c7912d64c1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '122' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:51 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234999382090514432.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8a8ae6082c5920d1b0d3a18d3f6e1605", - oauth_signature="ZaDgOGZuD38ZRzAred%2FWATNWllw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486991", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2372' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:52 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:52 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348699216429773; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:52 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_sULpcmneqfWtz48v1+OlBg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:52 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - a4eac107fe30f3ec2922d385ab1abb00 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '891' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '136' - X-Transaction: - - 0021c95f00da288e - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 00:29:32 +0000 2020","id":1234999382090514432,"id_str":"1234999382090514432","text":"Escriban: - si no me mata el coronavirus me mata... Y dejen que el teclado termine la - oraci\u00f3n.","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,"user":{"id":1276746475,"id_str":"1276746475","name":"Rolinga","screen_name":"_onerolita","location":"","description":"no - llego a los 27","url":"https:\/\/t.co\/JqbBfCLwBv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JqbBfCLwBv","expanded_url":"http:\/\/www.instagram.com\/_onerolita","display_url":"instagram.com\/_onerolita","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":48946,"friends_count":1230,"listed_count":37,"created_at":"Mon - Mar 18 04:10:38 +0000 2013","favourites_count":1948,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11984,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1235300812890484737\/eUvzF7t5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235300812890484737\/eUvzF7t5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1276746475\/1575309646","profile_link_color":"0F0000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":104,"favorite_count":2296,"favorited":false,"retweeted":false,"lang":"es"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:52 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1235300812890484737/eUvzF7t5_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '130601' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:52 GMT - Last-Modified: - - Wed, 04 Mar 2020 20:25:19 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1235300812890484737 - X-Cache: - - MISS - X-Connection-Hash: - - ed0abbbf3b8c39a1c1c1ae52e54966ff - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '175' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:52 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hong%20Kong&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:53 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232862321036296192/rAQpHm3T_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '108017' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:53 GMT - Last-Modified: - - Thu, 27 Feb 2020 02:55:37 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1232862321036296192 - X-Cache: - - MISS - X-Connection-Hash: - - 0e05e17b0a5c2acbbc3902be162e4039 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hong%20Kong&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Austin,%20TX&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:53 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232320228601757697/zpJTsbFG_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '263348' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:53 GMT - Last-Modified: - - Tue, 25 Feb 2020 15:01:32 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1232320228601757697 - X-Cache: - - MISS - X-Connection-Hash: - - 2ce9c7d531ec1b1374e3d25a6a564de1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Austin,%20TX&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=6 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London,%20United%20Kingdom&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:54 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/877448884787838976/VzLMhDg3_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '466890' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:54 GMT - Last-Modified: - - Wed, 21 Jun 2017 08:49:31 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/877448884787838976 - X-Cache: - - MISS - X-Connection-Hash: - - caf63435f4659a5079337a9f6a8b790a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London,%20United%20Kingdom&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Baltimore,%20MD&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:54 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1057308014418440193/wvnaAohX_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '468550' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:54 GMT - Last-Modified: - - Tue, 30 Oct 2018 16:25:29 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1057308014418440193 - X-Cache: - - MISS - X-Connection-Hash: - - 6969de2dd3b639234f9c21e48c86deed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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hrxOwwAVtSVBBCQAygxQPtDB+DUz42l2M9TAKzABVNqJ0uoCS0VcB0pwD1g7RaIG0yHphklmW7gCJqeoQZ6xdxVNc5usI9EK/Auy+2X4lB0ngjhhKo35WnzHEmQHpO6uIzGiDcIHgzFxP8yGkKDidr6lxljXcaAwCwU4jhnVrjBT5uLSUtUKa+47ItnvzUrFoeL0YgtIN9Si72vwYFVkJCBPE7T5gznAavxDg4gFZUFgiXFco1/CAmioGxHxCd8WhUqrea7gPO17MpK8FoR0jxEvOktCGsGHENyh/qmZkaiFaTnQPduXXXY2lc3yNhlXmWvpwfpiPeuuOzk9vmGZuOtcnPVULYMuS/0HEbVFVaPueGdDOBy9xc5O1csVq8Ry1QAtaxDq4Tfth1XRpkMh4GrlDoqdJaYA5FrrpJlKdKJaNnqEvMItCOoz/W8PxPo/OO/5/j//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Baltimore,%20MD&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Eagle,%20ID&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:55 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/818347598050246656/yDFnliW4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '251298' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:55 GMT - Last-Modified: - - Mon, 09 Jan 2017 06:42:06 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/818347598050246656 - X-Cache: - - MISS - X-Connection-Hash: - - e8d20794e63380273d98f423e0502056 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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t1rsTe8SM6vAE+xzjJtZt8kBzMKC8cTGj5z75d9ArtUL4PTJqSR0Mn94EfVPAWtiHcITQaBtHaSQq/KucQZGB8e77GB+Io6eR2+6ZKAeHasdAEO3fOKmubKyS93gyoSpwovzB3m6tUw0QvdCHrockoXFEX3Ne2EpZvoMhCuIuwt2+a8dYBVktOL85T+mfP8AgfthC7KrYNyWKNPhTF0xTlDXZN3AF236HA5LhsOmThg/sG5nuWxn7MOtRhckdGGiGQ+F/eJP1h6f9B9JIKDqG9hhFJjgMAfAGIhA+B/eNlszQIhvNeNTBDizSzs5w1aNgm4xfx9RtGgwD2DWNXLkNH84Sl/Tf+GPbV5ifhTL2uuhpV24P5v/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Eagle,%20ID&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Morningside%20Heights,%20Manhattan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:55 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1140753217661411328/esoZouH__bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '102253' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:56 GMT - Last-Modified: - - Mon, 17 Jun 2019 22:46:55 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1140753217661411328 - X-Cache: - - MISS - X-Connection-Hash: - - 4ea370bd65326484e5c05e1e00ba89f7 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:56 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Morningside%20Heights,%20Manhattan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:56 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:56 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italy&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:56 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:56 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1126761620682579968/jGdhegoL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '383665' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:58 GMT - Last-Modified: - - Fri, 10 May 2019 08:09:19 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1126761620682579968 - X-Cache: - - MISS - X-Connection-Hash: - - 963dc06007af36f507dae936a3bb6e36 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wAFAAoACAALABNhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAABAwACBAUGB//EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/2gAMAwEAAhADEAAAAfj8hSTq8uqmEEJgQlaTZnik0osqbQhLRR0E0J6eLj0uvNoFK9txtzg6Omuxzfcda34nTrcTENjm09bxE5xtFCzZo5+gmF+ccli7GrtRTAS91Wj/xAAmEAABAwQABQUBAAAAAAAAAAACAAEDBBESEwUQFCAhIjAxMkEz/9oACAEBAAEFAvceSm6H37KyJhdYvlUR65exmWKxWTEJfeU3ml1sS0SXcHZ7IGUNMUi6Q0MVEwy6WWdlHPi8UE9VT1kul5DbIDsXCq0JYdfF0AyGjF2TMslwyoMaKukIpsvOSGR2W6RBO4wGV3b+d1AbsEj3Lkzra6kL0K/pQ/D82XlH8L8X52//xAAYEQADAQEAAAAAAAAAAAAAAAAAETAQIf/aAAgBAwEBPwGfBCFjj//EABoRAAIDAQEAAAAAAAAAAAAAAAABESAhAhD/2gAIAQIBAT8BqnWTRdMk0RBHqr//xAAsEAABAwIEAwcFAAAAAAAAAAABAAIRITEDBBASIjBBEyAjMkBRgTRSYXGR/9oACAEBAAY/AuYGDCPb7qunp6K3EgCiyvzyOIuLxQVpCaYhHExDLqfKtVRCg6WVArLcc27d+MNeGXuO65bFNNzQdwsm5p2ba0O+1ic0Yznn3iF5Dd0y41osMb3QQ3rZDLNzb8PHLzD3VEL63K/0LgajPQxqWAiN/VGTKvpQrzFGPZoR/aOhHeA9J//EACYQAQACAgEDAwQDAAAAAAAAAAEAESExEEFRYSBxgTCRscHR8PH/2gAIAQEAAT8h4r6JGjAtpPZUfTUqIjTv0VKlSuQhDB8SjqTA6QDylSpUCWwi/aY7eKGBHIjt18y7Egvw7zT3GMxJZU3GwUjTB9o90qJ1VhbcE8+ZIwyW5ju6OED7ejG69sogciaq/aYGeUIsRHhdjbFOvEVUH4yd/uYgklO709pgW6ig0CeZ/ef1H23BahCw835eLWssoTb4uN0UajNrGiKvk5fxBFUuo1aDP9GAuH4N/wAxnLa2Yq7rXAnaWZ+XnrL1KszyH24IuZtOHUq2Dx4Suzi68yHcODXzx//aAAwDAQACAAMAAAAQfopba29/fnC3ImsBwiebZh04K//EABoRAQADAQEBAAAAAAAAAAAAAAEAEBEgITH/2gAIAQMBAT8Qg8JnGwM+0TTMaL5bDj//xAAaEQADAAMBAAAAAAAAAAAAAAAAAREQICFh/9oACAECAQE/ELrQTuip8PAxjWfCmxhImTCDzT//xAAlEAEAAgIBAwQDAQEAAAAAAAABABEhMUEQUWFxgZGhsdHxwfD/2gAIAQEAAT8QgS9XUqV0qVKldNozCCdRjBu+ZToECB1FZUGkgd4XK6CCCSL9pxty1t4slWqQMPdqAUFyhWReug6GaNoZi9p53zBNEmCUwGLE4IWC0p7Dfu/USpRqtFL5IGorDlLFM8Q8uvQ86inVg7JLdW+JX5DWJT3RusN5+q7z+VBQKb8lmwbLKpPXioTmzjgY2WziCQqzTuvaWCDXIBstYcwE/FcQ5UALEr2l16q9GlVrEVbmGgYaQ1a7OFvSrKJdqPS7ceGxd1HtJiSyg1wb9ek+/GFQQG6b9n4hh1YXeS7r4lN2K/JAiVwkF3KwbmAOsj8wBSqwAHoFTc87XY0+4bwwfaZvBdjmf3UYAuRDYbP2l8I27rzDqtANeYqMA7fYKzHVN4qXrXK871Lu2ioyOB35n85+ojcCq53GbMfVKlzYd7C5cuPaBNVE3Wds/wCtT8kfyjv6zmf7zZ0czV6On//ZICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:58 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italy&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:58 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:58 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235236049082888193.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="a8943644c28a59e0b7eb5a33f1369839", - oauth_signature="rjlJceaOVQtsvN4GBHQ1kC4U1MY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583486998", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2778' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:29:59 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:29:59 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348699897953442; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:29:59 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_ytVJPJpxRJXKuC/lU5GKQA=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:29:59 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 0ac4b2c0203cfcee074f0aac6d63748a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '890' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '130' - X-Transaction: - - 0024b57b004add48 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:09:58 +0000 2020","id":1235236049082888193,"id_str":"1235236049082888193","text":"Sull''emergenza - #coronavirus il Governo sta facendo impazzire gli italiani con la sua comunicazione - schizofrenica ch\u2026 https:\/\/t.co\/DgEB0Nq8WG","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[15,27]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DgEB0Nq8WG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235236049082888193","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,"user":{"id":130537001,"id_str":"130537001","name":"Giorgia - Meloni \ud83c\uddee\ud83c\uddf9 \u0646","screen_name":"GiorgiaMeloni","location":"Italia","description":"Romana, - classe ''77. Politica e giornalista. Sempre, ovunque e prima di tutto, italiana.\nPresidente - di @FratellidItaIia.","url":"https:\/\/t.co\/siYogQw4yH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/siYogQw4yH","expanded_url":"http:\/\/www.giorgiameloni.it","display_url":"giorgiameloni.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":888735,"friends_count":847,"listed_count":1921,"created_at":"Wed - Apr 07 15:43:26 +0000 2010","favourites_count":414,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":15030,"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\/1134047615354646528\/KqlMwvCx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134047615354646528\/KqlMwvCx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130537001\/1580137721","profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":321,"favorite_count":1994,"favorited":false,"retweeted":false,"lang":"it"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:59 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:59 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:59 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1134047615354646528/KqlMwvCx_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '432135' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Fri, 06 Mar 2020 09:29:59 GMT - Last-Modified: - - Thu, 30 May 2019 10:41:15 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1134047615354646528 - X-Cache: - - MISS - X-Connection-Hash: - - 8c8dc43fcf0422a70d24097e9b45da7c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '11517' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:59 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:59 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:59 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bologna&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:29:59 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:29:59 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/855066735891927044/dMr6xpwE_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '316511' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:29:59 GMT - Last-Modified: - - Thu, 20 Apr 2017 14:30:50 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/855066735891927044 - X-Cache: - - MISS - X-Connection-Hash: - - 176e936276d95eb0ce66a038052016ea - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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6CKC1zJhEEc3fNG8YgrEijcIPNBakjko2GLCZpSWD7GPul2CaPCHkmjWA6MRnHkeiEZZh+nNFAcyzzNWHF7tMPilzJjAFZlxAF6b5RaKumBYmnDxQ0U3f7PRPcxbO+3wWp/et4KB2X6o6qI2MkcEuNSX5mkhFW+bGKmohCRTMOLHikJRtAWT4ty0VYI5hsycs9KV0yF+yfzs6IAiWVtwi5wyUhlxAjaMA0e7LqDvLnxR/NOyNdr9nHq2zQjAHh9C4m15fItRnK781IULMft5eeklSXiSZURVfdJeHCEtvagD4nyIwM3cPtpTOBw6QuNxBNAOZQwkkhjDntUAMDENUTO60ZW5JCsSwAImzReNnWoRmxmI2pkNKAAzZi2nogPt0EzDGaJaihDOWEKCy/gSIgYLv+uKmlfq1iVCxcZqzTM0I5hBEy+9TPWnsMUnfSadmoui8JI0c0VxoxIIQSLHTUq3q3MDE3wd+v8Anp//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bologna&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Madrid,%20Spain&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/607930537848602625/qfaocmyA_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '78100' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:01 GMT - Last-Modified: - - Mon, 08 Jun 2015 15:19:49 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/607930537848602625 - X-Cache: - - MISS - X-Connection-Hash: - - f410822aef2e79d352aecbc650173b97 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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joN0Z72i4hlaxU5dMi9tmkMgKVYj1rk28ojBZMvk9tlUl5JpiTpck0Gm0tguuLWTYWvYWhVr2OqtiyblzU0y9mrpb2LeXLfrfWFxmVfeNwkJBGhWoJH3xcSzNNYkXpSZmG+/BaFNbG69eRO4f96RDXRKfYM680lOU8dTcQ/YOm6FO0FynzMutT5VfJnKgSNygOEIk2xm1SIt8MzqpF7YBABeUkZ+I1hFizHo6K3iXZc48qSpeal6QtORqWbQ9a98xWPwEJ3f2/oKh57ScOzE3VGKnLPsrzySCpkqssZPV04a8PAwhehap9Qf+yYbS/5rAm5fdjmhtk6on0kdVgQS2ki3wom/JwGMuV+EGSfCGb/gn4v009LRUn9IWfaISMT1J1ICWXwgK1TlAuU8yevACI2fileH4RU1/wCPa/po8oZHDi2L1xNIClW35p9uVbUq7hta+g5mC5qV9F1FCAolIspKiN44xJhv5b/wVBmJ98t4L84FFOGSZTat1CkrS60FX90QP1BuScSptV3E6gDnFfLfJyvAxWp4+MK0Q/ZjcKlPT8k9PTswohDa1gnUrUBZA6JBil9Mz379f2ot5r9Xl/2w8xChFpRUcJCq5uWWz//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Madrid,%20Spain&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:01 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hyderabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:01 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1220853578790629376/JSp9QXHz_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '148912' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:02 GMT - Last-Modified: - - Fri, 24 Jan 2020 23:37:10 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1220853578790629376 - X-Cache: - - MISS - X-Connection-Hash: - - 54f5e8803632a1d02a4a3d05abf49cd3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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r2Em/voxHNgS2DlwUR537MpAJGhGM0deC2hs3xec9r5xFrDlDgnzjociaVI6zdpSCgVjPeCBXR1AfWJ2DA3soD3W/oOacTZR4g88/rhStD9SCHzjXmFd4MriHgOV3z418Ya0htdEV+/+HFIoICodTWb2PhR5BWYbPkFlJENzjCkkqI883eNG89WS18AAe2CydWtF5G7U8KSY2F9yE7brbub61iKH3YuCnSgR40Zs4iAow+P5rP7P/wBwSU50HxFw6UZFfaxxHYzRPQ1wPvB8C7bgPV6FoRHh6M4c31os6q9SIJTjGrRKTkJQZQiGqkxI4JJyocgonK4FTHqJk8DKmyLOIf0mKZWeGEqt7BaxcT5msTD6NgaCeflx+khhHpewhj63lYgQNBrOirWnOAARPRNA3B+jIBNBmhgZds9YxRKkaBSEBgoht28Z7/xjwaPKZwGQk0YFO2Lhln6Yr0zvKpWrWxH0FriusJYXpdkdYBAbwrhvB+5pz0LUEINCwdl3LDF8EbOSEjvbvP67ggmOCw+MjHCHPde0P3w/9UjnCNx2+yZxXAqm3OWR+HrADeQRGfghTjAzaJ+dT3V+894JWPWCcA0Vdnl4xhrrJ8mPJh+2fl/0Z/HeP98nIFR//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:02 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hyderabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:02 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:02 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Marietta,%20GA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:02 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:02 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/981985020649799680/ruX8TVbB_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1921' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:02 GMT - Last-Modified: - - Thu, 05 Apr 2018 19:58:47 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/981985020649799680 - X-Cache: - - HIT - X-Connection-Hash: - - cd8e5bb85123700ac0537750b18881db - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:02 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Marietta,%20GA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:02 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:02 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mid-Michigan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:02 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:02 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1193677834667118593/LbMbjai-_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '478547' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Fri, 06 Mar 2020 09:30:02 GMT - Last-Modified: - - Sun, 10 Nov 2019 23:50:27 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1193677834667118593 - X-Cache: - - MISS - X-Connection-Hash: - - 62b61aa2540ab012e7ac84d5e3d7b203 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '5465' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:03 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mid-Michigan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:03 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:03 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1235246699532169215&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="a4b30f96e5c19b60d1e42c23b7bfd06f", - oauth_signature="6YBLMEo9dFIPOPS3mLjhZpuhDNY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487003", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '552781' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:04 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:04 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348700386172067; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:04 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_59y/3OJJ3fLF5oyPxWtEXQ=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:04 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 636b3f2f2a9a384baa31c64f29c2afac - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '177' - X-Rate-Limit-Reset: - - '1583487846' - X-Response-Time: - - '387' - X-Transaction: - - '002872e2003b5009' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Wed Mar 04 16:52:17 +0000 2020","id":1235246699448156162,"id_str":"1235246699448156162","text":"RT - @JhaSanjay: Given our brittle public health infrastructure, the government - should be burning the midnight oil to prevent spread of #coro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JhaSanjay","name":"Sanjay - Jha","id":50943008,"id_str":"50943008","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1117472999236673537,"id_str":"1117472999236673537","name":"H.V.","screen_name":"HarishVaidya14","location":"Delhi, - India","description":"Respect for all religion but I hate sanghis.\nIdeology - of Godse is very dangerous for our Nation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2629,"friends_count":1602,"listed_count":1,"created_at":"Sun - Apr 14 17:01:39 +0000 2019","favourites_count":125279,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127461893788950529\/tyisPxi8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127461893788950529\/tyisPxi8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1117472999236673537\/1557642909","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 07:19:58 +0000 2020","id":1235102672845279232,"id_str":"1235102672845279232","text":"Given - our brittle public health infrastructure, the government should be burning - the midnight oil to prevent spread\u2026 https:\/\/t.co\/af7u8QtkSH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/af7u8QtkSH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235102672845279232","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50943008,"id_str":"50943008","name":"Sanjay - Jha","screen_name":"JhaSanjay","location":"Mumbai.India","description":"National - Spokesperson,@INCindia. President, @ProfCong Maharashtra. TEDx Speaker\/ Ex-Banker, - Founder, https:\/\/t.co\/zqINBqq78W. XLRI. @DaleCarnegie Dog Whisperer","url":"https:\/\/t.co\/ztkhhqlVri","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztkhhqlVri","expanded_url":"http:\/\/Instagram.com\/SanjayJhaCongress","display_url":"Instagram.com\/SanjayJhaCongr\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/zqINBqq78W","expanded_url":"http:\/\/CricketNext.com","display_url":"CricketNext.com","indices":[101,124]}]}},"protected":false,"followers_count":465953,"friends_count":3650,"listed_count":980,"created_at":"Fri - Jun 26 05:57:24 +0000 2009","favourites_count":24543,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":64070,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1210126751583490051\/hZWf5sMr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210126751583490051\/hZWf5sMr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50943008\/1503156542","profile_link_color":"13BAF7","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":163,"favorite_count":464,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":163,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699418767361,"id_str":"1235246699418767361","text":"How - is @Disneyland handling the Coronavirus from spreading g there??","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Disneyland","name":"Disneyland - Resort","id":12378512,"id_str":"12378512","indices":[7,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20294907,"id_str":"20294907","name":"heygurl_hey","screen_name":"RachBee09","location":"Bay - Area","description":"Every day is a blessing! make it worthy.. Prince 1958-4ever!!\ud83d\udc9c\ud83e\udd17 - \ud83d\udee3\ud83c\udf04\ud83c\udfdd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":307,"listed_count":14,"created_at":"Sat - Feb 07 05:03:11 +0000 2009","favourites_count":28083,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52859,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C91E5A","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\/1157282667223605249\/2lPAgaZV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1157282667223605249\/2lPAgaZV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20294907\/1572159225","profile_link_color":"228ECC","profile_sidebar_border_color":"AEFF47","profile_sidebar_fill_color":"68C68A","profile_text_color":"765693","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699360157696,"id_str":"1235246699360157696","text":"RT - @thatsnonsense: ICYMI - That list of facts about coronavirus from a \"friend''s - uncle who worked at Shenzhen Hospital\" is a mixed bag of t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thatsnonsense","name":"That''s - Nonsense","id":70735631,"id_str":"70735631","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19390147,"id_str":"19390147","name":"Simon - Holcombe","screen_name":"OllyAitch","location":"Sheffield\/South Anston","description":"I - walk, I cook, I drink beer, I photo.\n\nThese are views what are mine and - mine alone.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":587,"friends_count":557,"listed_count":38,"created_at":"Fri - Jan 23 11:12:25 +0000 2009","favourites_count":12762,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21383,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"00020A","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\/1206820582\/factory_records_communications_1978-92_box_set_362_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206820582\/factory_records_communications_1978-92_box_set_362_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19390147\/1398417689","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:17:31 +0000 2020","id":1235237949899509761,"id_str":"1235237949899509761","text":"ICYMI - - That list of facts about coronavirus from a \"friend''s uncle who worked - at Shenzhen Hospital\" is a mixed bag\u2026 https:\/\/t.co\/2bHyRQFEJq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2bHyRQFEJq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235237949899509761","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70735631,"id_str":"70735631","name":"That''s - Nonsense","screen_name":"thatsnonsense","location":"UK","description":"Hit - the FOLLOW button to stay ahead of online hoaxes, scams and rumours. Because - we debunk ALL that stuff! Hit Follow!","url":"http:\/\/t.co\/syUsC5MnKm","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/syUsC5MnKm","expanded_url":"http:\/\/thatsnonsense.com","display_url":"thatsnonsense.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2678,"friends_count":37,"listed_count":73,"created_at":"Tue - Sep 01 17:32:09 +0000 2009","favourites_count":1799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3804,"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\/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\/948153438336102400\/AQgh1CCN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/948153438336102400\/AQgh1CCN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70735631\/1463002551","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"},"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699276382209,"id_str":"1235246699276382209","text":"RT - @Moncefaitkaci: DERNI\u00c8RE MINUTE \u2013 Coronavirus : 4 nouveaux cas enregistr\u00e9s, - 12 au total en #Alg\u00e9rie. \nMinist\u00e8re de la Sant\u00e9.","truncated":false,"entities":{"hashtags":[{"text":"Alg\u00e9rie","indices":[94,102]}],"symbols":[],"user_mentions":[{"screen_name":"Moncefaitkaci","name":"Moncef - Ait-Kaci","id":3290669969,"id_str":"3290669969","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1204396870723887105,"id_str":"1204396870723887105","name":"L''as - de pique \u2660","screen_name":"DZ25416104","location":"Alg\u00e9rie","description":"Pour - Alg\u00e9rie libre et d\u00e9mocratique","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":168,"listed_count":0,"created_at":"Tue - Dec 10 13:46:24 +0000 2019","favourites_count":3116,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2099,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225530779364622341\/S3ruSiBK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225530779364622341\/S3ruSiBK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204396870723887105\/1581024302","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:03:43 +0000 2020","id":1235234477007409153,"id_str":"1235234477007409153","text":"DERNI\u00c8RE - MINUTE \u2013 Coronavirus : 4 nouveaux cas enregistr\u00e9s, 12 au total en - #Alg\u00e9rie. \nMinist\u00e8re de la Sant\u00e9.","truncated":false,"entities":{"hashtags":[{"text":"Alg\u00e9rie","indices":[75,83]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290669969,"id_str":"3290669969","name":"Moncef - Ait-Kaci","screen_name":"Moncefaitkaci","location":"","description":"Journaliste - correspondant de France 24 \u00e0 Alger \u0635\u062d\u0641\u064a \/ \u0645\u0631\u0627\u0633\u0644 - \/ Contact@moncefaitkaci.com \u0627\u0644\u062c\u0632\u0627\u0626\u0631 \ud83c\udde9\ud83c\uddff","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5129,"friends_count":222,"listed_count":23,"created_at":"Wed - May 20 00:35:54 +0000 2015","favourites_count":455,"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":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217624263596920833\/E4L0Q8GI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217624263596920833\/E4L0Q8GI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290669969\/1579139107","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":20,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699251146755,"id_str":"1235246699251146755","text":"RT - @Bill4game: Enero: tercera guerra mundial\nFebrero y Marzo: coronavirus\nAbril...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Bill4game","name":"HsBill","id":925148228,"id_str":"925148228","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":917678395,"id_str":"917678395","name":"Gonzalo - Carbia","screen_name":"GonzaCarbia","location":"San Antonio de Areco","description":"Montevideo - \ud83c\uddfa\ud83c\uddfe\ud83d\udccd\/\/Pe\u00f1arol y Rivadavia\/\/\n2pac, - Biggie Smalls, Canserbero \ud83d\udc51","url":"https:\/\/t.co\/ZCndtc1Icg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZCndtc1Icg","expanded_url":"http:\/\/instagram.com\/GonzaCarbia","display_url":"instagram.com\/GonzaCarbia","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2740,"friends_count":2309,"listed_count":2,"created_at":"Wed - Oct 31 21:10:27 +0000 2012","favourites_count":944,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20595,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"AFDCF2","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\/1206049696835350529\/Cpx8Tith_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206049696835350529\/Cpx8Tith_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/917678395\/1452925130","profile_link_color":"3B94D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:33:27 +0000 2020","id":1234909770815090688,"id_str":"1234909770815090688","text":"Enero: - tercera guerra mundial\nFebrero y Marzo: coronavirus\nAbril... https:\/\/t.co\/TFsDXUoomV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TFsDXUoomV","expanded_url":"https:\/\/twitter.com\/Daily_Express\/status\/1234596211665047553","display_url":"twitter.com\/Daily_Express\/\u2026","indices":[68,91]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925148228,"id_str":"925148228","name":"HsBill","screen_name":"Bill4game","location":"","description":"Me - encanta que la gente sepa cuando estoy aburrido por eso me hice una cuenta - de Twitter. Canal de Twitch: https:\/\/t.co\/Q2D157ATSE\nInstagram: bill__87","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/Q2D157ATSE","expanded_url":"http:\/\/twitch.tv\/hsbill","display_url":"twitch.tv\/hsbill","indices":[107,130]}]}},"protected":false,"followers_count":3626,"friends_count":236,"listed_count":7,"created_at":"Sun - Nov 04 11:14:01 +0000 2012","favourites_count":9621,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24535,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228866542676381697\/qIC0jD1B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228866542676381697\/qIC0jD1B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925148228\/1549752316","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234596211665047553,"quoted_status_id_str":"1234596211665047553","quoted_status":{"created_at":"Mon - Mar 02 21:47:29 +0000 2020","id":1234596211665047553,"id_str":"1234596211665047553","text":"A - 4.1KM asteroid will close-in on Earth in April, NASA has confirmed - Could - end human civilisation if it hits\u2026 https:\/\/t.co\/LLebFWVFQU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LLebFWVFQU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234596211665047553","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":17895820,"id_str":"17895820","name":"Daily - Express","screen_name":"Daily_Express","location":"London","description":"http:\/\/t.co\/xNo7rgb8JJ - - Home of the Daily and Sunday Express","url":"http:\/\/t.co\/s6YQUMB0NH","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/s6YQUMB0NH","expanded_url":"http:\/\/www.express.co.uk","display_url":"express.co.uk","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/xNo7rgb8JJ","expanded_url":"http:\/\/Express.co.uk","display_url":"Express.co.uk","indices":[0,22]}]}},"protected":false,"followers_count":828678,"friends_count":624,"listed_count":3441,"created_at":"Fri - Dec 05 12:05:48 +0000 2008","favourites_count":61,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":722253,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"7B6085","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\/1230887617358651392\/uq4jNSJa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230887617358651392\/uq4jNSJa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17895820\/1582302707","profile_link_color":"13AEB8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23107,"favorite_count":67863,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":19728,"favorite_count":83770,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1234596211665047553,"quoted_status_id_str":"1234596211665047553","retweet_count":19728,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699175702528,"id_str":"1235246699175702528","text":"RT - @el_pais: Mapa de expansi\u00f3n y claves para entender el coronavirus de - Wuhan\nhttps:\/\/t.co\/ZevSicw6JS https:\/\/t.co\/PtqG73204t","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"el_pais","name":"EL - PA\u00cdS","id":7996082,"id_str":"7996082","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/ZevSicw6JS","expanded_url":"https:\/\/bit.ly\/2uWaIBe","display_url":"bit.ly\/2uWaIBe","indices":[78,101]}],"media":[{"id":1235205010532831240,"id_str":"1235205010532831240","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRUaaWXkAg-ASm.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRUaaWXkAg-ASm.png","url":"https:\/\/t.co\/PtqG73204t","display_url":"pic.twitter.com\/PtqG73204t","expanded_url":"https:\/\/twitter.com\/el_pais\/status\/1235205189977673731\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":525,"resize":"fit"},"large":{"w":1043,"h":805,"resize":"fit"},"medium":{"w":1043,"h":805,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1235205189977673731,"source_status_id_str":"1235205189977673731","source_user_id":7996082,"source_user_id_str":"7996082"}]},"extended_entities":{"media":[{"id":1235205010532831240,"id_str":"1235205010532831240","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRUaaWXkAg-ASm.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRUaaWXkAg-ASm.png","url":"https:\/\/t.co\/PtqG73204t","display_url":"pic.twitter.com\/PtqG73204t","expanded_url":"https:\/\/twitter.com\/el_pais\/status\/1235205189977673731\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":525,"resize":"fit"},"large":{"w":1043,"h":805,"resize":"fit"},"medium":{"w":1043,"h":805,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1235205189977673731,"source_status_id_str":"1235205189977673731","source_user_id":7996082,"source_user_id_str":"7996082"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":788045185,"id_str":"788045185","name":"Gustavo - Becerra","screen_name":"YouSugarDaddy","location":"Santa Cruz, Bolivia ","description":"Usuario - de Twitter ~me sigues, te sigo~","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6541,"friends_count":7196,"listed_count":2,"created_at":"Tue - Aug 28 23:00:25 +0000 2012","favourites_count":8125,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4021,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232105064539607040\/1_eUeW_H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232105064539607040\/1_eUeW_H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/788045185\/1580781031","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:07:20 +0000 2020","id":1235205189977673731,"id_str":"1235205189977673731","text":"Mapa - de expansi\u00f3n y claves para entender el coronavirus de Wuhan\nhttps:\/\/t.co\/ZevSicw6JS - https:\/\/t.co\/PtqG73204t","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZevSicw6JS","expanded_url":"https:\/\/bit.ly\/2uWaIBe","display_url":"bit.ly\/2uWaIBe","indices":[65,88]}],"media":[{"id":1235205010532831240,"id_str":"1235205010532831240","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRUaaWXkAg-ASm.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRUaaWXkAg-ASm.png","url":"https:\/\/t.co\/PtqG73204t","display_url":"pic.twitter.com\/PtqG73204t","expanded_url":"https:\/\/twitter.com\/el_pais\/status\/1235205189977673731\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":525,"resize":"fit"},"large":{"w":1043,"h":805,"resize":"fit"},"medium":{"w":1043,"h":805,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1235205010532831240,"id_str":"1235205010532831240","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRUaaWXkAg-ASm.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRUaaWXkAg-ASm.png","url":"https:\/\/t.co\/PtqG73204t","display_url":"pic.twitter.com\/PtqG73204t","expanded_url":"https:\/\/twitter.com\/el_pais\/status\/1235205189977673731\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":525,"resize":"fit"},"large":{"w":1043,"h":805,"resize":"fit"},"medium":{"w":1043,"h":805,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":7996082,"id_str":"7996082","name":"EL - PA\u00cdS","screen_name":"el_pais","location":"Madrid","description":"Noticias, - reportajes, opini\u00f3n, an\u00e1lisis y la \u00faltima hora de la informaci\u00f3n - m\u00e1s relevante. Con nuestra mirada puesta en Espa\u00f1a, Europa y Am\u00e9rica","url":"https:\/\/t.co\/0o6oj1LRF2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0o6oj1LRF2","expanded_url":"http:\/\/www.elpais.com","display_url":"elpais.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7295108,"friends_count":761,"listed_count":57206,"created_at":"Mon - Aug 06 16:20:09 +0000 2007","favourites_count":1706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":542979,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/815456059322036224\/o_RQNEOh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/815456059322036224\/o_RQNEOh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7996082\/1450772084","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F1F4F9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":80,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":57,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699175534592,"id_str":"1235246699175534592","text":"RT - @FutbolBible: Jurgen Klopp''s response when asked about Coronavirus is absolutely - class. This man speaks so much sense, absolutely spot o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FutbolBible","name":"FutbolBible","id":1123488680,"id_str":"1123488680","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1137647269463744512,"id_str":"1137647269463744512","name":"Haykal","screen_name":"jeramimemanggil","location":"","description":"berikan - aku satu gelas teh tawar hangat maka akan kuhabiskan saat itu juga","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":334,"listed_count":0,"created_at":"Sun - Jun 09 09:07:00 +0000 2019","favourites_count":4845,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3211,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1174577370952425473\/kRnmCIy4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1174577370952425473\/kRnmCIy4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1137647269463744512\/1560072559","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:49:27 +0000 2020","id":1235140289825853440,"id_str":"1235140289825853440","text":"Jurgen - Klopp''s response when asked about Coronavirus is absolutely class. This man - speaks so much sense, absolutely\u2026 https:\/\/t.co\/s5ob7HdqwI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s5ob7HdqwI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235140289825853440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1123488680,"id_str":"1123488680","name":"FutbolBible","screen_name":"FutbolBible","location":"England, - United Kingdom","description":"\u26bd\ufe0f If you love football then simply - click that follow button. We post the best football tweets. For promotion - contact us via DM or FutbolBible@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":249935,"friends_count":14933,"listed_count":1053,"created_at":"Sat - Jan 26 23:50:04 +0000 2013","favourites_count":6854,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4504,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000305","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261582636645\/55e9a4980b50801ab91c8e13e5c77f40_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261582636645\/55e9a4980b50801ab91c8e13e5c77f40_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1123488680\/1555466861","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41766,"favorite_count":174265,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":41766,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246699091759104,"id_str":"1235246699091759104","text":"People - are so ignorant.\nHow can people in a number of countries just think because - someone is Asian, they have the\u2026 https:\/\/t.co\/h2buFneDYA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/h2buFneDYA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246699091759104","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":775216820,"id_str":"775216820","name":"Khanh","screen_name":"kburks523","location":"","description":"A - mom, foodie, and VCU Rams fan \ud83c\udfc0\ud83d\udc11 #LetsGoVCU","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":143,"friends_count":245,"listed_count":8,"created_at":"Thu - Aug 23 05:14:01 +0000 2012","favourites_count":5135,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8526,"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\/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\/1169765629181779969\/aHhbYX9C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169765629181779969\/aHhbYX9C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/775216820\/1474078746","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698949226496,"id_str":"1235246698949226496","text":"La - gente le tiene m\u00e1s miedo al coronavirus que a la cantidad de mierdas - t\u00f3xicas que tienen las comidas de todos los d\u00edas","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4636237347,"id_str":"4636237347","name":"caluu","screen_name":"LuuCaluva14","location":"Entre - R\u00edos, Argentina","description":"\u0455o\u043co\u0455 \u03b1d\u03b9c\u0442o\u0455 - \u03b1 lo q\u03c5e \u0274o\u0455 de\u0455\u0442r\u03c5ye \u2604\ufe0f\u2604\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":413,"friends_count":366,"listed_count":0,"created_at":"Mon - Dec 28 21:33:09 +0000 2015","favourites_count":2610,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1696,"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\/1184888203590979585\/o878L3lF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184888203590979585\/o878L3lF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4636237347\/1582070937","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698936643585,"id_str":"1235246698936643585","text":"RT - @BethanyAllenEbr: Scoop: A Chinese government-owned think tank is quietly - soliciting opinions to gauge how the international community m\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BethanyAllenEbr","name":"B. - Allen-Ebrahimian","id":69048123,"id_str":"69048123","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":780155430412574720,"id_str":"780155430412574720","name":"Sharon - Rudow","screen_name":"PlayaSharon","location":"Chevy Chase, MD","description":"Boomer - mom, animal rescuer, backgammon master. Facts are not subjective. Proud Liberal. - Putin Owns Trump. Love is love.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2359,"friends_count":405,"listed_count":4,"created_at":"Sun - Sep 25 21:22:04 +0000 2016","favourites_count":75058,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47671,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234475738834907136\/RzHyhvUP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234475738834907136\/RzHyhvUP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780155430412574720\/1571278955","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:35:42 +0000 2020","id":1235242527772618752,"id_str":"1235242527772618752","text":"Scoop: - A Chinese government-owned think tank is quietly soliciting opinions to gauge - how the international communit\u2026 https:\/\/t.co\/BaTtmJSrnO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BaTtmJSrnO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242527772618752","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69048123,"id_str":"69048123","name":"B. - Allen-Ebrahimian","screen_name":"BethanyAllenEbr","location":"Washington, - DC","description":"China reporter @axios. Previously, lead reporter @ICIJorg\u2019s - China Cables. Ex-@foreignpolicy. DM me.","url":"https:\/\/t.co\/J1CWJStpfT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J1CWJStpfT","expanded_url":"https:\/\/www.axios.com\/authors\/baebrahimian","display_url":"axios.com\/authors\/baebra\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":36081,"friends_count":1333,"listed_count":695,"created_at":"Wed - Aug 26 17:57:30 +0000 2009","favourites_count":8496,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":3709,"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\/1225506155687968769\/209GBF7-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225506155687968769\/209GBF7-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69048123\/1574804476","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":572,"favorite_count":663,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":572,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698902908933,"id_str":"1235246698902908933","text":"RT - @motorwars: \u0e1b\u0e23\u0e30\u0e18\u0e32\u0e19\u0e32\u0e18\u0e34\u0e1a\u0e14\u0e35\u0e21\u0e38\u0e19 - \u0e41\u0e08-\u0e2d\u0e34\u0e19 \u0e1c\u0e39\u0e49\u0e19\u0e33\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e43\u0e15\u0e49 - \u0e02\u0e2d\u0e42\u0e17\u0e29\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e0a\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a - \"\u0e04\u0e27\u0e32\u0e21\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\" \u0e02\u0e2d\u0e07\u0e23\u0e31\u0e10\u0e1a\u0e32\u0e25 - \u0e43\u0e19\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 #\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22 - \u0e02\u0e32\u0e14\u0e41\u0e04\u0e25\u0e19 \u0e17\u0e48\u0e32\u0e21\u0e01\u0e25\u0e32\u0e07\u0e27\u0e34\u0e01\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22","indices":[105,119]}],"symbols":[],"user_mentions":[{"screen_name":"motorwars","name":"pone - poyepoloye","id":75972047,"id_str":"75972047","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398477382,"id_str":"398477382","name":"\u2661\uc740\uc9c0\u2661","screen_name":"fromholly97","location":"\uce58\uc559\ub9c8\uc774 - \ud0dc\uad6d","description":"MONSTA X | | WJSN \uc720\uc5f0\uccad | STARSHIP - x SM | SF9 \ub85c\uc131 | NU''EST |WANNA ONE \ud669\ubbfc\ud604","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":368,"friends_count":478,"listed_count":9,"created_at":"Wed - Oct 26 03:30:41 +0000 2011","favourites_count":6418,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":120341,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFE84F","profile_background_image_url":"http:\/\/abs.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\/1235575244619796480\/X3F8pERH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235575244619796480\/X3F8pERH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398477382\/1549907524","profile_link_color":"E37C0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFCD1","profile_text_color":"F5BE27","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 06:02:21 +0000 2020","id":1234720751720095744,"id_str":"1234720751720095744","text":"\u0e1b\u0e23\u0e30\u0e18\u0e32\u0e19\u0e32\u0e18\u0e34\u0e1a\u0e14\u0e35\u0e21\u0e38\u0e19 - \u0e41\u0e08-\u0e2d\u0e34\u0e19 \u0e1c\u0e39\u0e49\u0e19\u0e33\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e43\u0e15\u0e49 - \u0e02\u0e2d\u0e42\u0e17\u0e29\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e0a\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a - \"\u0e04\u0e27\u0e32\u0e21\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\" \u0e02\u0e2d\u0e07\u0e23\u0e31\u0e10\u0e1a\u0e32\u0e25 - \u0e43\u0e19\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 #\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22 - \u0e02\u0e32\u0e14\u0e41\u0e04\u0e25\u0e19 \u0e17\u0e48\u2026 https:\/\/t.co\/TSgPmJhcnI","truncated":true,"entities":{"hashtags":[{"text":"\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22","indices":[90,104]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TSgPmJhcnI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234720751720095744","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75972047,"id_str":"75972047","name":"pone - poyepoloye","screen_name":"motorwars","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7724,"friends_count":2584,"listed_count":185,"created_at":"Mon - Sep 21 06:28:06 +0000 2009","favourites_count":190018,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":228985,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1097792170591830016\/6waaec1Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1097792170591830016\/6waaec1Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75972047\/1564709395","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24917,"favorite_count":3521,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},"is_quote_status":false,"retweet_count":24917,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"th"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698773065728,"id_str":"1235246698773065728","text":"RT - @Juampi1522: La reacci\u00f3n de la poblaci\u00f3n ante la llegada del coronavirus:\n\n\ud83c\udde8\ud83c\uddf3 - Cuarentena\n\ud83c\uddeb\ud83c\uddf7 Usen barbijos\n\ud83c\uddee\ud83c\uddf9 - Lavens\u00e9 siempre las manos\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Juampi1522","name":"Juampi","id":1066898109295484928,"id_str":"1066898109295484928","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1171100340218990593,"id_str":"1171100340218990593","name":"aure","screen_name":"escaladaaure","location":"Col\u00f3n, - Argentina","description":"\ud83d\udc7b aureescalada","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":155,"listed_count":0,"created_at":"Mon - Sep 09 16:37:40 +0000 2019","favourites_count":2685,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":387,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230804666138660864\/73x_rnkv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230804666138660864\/73x_rnkv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1171100340218990593\/1583051586","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 19:16:24 +0000 2020","id":1234920578525605891,"id_str":"1234920578525605891","text":"La - reacci\u00f3n de la poblaci\u00f3n ante la llegada del coronavirus:\n\n\ud83c\udde8\ud83c\uddf3 - Cuarentena\n\ud83c\uddeb\ud83c\uddf7 Usen barbijos\n\ud83c\uddee\ud83c\uddf9 - Lavens\u00e9 siempre las\u2026 https:\/\/t.co\/4ugXnv2bJh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4ugXnv2bJh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234920578525605891","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066898109295484928,"id_str":"1066898109295484928","name":"Juampi","screen_name":"Juampi1522","location":"Buenos - Aires, Argentina","description":"No tengo Instagram. Tampoco Facebook.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":277,"friends_count":354,"listed_count":1,"created_at":"Mon - Nov 26 03:35:06 +0000 2018","favourites_count":17017,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14745,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234976453038682122\/8GC3zLeF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234976453038682122\/8GC3zLeF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1066898109295484928\/1576284709","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9849,"favorite_count":55693,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":9849,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698752077825,"id_str":"1235246698752077825","text":"RT - @_nachosan: EL QUE TRAJO EL CORONAVIRUS A LA ARGENTINA VINO EN CLASE ALTA - DESDE EUROPA JAJAJA PERO NO VEN BOLUDOS? YO SE LOS DIJE... LOS\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_nachosan","name":"nachosan","id":391074079,"id_str":"391074079","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3000296170,"id_str":"3000296170","name":"Purple - Haze","screen_name":"_Ramaaaa_","location":"Mi mente","description":"Inserte - frase pretenciosa sacada de Internet, mi cuenta secundaria en la que subo - nudes @_NastyDreams_, si tenes ganas seguime br0.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":20,"listed_count":4,"created_at":"Mon - Jan 26 19:57:31 +0000 2015","favourites_count":15891,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45092,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233758313151696896\/JKCp_MxP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233758313151696896\/JKCp_MxP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3000296170\/1582985877","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 21:12:17 +0000 2020","id":1234949743182258177,"id_str":"1234949743182258177","text":"EL - QUE TRAJO EL CORONAVIRUS A LA ARGENTINA VINO EN CLASE ALTA DESDE EUROPA JAJAJA - PERO NO VEN BOLUDOS? YO SE LOS DI\u2026 https:\/\/t.co\/dtbEyy3TT0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dtbEyy3TT0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234949743182258177","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":391074079,"id_str":"391074079","name":"nachosan","screen_name":"_nachosan","location":"","description":"barrilete - c\u00f3mico https:\/\/t.co\/SWsDV9wz2l","url":"https:\/\/t.co\/ZDUmF6eHBb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZDUmF6eHBb","expanded_url":"http:\/\/instagram.com\/nachosan__","display_url":"instagram.com\/nachosan__","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SWsDV9wz2l","expanded_url":"http:\/\/twitch.tv\/nachosan1","display_url":"twitch.tv\/nachosan1","indices":[17,40]}]}},"protected":false,"followers_count":176935,"friends_count":302,"listed_count":58,"created_at":"Sat - Oct 15 00:48:22 +0000 2011","favourites_count":39401,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14240,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1216805115954372611\/W_ZdaZEb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216805115954372611\/W_ZdaZEb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/391074079\/1525921122","profile_link_color":"FAB81E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18458,"favorite_count":105946,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":18458,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698693373953,"id_str":"1235246698693373953","text":"RT - @taexphoenix: fuera de joda, informense un poco mas sobre el coronavirus: - el mayor grupo de riesgo son las personas mayores de 70 y pers\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"taexphoenix","name":"belencita\u2077","id":1178976920,"id_str":"1178976920","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2712698605,"id_str":"2712698605","name":"Stephanie - \ud83e\udd0d","screen_name":"estx7","location":"Buenos Aires","description":"13 - \ud83e\udd70","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":35,"listed_count":1,"created_at":"Wed - Aug 06 18:29:56 +0000 2014","favourites_count":82420,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4635,"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\/1161729748722245632\/97gVjldn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161729748722245632\/97gVjldn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2712698605\/1582661896","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:41:26 +0000 2020","id":1234911779211350016,"id_str":"1234911779211350016","text":"fuera - de joda, informense un poco mas sobre el coronavirus: el mayor grupo de riesgo - son las personas mayores de 70\u2026 https:\/\/t.co\/hyFYLn5UKO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hyFYLn5UKO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234911779211350016","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1178976920,"id_str":"1178976920","name":"belencita\u2077","screen_name":"taexphoenix","location":"*:\uff65\uff9f - feminist ","description":"por mi se pueden ir todos a la mierda. \u2727\u02d6\u00b0 \n\nIt''s - a beautiful day to destroy patriarchy. \u2640\ufe0f\n\n\n *:\uff65\uff9f\u2727*\uff65\uff9f - fan account.","url":"https:\/\/t.co\/OeLt0cERBF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OeLt0cERBF","expanded_url":"https:\/\/curiouscat.me\/taexphoenix","display_url":"curiouscat.me\/taexphoenix","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11699,"friends_count":5238,"listed_count":80,"created_at":"Thu - Feb 14 12:56:43 +0000 2013","favourites_count":34717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":95993,"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\/1233404351776993282\/_1PWasan_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233404351776993282\/_1PWasan_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1178976920\/1582901487","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6810,"favorite_count":27353,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":6810,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698638782464,"id_str":"1235246698638782464","text":"RT - @BNODesk: NEW: India reports 22 new cases of coronavirus, taking country''s - total to 28 https:\/\/t.co\/eUoE2b20hL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BNODesk","name":"BNO - Newsroom","id":2985479932,"id_str":"2985479932","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/eUoE2b20hL","expanded_url":"https:\/\/bnonews.com\/index.php\/2020\/02\/the-latest-coronavirus-cases\/","display_url":"bnonews.com\/index.php\/2020\u2026","indices":[90,113]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":524633471,"id_str":"524633471","name":"Citizens - of Suburbia","screen_name":"mitdevani","location":"Suburbia","description":"Evertonians. - An ordinary family living ordinary lives in extraordinary times. All views - are our own private views!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":252,"friends_count":662,"listed_count":0,"created_at":"Wed - Mar 14 19:03:42 +0000 2012","favourites_count":17542,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10302,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1141635567702200320\/i8DgZv4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141635567702200320\/i8DgZv4F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/524633471\/1562261151","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 08:16:06 +0000 2020","id":1235116798644756481,"id_str":"1235116798644756481","text":"NEW: - India reports 22 new cases of coronavirus, taking country''s total to 28 https:\/\/t.co\/eUoE2b20hL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eUoE2b20hL","expanded_url":"https:\/\/bnonews.com\/index.php\/2020\/02\/the-latest-coronavirus-cases\/","display_url":"bnonews.com\/index.php\/2020\u2026","indices":[77,100]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2985479932,"id_str":"2985479932","name":"BNO - Newsroom","screen_name":"BNODesk","location":"Worldwide","description":"Live - updates from the team behind BNO News. Currently covering coronavirus. For - our regular news coverage, follow our main account: @BNONews","url":"https:\/\/t.co\/by7zZiBwBe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/by7zZiBwBe","expanded_url":"http:\/\/www.bnonews.com","display_url":"bnonews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":127525,"friends_count":5,"listed_count":1839,"created_at":"Mon - Jan 19 09:28:21 +0000 2015","favourites_count":4637,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5368,"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\/882093872452698113\/kPkSnGlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882093872452698113\/kPkSnGlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2985479932\/1499139659","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":387,"favorite_count":779,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":387,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698525491202,"id_str":"1235246698525491202","text":"RT - @Oculot2018: Je viens d''apprendre 2 cas de #coronavirus \u00e0 #merysuroise - dans le #valdoise. On se rapproche de #paris. #COVID19fr #CORONAV\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[46,58]},{"text":"merysuroise","indices":[61,73]},{"text":"valdoise","indices":[82,91]},{"text":"paris","indices":[112,118]},{"text":"COVID19fr","indices":[120,130]}],"symbols":[],"user_mentions":[{"screen_name":"Oculot2018","name":"Mmame","id":3004141082,"id_str":"3004141082","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/twitter.com\/FreeBet13\" rel=\"nofollow\"\u003eRetweetteuse\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1129087959339327488,"id_str":"1129087959339327488","name":"\ud83c\uddeb\ud83c\uddf7\ud83c\udde7\ud83c\uddeaTchat - 4.0\ud83d\ude37","screen_name":"4Tchat","location":"","description":"#Acte69 - Stop \u00e0 la #censure #touchepastwitter #coronavirusfr #lagrandecolere #Degrotecolere","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4636,"friends_count":342,"listed_count":9,"created_at":"Thu - May 16 18:15:21 +0000 2019","favourites_count":5676,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":262939,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165602418400382982\/T99PAvt7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165602418400382982\/T99PAvt7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1129087959339327488\/1583153278","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:26:56 +0000 2020","id":1235240319316381697,"id_str":"1235240319316381697","text":"Je - viens d''apprendre 2 cas de #coronavirus \u00e0 #merysuroise dans le #valdoise. - On se rapproche de #paris. #COVID19fr #CORONAVIRUSENFRANCE","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[30,42]},{"text":"merysuroise","indices":[45,57]},{"text":"valdoise","indices":[66,75]},{"text":"paris","indices":[96,102]},{"text":"COVID19fr","indices":[104,114]},{"text":"CORONAVIRUSENFRANCE","indices":[115,135]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3004141082,"id_str":"3004141082","name":"Mmame","screen_name":"Oculot2018","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":26,"listed_count":0,"created_at":"Sat - Jan 31 01:50:59 +0000 2015","favourites_count":48,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73,"lang":null,"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:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698470895616,"id_str":"1235246698470895616","text":"RT - @ClayTravis: Soccer coach is asked about coronavirus, gives fantastic response. - https:\/\/t.co\/nIgS8OmZcm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ClayTravis","name":"Clay - Travis","id":50772918,"id_str":"50772918","indices":[3,14]}],"urls":[],"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/nIgS8OmZcm","display_url":"pic.twitter.com\/nIgS8OmZcm","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"photo","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456"}]},"extended_entities":{"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/nIgS8OmZcm","display_url":"pic.twitter.com\/nIgS8OmZcm","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"video","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456","video_info":{"aspect_ratio":[1,1],"duration_millis":46880,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/pl\/uLotCLQdV_n4LAgh.m3u8?tag=10"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/320x320\/_yWeEcgBUyFvmz40.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/480x480\/3i5K4kvhdMP6yAxW.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1081592120278831105,"id_str":"1081592120278831105","name":"TShow25","screen_name":"TShow25","location":"North - Las Vegas, NV","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":164,"listed_count":0,"created_at":"Sat - Jan 05 16:43:51 +0000 2019","favourites_count":4034,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":527,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1081638988027330560\/ld28YTeZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1081638988027330560\/ld28YTeZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081592120278831105\/1546717841","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:16:54 +0000 2020","id":1235192497162399744,"id_str":"1235192497162399744","text":"Soccer - coach is asked about coronavirus, gives fantastic response. https:\/\/t.co\/nIgS8OmZcm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/nIgS8OmZcm","display_url":"pic.twitter.com\/nIgS8OmZcm","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"photo","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456"}]},"extended_entities":{"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/nIgS8OmZcm","display_url":"pic.twitter.com\/nIgS8OmZcm","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"video","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456","video_info":{"aspect_ratio":[1,1],"duration_millis":46880,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/pl\/uLotCLQdV_n4LAgh.m3u8?tag=10"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/320x320\/_yWeEcgBUyFvmz40.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/480x480\/3i5K4kvhdMP6yAxW.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50772918,"id_str":"50772918","name":"Clay - Travis","screen_name":"ClayTravis","location":"Nashville","description":"https:\/\/t.co\/Ut3ejMNAQd, - @outkick @foxsportsradio 6-9 am et & @lockitinonfs1 TV show 4:30 et, author, - Republicans Buy Sneakers Too, dad of three boys, lawyer","url":"https:\/\/t.co\/c46ZljJT0b","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c46ZljJT0b","expanded_url":"http:\/\/www.outkick.com","display_url":"outkick.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Ut3ejMNAQd","expanded_url":"http:\/\/Outkick.com","display_url":"Outkick.com","indices":[0,23]}]}},"protected":false,"followers_count":652914,"friends_count":353,"listed_count":3729,"created_at":"Thu - Jun 25 21:16:40 +0000 2009","favourites_count":8303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":102451,"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\/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\/668983225860034564\/PIdSf23G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668983225860034564\/PIdSf23G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50772918\/1448333179","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32760,"favorite_count":130269,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32760,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698441527296,"id_str":"1235246698441527296","text":"RT - @ROSNALJU: Coronavirus or not \n\nYou shouldn\u2019t have to be told to wash - your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ROSNALJU","name":"RO$NA","id":224805342,"id_str":"224805342","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1104906980211245056,"id_str":"1104906980211245056","name":"donald\ud83e\uddc3","screen_name":"project_dxn","location":"Washington, - DC","description":"other acc suspended \ud83e\udd27 #ODU23 pls dont take me - and Lawrence seriously \u201cAll legends fall in the making\u201d\ud83d\ude2a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":302,"listed_count":0,"created_at":"Mon - Mar 11 00:48:47 +0000 2019","favourites_count":20584,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6952,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227316886850830336\/tsCoGv-Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227316886850830336\/tsCoGv-Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1104906980211245056\/1575828081","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 19:48:03 +0000 2020","id":1234566154523275265,"id_str":"1234566154523275265","text":"Coronavirus - or not \n\nYou shouldn\u2019t have to be told to wash your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224805342,"id_str":"224805342","name":"RO$NA","screen_name":"ROSNALJU","location":"SLC","description":"IG - @ROSNALJU","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2460,"friends_count":585,"listed_count":12,"created_at":"Thu - Dec 09 22:32:46 +0000 2010","favourites_count":17407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"40030B","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\/1227249944861401088\/100hmgPB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227249944861401088\/100hmgPB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224805342\/1510187001","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"959FA6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86346,"favorite_count":208738,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":86346,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698395570176,"id_str":"1235246698395570176","text":"RT - @alexnazaryan: Called city officials in Kirkland, WA, the epicenter of the - coronavirus outbreak, to ask if they''ve heard from anyone on\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alexnazaryan","name":"Alexander - Nazaryan","id":60087571,"id_str":"60087571","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4155556219,"id_str":"4155556219","name":"Anita - R. Ledford","screen_name":"ARLedford691","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":50,"listed_count":1,"created_at":"Sat - Nov 07 09:08:23 +0000 2015","favourites_count":23255,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4697,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662966335442259968\/6UsCPs-4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662966335442259968\/6UsCPs-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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 21:42:11 +0000 2020","id":1234594879889641472,"id_str":"1234594879889641472","text":"Called - city officials in Kirkland, WA, the epicenter of the coronavirus outbreak, - to ask if they''ve heard from anyo\u2026 https:\/\/t.co\/S8dDIeEi0S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/S8dDIeEi0S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234594879889641472","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":60087571,"id_str":"60087571","name":"Alexander - Nazaryan","screen_name":"alexnazaryan","location":"Washington, DC","description":"national - correspondent, yahoo news","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15439,"friends_count":1723,"listed_count":583,"created_at":"Sat - Jul 25 16:06:19 +0000 2009","favourites_count":8575,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":66814,"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\/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\/1176317695584854017\/QwUb7gSI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176317695584854017\/QwUb7gSI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60087571\/1569293345","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3706,"favorite_count":9025,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3706,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698353418240,"id_str":"1235246698353418240","text":"RT - @KTLA: BREAKING: Local emergency declared in Los Angeles County amid announcement - of 6 new coronavirus cases https:\/\/t.co\/fLdV21fQ4F","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KTLA","name":"KTLA","id":10252962,"id_str":"10252962","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/fLdV21fQ4F","expanded_url":"https:\/\/ktla.com\/news\/local-news\/health-officials-to-make-major-announcements-1-day-after-coronavirus-case-confirmed-in-l-a-county\/","display_url":"ktla.com\/news\/local-new\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2613148374,"id_str":"2613148374","name":"Malik","screen_name":"MalikEarnest","location":"","description":"journalist - + office millennial @fox5sandiego. i\u2019m here for breaking news and relatable - tweets.","url":"https:\/\/t.co\/SGAsWhyZew","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SGAsWhyZew","expanded_url":"http:\/\/instagram.com\/malikearnest","display_url":"instagram.com\/malikearnest","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2708,"friends_count":112,"listed_count":12,"created_at":"Wed - Jul 09 08:14:41 +0000 2014","favourites_count":2646,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":527,"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\/1235589539202101248\/8HwUXenv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235589539202101248\/8HwUXenv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2613148374\/1565173904","profile_link_color":"000000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:39:46 +0000 2020","id":1235243547986546688,"id_str":"1235243547986546688","text":"BREAKING: - Local emergency declared in Los Angeles County amid announcement of 6 new - coronavirus cases https:\/\/t.co\/fLdV21fQ4F","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fLdV21fQ4F","expanded_url":"https:\/\/ktla.com\/news\/local-news\/health-officials-to-make-major-announcements-1-day-after-coronavirus-case-confirmed-in-l-a-county\/","display_url":"ktla.com\/news\/local-new\u2026","indices":[102,125]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":10252962,"id_str":"10252962","name":"KTLA","screen_name":"KTLA","location":"Los - Angeles, CA","description":"KTLA has been keeping Southern California informed - since 1947. \n\nHave great video, photos or story tips? Share with us using - #ktla.","url":"http:\/\/t.co\/ZgOP41jU0Y","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ZgOP41jU0Y","expanded_url":"http:\/\/ktla.com","display_url":"ktla.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":785414,"friends_count":772,"listed_count":4361,"created_at":"Wed - Nov 14 17:43:42 +0000 2007","favourites_count":1486,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":206159,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"040718","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\/809849913240481792\/YQ0aT9hv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809849913240481792\/YQ0aT9hv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10252962\/1369959990","profile_link_color":"24009C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":425,"favorite_count":549,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":425,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698345181186,"id_str":"1235246698345181186","text":"RT - @RepDougCollins: The president has shown strong leadership by putting @VP - Pence in charge of the administration''s #coronavirus efforts.\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[117,129]}],"symbols":[],"user_mentions":[{"screen_name":"RepDougCollins","name":"Rep. - Doug Collins","id":1060487274,"id_str":"1060487274","indices":[3,18]},{"screen_name":"VP","name":"Vice - President Mike Pence","id":818910970567344128,"id_str":"818910970567344128","indices":[73,76]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954739527628726273,"id_str":"954739527628726273","name":"immigrants - for TRUMP 2020!","screen_name":"ElrealMartinG","location":"","description":"\u201cA - wise man can learn more from a foolish question than a fool can lean from - a wise answer\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":618,"friends_count":206,"listed_count":16,"created_at":"Sat - Jan 20 15:36:56 +0000 2018","favourites_count":16906,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/954756390421016576\/ZF8cJsXf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/954756390421016576\/ZF8cJsXf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:52:39 +0000 2020","id":1235231690211160064,"id_str":"1235231690211160064","text":"The - president has shown strong leadership by putting @VP Pence in charge of the - administration''s #coronavirus effor\u2026 https:\/\/t.co\/MvgFCzwdY0","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[97,109]}],"symbols":[],"user_mentions":[{"screen_name":"VP","name":"Vice - President Mike Pence","id":818910970567344128,"id_str":"818910970567344128","indices":[53,56]}],"urls":[{"url":"https:\/\/t.co\/MvgFCzwdY0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235231690211160064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1060487274,"id_str":"1060487274","name":"Rep. - Doug Collins","screen_name":"RepDougCollins","location":"Gainesville, Georgia","description":"Working - for Georgia''s 9th Congressional District. Pastor, attorney, military chaplain. - Ranking Member of @JudiciaryGOP.","url":"https:\/\/t.co\/6yvc1EfV0T","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6yvc1EfV0T","expanded_url":"http:\/\/dougcollins.house.gov\/","display_url":"dougcollins.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":357307,"friends_count":964,"listed_count":1822,"created_at":"Fri - Jan 04 13:43:55 +0000 2013","favourites_count":602,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":4558,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1024748216712146944\/Hc_eYsbv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1024748216712146944\/Hc_eYsbv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1060487274\/1583337773","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":968,"favorite_count":3480,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":968,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698340814848,"id_str":"1235246698340814848","text":"RT - @SenRickScott: I\u2019ve been saying this for a while now \u2013 Communist - China can\u2019t be trusted.\n\nTheir response to the #Coronavirus outbreak - ha\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[115,127]}],"symbols":[],"user_mentions":[{"screen_name":"SenRickScott","name":"Rick - Scott","id":131546062,"id_str":"131546062","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1163123622828838913,"id_str":"1163123622828838913","name":"Jojo - Chan \u2728\u2728","screen_name":"jojo__chan","location":"Hong Kong","description":"Hong - Kong flight attendant\/\u9999\u6e2f\u306e\u4eba\u3005\/ \ud64d\ucf69 \uc0ac\ub78c\ub4e4 - Say No To Sexual Violence \ud83d\udcaa\ud83d\udcaa #followbackhongkong Hiking - \ud83e\udd7e and cooking \ud83c\udf73 are parts of my life","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1804,"friends_count":2322,"listed_count":3,"created_at":"Sun - Aug 18 16:21:16 +0000 2019","favourites_count":26535,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12623,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225488979858010114\/VAsR9kSY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225488979858010114\/VAsR9kSY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1163123622828838913\/1575050850","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 20:45:56 +0000 2020","id":1234943112377704448,"id_str":"1234943112377704448","text":"I\u2019ve - been saying this for a while now \u2013 Communist China can\u2019t be trusted.\n\nTheir - response to the #Coronavirus outbr\u2026 https:\/\/t.co\/wDtI5Nkg0R","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[97,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wDtI5Nkg0R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234943112377704448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131546062,"id_str":"131546062","name":"Rick - Scott","screen_name":"SenRickScott","location":"The Sunshine State","description":"Senator - from the great state of Florida. Fighting for Florida families and to Make - Washington Work. #LetsGetToWork\nhttps:\/\/t.co\/t2TJJ5tras","url":"https:\/\/t.co\/sHIJdrhtn1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sHIJdrhtn1","expanded_url":"http:\/\/www.rickscott.senate.gov","display_url":"rickscott.senate.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/t2TJJ5tras","expanded_url":"http:\/\/instagram.com\/flsenrickscott","display_url":"instagram.com\/flsenrickscott","indices":[115,138]}]}},"protected":false,"followers_count":312646,"friends_count":2808,"listed_count":3669,"created_at":"Sat - Apr 10 16:03:04 +0000 2010","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":15955,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082776530235916289\/KVIfkvwW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082776530235916289\/KVIfkvwW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131546062\/1548253495","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1279,"favorite_count":2006,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1279,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698273935360,"id_str":"1235246698273935360","text":"RT - @BriejLaw: \u00a1Bienvenido a Colombia!\n\u2014\u00bfTiene coronavirus?\n\u2014No.\n\u2014\u00bfLo - jura? https:\/\/t.co\/cAXoT7D7sk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BriejLaw","name":"Briej_Law","id":1179155926273662978,"id_str":"1179155926273662978","indices":[3,12]}],"urls":[],"media":[{"id":1234879728214999041,"id_str":"1234879728214999041","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMskfSWAAEMqa7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMskfSWAAEMqa7.jpg","url":"https:\/\/t.co\/cAXoT7D7sk","display_url":"pic.twitter.com\/cAXoT7D7sk","expanded_url":"https:\/\/twitter.com\/BriejLaw\/status\/1234879732329611265\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":413,"resize":"fit"},"large":{"w":552,"h":413,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":552,"h":413,"resize":"fit"}},"source_status_id":1234879732329611265,"source_status_id_str":"1234879732329611265","source_user_id":1179155926273662978,"source_user_id_str":"1179155926273662978"}]},"extended_entities":{"media":[{"id":1234879728214999041,"id_str":"1234879728214999041","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMskfSWAAEMqa7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMskfSWAAEMqa7.jpg","url":"https:\/\/t.co\/cAXoT7D7sk","display_url":"pic.twitter.com\/cAXoT7D7sk","expanded_url":"https:\/\/twitter.com\/BriejLaw\/status\/1234879732329611265\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":413,"resize":"fit"},"large":{"w":552,"h":413,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":552,"h":413,"resize":"fit"}},"source_status_id":1234879732329611265,"source_status_id_str":"1234879732329611265","source_user_id":1179155926273662978,"source_user_id_str":"1179155926273662978"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":274035744,"id_str":"274035744","name":"Cristian - Espitia","screen_name":"Cristian_E13","location":"Bogot\u00e1","description":"\u2764\u26bd","url":"https:\/\/t.co\/r2g6U5zRND","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/r2g6U5zRND","expanded_url":"https:\/\/www.instagram.com\/espitia_cristian","display_url":"instagram.com\/espitia_cristi\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":166,"listed_count":0,"created_at":"Tue - Mar 29 16:10:38 +0000 2011","favourites_count":235,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":647,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050BBA","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\/1209883643029704704\/gjrHeCFG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209883643029704704\/gjrHeCFG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/274035744\/1563288898","profile_link_color":"0022FF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:34:05 +0000 2020","id":1234879732329611265,"id_str":"1234879732329611265","text":"\u00a1Bienvenido - a Colombia!\n\u2014\u00bfTiene coronavirus?\n\u2014No.\n\u2014\u00bfLo jura? - https:\/\/t.co\/cAXoT7D7sk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234879728214999041,"id_str":"1234879728214999041","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMskfSWAAEMqa7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMskfSWAAEMqa7.jpg","url":"https:\/\/t.co\/cAXoT7D7sk","display_url":"pic.twitter.com\/cAXoT7D7sk","expanded_url":"https:\/\/twitter.com\/BriejLaw\/status\/1234879732329611265\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":413,"resize":"fit"},"large":{"w":552,"h":413,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":552,"h":413,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234879728214999041,"id_str":"1234879728214999041","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMskfSWAAEMqa7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMskfSWAAEMqa7.jpg","url":"https:\/\/t.co\/cAXoT7D7sk","display_url":"pic.twitter.com\/cAXoT7D7sk","expanded_url":"https:\/\/twitter.com\/BriejLaw\/status\/1234879732329611265\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":413,"resize":"fit"},"large":{"w":552,"h":413,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":552,"h":413,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1179155926273662978,"id_str":"1179155926273662978","name":"Briej_Law","screen_name":"BriejLaw","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":72,"listed_count":0,"created_at":"Tue - Oct 01 22:07:43 +0000 2019","favourites_count":1122,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229792218149466118\/jsRZxeDB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229792218149466118\/jsRZxeDB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1179155926273662978\/1582040380","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":237,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":72,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698257174529,"id_str":"1235246698257174529","text":"Coronavirus - has made to my state I''m finna to die\ud83d\ude05\ud83d\ude05","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1221899776750424065,"id_str":"1221899776750424065","name":"\ud835\udc60\ud835\udc52\ud835\udc62\ud835\udc59\ud835\udc54\ud835\udc56\ud83c\udf3c - (sleeping)","screen_name":"spxseulgi","location":"\ud835\udc9a\ud835\udc90\ud835\udc96\ud835\udc93 - \ud835\udc89\ud835\udc86\ud835\udc82\ud835\udc93\ud835\udc95\uaa04","description":"\ud835\udc8a''\ud835\udc8e - \ud835\udc82 \ud835\udc94\ud835\udc90\ud835\udc87\ud835\udc95 \ud835\udc83\ud835\udc82\ud835\udc83\ud835\udc8a\ud835\udc86^_^\n\ud835\udc97\ud835\udc82\ud835\udc8f\ud835\udc95\ud835\udc86, - \ud835\udc8e\ud835\udc8a\ud835\udc8f\ud835\udc88\ud835\udc9a\ud835\udc96, - \ud835\udc84\ud835\udc89\ud835\udc82\ud835\udc8f\ud83d\udc9e\n\ud835\udc94\ud835\udc90\ud835\udc87\ud835\udc95 - \ud835\udc88\ud835\udc8a\ud835\udc93\ud835\udc8d\ud83c\udf38\n\ud835\udc8e\ud835\udc82\ud835\udc8c\ud835\udc86\ud835\udc96\ud835\udc91 - \ud835\udc82\ud835\udc93\ud835\udc95\ud835\udc8a\ud835\udc94\ud835\udc95\ud83d\udc85\ud83c\udffb\n\ud835\udc91\ud835\udc90\ud835\udc8d\ud835\udc9a\ud83d\udc97","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":226,"listed_count":1,"created_at":"Mon - Jan 27 20:56:42 +0000 2020","favourites_count":402,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231367982913400832\/GZGI2XG5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231367982913400832\/GZGI2XG5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1221899776750424065\/1582415978","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246698210816000,"id_str":"1235246698210816000","text":"RT - @narendramodi: Experts across the world have advised to reduce mass gatherings - to avoid the spread of COVID-19 Novel Coronavirus. Hence,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"narendramodi","name":"Narendra - Modi","id":18839785,"id_str":"18839785","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":893395122842292224,"id_str":"893395122842292224","name":"\u0930\u094b\u0939\u093f\u0924 - \u091a\u094c\u0930\u0938\u093f\u092f\u093e","screen_name":"imRoHiTHindu","location":"\u092d\u093e\u0935\u0928\u0925 - \u092e\u0928\u094d\u0926\u093f\u0930 \u0915\u0947 \u0928\u091c\u0926\u093f\u0915, - \u0938\u093f\u0935\u093e\u0928","description":"\u092d\u093e\u0930\u0924 \u092e\u093e\u0924\u093e - \u0915\u0940 \u091c\u092f ,\u0935\u0928\u094d\u0926\u0947\u092e\u093e\u0924\u0930\u092e - \u092e\u0947\u0930\u0947 \u0926\u093f\u0932 \u0915\u0940 \u0927\u095c\u0915\u0928 - \u0939\u0948\u0902\u0964","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":431,"listed_count":0,"created_at":"Fri - Aug 04 08:56:10 +0000 2017","favourites_count":12560,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230190207766605829\/u8mAAYYp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230190207766605829\/u8mAAYYp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/893395122842292224\/1501951205","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:03:14 +0000 2020","id":1235083359501430789,"id_str":"1235083359501430789","text":"Experts - across the world have advised to reduce mass gatherings to avoid the spread - of COVID-19 Novel Coronavirus.\u2026 https:\/\/t.co\/ItCl1V8NlZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ItCl1V8NlZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235083359501430789","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18839785,"id_str":"18839785","name":"Narendra - Modi","screen_name":"narendramodi","location":"India","description":"Prime - Minister of India","url":"https:\/\/t.co\/zzYhUUfq6i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zzYhUUfq6i","expanded_url":"http:\/\/www.narendramodi.in","display_url":"narendramodi.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53459875,"friends_count":2371,"listed_count":25198,"created_at":"Sat - Jan 10 17:18:56 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":25997,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F4EDD4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1134082549041393672\/QbihPzrL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134082549041393672\/QbihPzrL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18839785\/1559221352","profile_link_color":"4E7096","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D5DFED","profile_text_color":"233863","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18472,"favorite_count":101733,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18472,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697975963648,"id_str":"1235246697975963648","text":"RT - @cbctom: Awesome advice on how we help prevent the spread of #coronavirus.\n\n\"Wash - your hands like you''ve been chopping jalapenos and you\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[64,76]}],"symbols":[],"user_mentions":[{"screen_name":"cbctom","name":"Tom - Harrington","id":27931710,"id_str":"27931710","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320933946,"id_str":"2320933946","name":"Jen - W","screen_name":"jwieny","location":"","description":"A superhero trapped - in a moms body .... oh wait maybe its the other way around","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":366,"listed_count":1,"created_at":"Fri - Jan 31 15:06:33 +0000 2014","favourites_count":6007,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":671,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677916996089040896\/h81k7lO5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677916996089040896\/h81k7lO5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320933946\/1539184426","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:19:10 +0000 2020","id":1235238363839549440,"id_str":"1235238363839549440","text":"Awesome - advice on how we help prevent the spread of #coronavirus.\n\n\"Wash your hands - like you''ve been chopping jalap\u2026 https:\/\/t.co\/aeRfDLMeoQ","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[52,64]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aeRfDLMeoQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235238363839549440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27931710,"id_str":"27931710","name":"Tom - Harrington","screen_name":"cbctom","location":"Toronto, Ontario","description":"Host, - The World This Hour - CBC Radio News. Proud supporter of Kansas City Chiefs, - Liverpool FC, Toronto FC, KVNB, Steely Dan and Newfoundland & Labrador.","url":"https:\/\/t.co\/ABMr3qom9W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ABMr3qom9W","expanded_url":"http:\/\/cbcnews.ca","display_url":"cbcnews.ca","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18516,"friends_count":2219,"listed_count":527,"created_at":"Tue - Mar 31 18:36:13 +0000 2009","favourites_count":28064,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":69773,"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\/1224346337795330049\/rJLHoc7R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224346337795330049\/rJLHoc7R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27931710\/1559755892","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":73,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697904775176,"id_str":"1235246697904775176","text":"RT - @business: Coronavirus latest:\n- 93,017 infected globally; death toll rises - to 3,201\n- Tokyo Olympics could be postponed\n- Hong Kong fol\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"business","name":"Bloomberg","id":34713362,"id_str":"34713362","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1226280081162735617,"id_str":"1226280081162735617","name":"Clinical - 9x","screen_name":"9xClinical","location":"","description":"9.1 ST New Era - Esports VFL Frosinone","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":190,"listed_count":0,"created_at":"Sat - Feb 08 23:02:18 +0000 2020","favourites_count":401,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":197,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226552428817977350\/wiCu44wR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226552428817977350\/wiCu44wR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226280081162735617\/1581272961","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 11:19:49 +0000 2020","id":1235163030725459969,"id_str":"1235163030725459969","text":"Coronavirus - latest:\n- 93,017 infected globally; death toll rises to 3,201\n- Tokyo Olympics - could be postponed\n- Hon\u2026 https:\/\/t.co\/t5W6vIzHPK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/t5W6vIzHPK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235163030725459969","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34713362,"id_str":"34713362","name":"Bloomberg","screen_name":"business","location":"New - York and the World","description":"The first word in business news.","url":"http:\/\/t.co\/YFISwy1upH","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YFISwy1upH","expanded_url":"http:\/\/www.bloomberg.com","display_url":"bloomberg.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":5943448,"friends_count":1272,"listed_count":55073,"created_at":"Thu - Apr 23 20:05:17 +0000 2009","favourites_count":527,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":550254,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"101112","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\/991818020233404416\/alrBF_dr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/991818020233404416\/alrBF_dr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34713362\/1503349279","profile_link_color":"3B94D9","profile_sidebar_border_color":"DADADA","profile_sidebar_fill_color":"EEEEEE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3261,"favorite_count":6510,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3261,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697846099969,"id_str":"1235246697846099969","text":"RT - @aciprensa: Un obispo franc\u00e9s reflexiona sobre el coronavirus #COVID19 - y afirma que hay que temerle m\u00e1s a la \u201cepidemia del miedo\u201d. - V\u00eda @\u2026","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[65,73]}],"symbols":[],"user_mentions":[{"screen_name":"aciprensa","name":"ACI - Prensa","id":17828368,"id_str":"17828368","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":968149401838473216,"id_str":"968149401838473216","name":"Pan - de la palabra","screen_name":"PalabraPan","location":"Tlaquepaque, Jalisco","description":"Somos - una librer\u00eda cat\u00f3lica que busca llevar la palabra de Dios a trav\u00e9s - de los medios de hoy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":174,"listed_count":1,"created_at":"Mon - Feb 26 15:42:59 +0000 2018","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1250,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/968151012333690880\/uydLQAqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/968151012333690880\/uydLQAqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/968149401838473216\/1583423597","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:47:01 +0000 2020","id":1235245375168155648,"id_str":"1235245375168155648","text":"Un - obispo franc\u00e9s reflexiona sobre el coronavirus #COVID19 y afirma que - hay que temerle m\u00e1s a la \u201cepidemia del mied\u2026 https:\/\/t.co\/EV9uJqerJD","truncated":true,"entities":{"hashtags":[{"text":"COVID19","indices":[50,58]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EV9uJqerJD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245375168155648","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.aciprensa.com\" rel=\"nofollow\"\u003eACI Prensa\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17828368,"id_str":"17828368","name":"ACI - Prensa","screen_name":"aciprensa","location":"","description":"Somos un servicio - de @EWTNews | Ofrecemos noticias y recursos sobre la Iglesia Cat\u00f3lica - en todo el mundo","url":"https:\/\/t.co\/GRocKrF3Ud","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GRocKrF3Ud","expanded_url":"http:\/\/www.aciprensa.com","display_url":"aciprensa.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":321004,"friends_count":1073,"listed_count":1829,"created_at":"Wed - Dec 03 04:06:54 +0000 2008","favourites_count":1469,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":85601,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3C6EA3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/730413206737408000\/tLyYH-DW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/730413206737408000\/tLyYH-DW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17828368\/1520952559","profile_link_color":"2689AD","profile_sidebar_border_color":"A3C2D1","profile_sidebar_fill_color":"B8DEF0","profile_text_color":"858385","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":140,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":39,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697829330951,"id_str":"1235246697829330951","text":"Man - hospitalized in Arlington Heights with coronavirus had not traveled abroad - recently https:\/\/t.co\/jCyfnBlf7u","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jCyfnBlf7u","expanded_url":"https:\/\/www.chicagotribune.com\/coronavirus\/ct-coronavirus-travel-arlington-heights-man-20200304-hjn4gerir5ai7p4feglbbzqkfu-story.html","display_url":"chicagotribune.com\/coronavirus\/ct\u2026","indices":[88,111]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":244775645,"id_str":"244775645","name":"Gerald - R. Businaro","screen_name":"grbusinaro","location":"","description":"Pharmacist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":167,"friends_count":409,"listed_count":3,"created_at":"Sun - Jan 30 03:22:56 +0000 2011","favourites_count":1763,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1094789647773904896\/h0915nlc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094789647773904896\/h0915nlc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244775645\/1576543164","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697783189504,"id_str":"1235246697783189504","text":"@karenhunter - Could have been used for #coronavirus testing, treatment, and research.","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[38,50]}],"symbols":[],"user_mentions":[{"screen_name":"karenhunter","name":"Karen - Hunter","id":23103351,"id_str":"23103351","indices":[0,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1235227277740462080,"in_reply_to_status_id_str":"1235227277740462080","in_reply_to_user_id":23103351,"in_reply_to_user_id_str":"23103351","in_reply_to_screen_name":"karenhunter","user":{"id":1177651674564976640,"id_str":"1177651674564976640","name":"El - Capitan \ud83c\uddfa\ud83c\uddf8\ud83e\udde2\ud83d\udcc8","screen_name":"ElCapitan2020","location":"NYC - \/ CT \/ USA","description":"@mit Alum \/ #Capitalist \/ #NeverBernie \/ #Landlord - \/ #FinTech \/ #InsureTech \/ #STEM powered. Para Espa\u00f1ol diga\u300aespa\u00f1ol\u300b.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1141,"friends_count":1100,"listed_count":5,"created_at":"Fri - Sep 27 18:30:45 +0000 2019","favourites_count":8544,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5762,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1177657873742082048\/fg4LyO0r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1177657873742082048\/fg4LyO0r_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697762238464,"id_str":"1235246697762238464","text":"RT - @alejandroflor34: Pobre Talca wn, primero un conchadesumadre les roba el banco - y ahora esto. #coronavirus","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[96,108]}],"symbols":[],"user_mentions":[{"screen_name":"alejandroflor34","name":"alejandro - flores","id":332831543,"id_str":"332831543","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92261318,"id_str":"92261318","name":"Carola - Opazo","screen_name":"caritoopazo","location":"Concepci\u00f3n, Chile","description":"Mam\u00e1. - Ide\u00f3loga #La11delaGente #Cruzada #Donante #Garysta #Futbolera #Patachera - #Vialina #Veranista #Penquista #Ma\u00f1osa #Ir\u00f3nica #Emprendedora #DelOtroBando","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3252,"friends_count":4245,"listed_count":19,"created_at":"Tue - Nov 24 12:31:09 +0000 2009","favourites_count":14301,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26069,"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\/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\/1219636604534390790\/lCDBMHHX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219636604534390790\/lCDBMHHX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92261318\/1579049118","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:31:35 +0000 2020","id":1234984799741153280,"id_str":"1234984799741153280","text":"Pobre - Talca wn, primero un conchadesumadre les roba el banco y ahora esto. #coronavirus","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[75,87]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":332831543,"id_str":"332831543","name":"alejandro - flores","screen_name":"alejandroflor34","location":"el mundo","description":"ANTI-UDI - Gente sin un retorcido sentido del Humor mejor abst\u00e9ngase de pasar. Guitar - tocarra. Sigo de vuelta pero esperen un poco q twitter no me deja +de2000","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2576,"friends_count":4327,"listed_count":19,"created_at":"Sun - Jul 10 14:09:03 +0000 2011","favourites_count":57618,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":95032,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1610195398\/230524_1073006702986_1160714275_213148_8585_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1610195398\/230524_1073006702986_1160714275_213148_8585_n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/332831543\/1410044950","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":830,"favorite_count":2406,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":830,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697669746688,"id_str":"1235246697669746688","text":"Coronavirus: - Iran and South Korea deploy military | DW News https:\/\/t.co\/5tAVHIj3Kx - via @YouTube@","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5tAVHIj3Kx","expanded_url":"https:\/\/youtu.be\/qCteAaPABMM","display_url":"youtu.be\/qCteAaPABMM","indices":[60,83]}]},"metadata":{"iso_language_code":"tl","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1179681679817920512,"id_str":"1179681679817920512","name":"Tiranga - times","screen_name":"TimesTiranga","location":"India","description":"Tiranga - Times'' Official Account, one of the leading E-News Paper, providing Latest - News from around the world.\nE-mail us - connecttweettiranga@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":598,"friends_count":2732,"listed_count":2,"created_at":"Thu - Oct 03 08:57:39 +0000 2019","favourites_count":11919,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9738,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179749135991201793\/psOsxpYS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179749135991201793\/psOsxpYS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1179681679817920512\/1572869871","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"tl"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697653116928,"id_str":"1235246697653116928","text":"RT - @KALEDIAN: Cosas que quedan claras a causa de la puta alarma del Coronavirus:\n\n1- - Tenemos un sistema p\u00fablico que funciona DE PUTA MADRE.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KALEDIAN","name":"Mr. - Icelander \ud83d\udc80\ud83d\udd3b","id":138705871,"id_str":"138705871","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1060612510091485186,"id_str":"1060612510091485186","name":"Marta\ud83e\udda6","screen_name":"comemelafiga","location":"Val\u00e8ncia, - Espanya","description":"Qu\u00edmica UV \ud83d\udc69\ud83c\udffc\u200d\ud83d\udd2c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":148,"listed_count":0,"created_at":"Thu - Nov 08 19:18:22 +0000 2018","favourites_count":14765,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4319,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1177702473550696448\/ZkrV1tXL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1177702473550696448\/ZkrV1tXL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1060612510091485186\/1561535075","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 12:30:13 +0000 2020","id":1234818359272800257,"id_str":"1234818359272800257","text":"Cosas - que quedan claras a causa de la puta alarma del Coronavirus:\n\n1- Tenemos - un sistema p\u00fablico que funciona DE P\u2026 https:\/\/t.co\/XDVfJn1wKR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XDVfJn1wKR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234818359272800257","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138705871,"id_str":"138705871","name":"Mr. - Icelander \ud83d\udc80\ud83d\udd3b","screen_name":"KALEDIAN","location":"HELL\u00b4S - KITCHEN","description":"Las mentes cerradas suelen tener la boca muy abierta.","url":"https:\/\/t.co\/m0B0AYpWhJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m0B0AYpWhJ","expanded_url":"https:\/\/www.behance.net\/kaledian","display_url":"behance.net\/kaledian","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4053,"friends_count":963,"listed_count":98,"created_at":"Fri - Apr 30 10:06:48 +0000 2010","favourites_count":51974,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":172679,"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\/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\/1123545904647147520\/oVTswf81_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123545904647147520\/oVTswf81_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138705871\/1478536317","profile_link_color":"ABB8C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11589,"favorite_count":36601,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":11589,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697426624512,"id_str":"1235246697426624512","text":"RT - @LANow: Los Angeles County declares coronavirus emergency; 6 new cases https:\/\/t.co\/KkVODmOTmw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LANow","name":"L.A. - Times: L.A. Now","id":17036898,"id_str":"17036898","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/KkVODmOTmw","expanded_url":"https:\/\/www.latimes.com\/california\/story\/2020-03-04\/los-angeles-county-declares-coronavirus-emergency-6-new-cases","display_url":"latimes.com\/california\/sto\u2026","indices":[74,97]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2613899312,"id_str":"2613899312","name":"\u7f8e\u56fd\u4e4b\u97f3\u90d1\u88d5\u6587","screen_name":"VOAYUWEN","location":"Washington - DC","description":"Voice of America, China Branch, Host of Issues and Opinions - \n\n\u7f8e\u56fd\u4e4b\u97f3\u65f6\u4e8b\u5927\u5bb6\u8c08\u8282\u76ee\u4e3b\u6301","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47424,"friends_count":1346,"listed_count":156,"created_at":"Wed - Jul 09 17:14:55 +0000 2014","favourites_count":7426,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13783,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613733476345454592\/_j1O481i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613733476345454592\/_j1O481i_normal.jpg","profile_link_color":"2AA33C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:50:03 +0000 2020","id":1235246136128131073,"id_str":"1235246136128131073","text":"Los - Angeles County declares coronavirus emergency; 6 new cases https:\/\/t.co\/KkVODmOTmw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KkVODmOTmw","expanded_url":"https:\/\/www.latimes.com\/california\/story\/2020-03-04\/los-angeles-county-declares-coronavirus-emergency-6-new-cases","display_url":"latimes.com\/california\/sto\u2026","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":17036898,"id_str":"17036898","name":"L.A. - Times: L.A. Now","screen_name":"LANow","location":"Los Angeles, CA","description":"Southern - California -- this just in. News from L.A. and beyond from the Los Angeles - Times. See @latimes for more news.","url":"https:\/\/t.co\/6k4qSdf5J8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6k4qSdf5J8","expanded_url":"http:\/\/latimes.com\/now","display_url":"latimes.com\/now","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":520543,"friends_count":601,"listed_count":4092,"created_at":"Wed - Oct 29 05:55:55 +0000 2008","favourites_count":452,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":111989,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1043218383141928961\/i7P3LHYw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1043218383141928961\/i7P3LHYw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17036898\/1520220820","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E8E8E8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":19,"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697388707845,"id_str":"1235246697388707845","text":"RT - @CMichaelGibson: Chinese scientists found that the coronavirus causing COVID-19 - has two mutations, S-cov and a more dangerous L-cov, tha\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CMichaelGibson","name":"C. - Michael Gibson MD","id":879161563,"id_str":"879161563","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182964456,"id_str":"182964456","name":"Fadua - Besil Eguia","screen_name":"Faduabe","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":214,"friends_count":886,"listed_count":5,"created_at":"Wed - Aug 25 20:48:33 +0000 2010","favourites_count":16192,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189188097268838401\/eu89Zgvo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189188097268838401\/eu89Zgvo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:36:32 +0000 2020","id":1235242735390650368,"id_str":"1235242735390650368","text":"Chinese - scientists found that the coronavirus causing COVID-19 has two mutations, - S-cov and a more dangerous L-cov,\u2026 https:\/\/t.co\/YCvz0KLPcy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YCvz0KLPcy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242735390650368","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":879161563,"id_str":"879161563","name":"C. - Michael Gibson MD","screen_name":"CMichaelGibson","location":"Harvard Professor - & MD","description":"Non-Profit Founder\/Leader | \u2764\ufe0f Doc | Artist - | Scientist | Educator | Med News Anchor https:\/\/t.co\/LDrNxgwhA4 | RT \u2260 - endorse | Disclaimer here: https:\/\/t.co\/2jtJQZQU0H","url":"https:\/\/t.co\/Zb5goQq7V7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Zb5goQq7V7","expanded_url":"http:\/\/www.linkedin.com\/in\/cmichaelgibson","display_url":"linkedin.com\/in\/cmichaelgib\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/LDrNxgwhA4","expanded_url":"http:\/\/wikidoc.org","display_url":"wikidoc.org","indices":[85,108]},{"url":"https:\/\/t.co\/2jtJQZQU0H","expanded_url":"http:\/\/bit.ly\/1mewZOF","display_url":"bit.ly\/1mewZOF","indices":[143,166]}]}},"protected":false,"followers_count":441784,"friends_count":381209,"listed_count":2494,"created_at":"Sun - Oct 14 02:33:11 +0000 2012","favourites_count":41495,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":61768,"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\/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\/912404538543439872\/0qKS49pP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912404538543439872\/0qKS49pP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/879161563\/1506373914","profile_link_color":"009999","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":140,"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"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697367982082,"id_str":"1235246697367982082","text":"RT - @juniordrblog: Everything we know about #coronavirus #Covid19 so far. \nA - thread by a doctor. \/thread https:\/\/t.co\/6qc6yrX4dg","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[43,55]},{"text":"Covid19","indices":[56,64]}],"symbols":[],"user_mentions":[{"screen_name":"juniordrblog","name":"Dr - Dominic Pimenta","id":2659372678,"id_str":"2659372678","indices":[3,16]}],"urls":[],"media":[{"id":1235126738893537281,"id_str":"1235126738893537281","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQNOZxWAAEI71a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQNOZxWAAEI71a.jpg","url":"https:\/\/t.co\/6qc6yrX4dg","display_url":"pic.twitter.com\/6qc6yrX4dg","expanded_url":"https:\/\/twitter.com\/juniordrblog\/status\/1235127363341553667\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1365,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1235127363341553667,"source_status_id_str":"1235127363341553667","source_user_id":2659372678,"source_user_id_str":"2659372678"}]},"extended_entities":{"media":[{"id":1235126738893537281,"id_str":"1235126738893537281","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQNOZxWAAEI71a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQNOZxWAAEI71a.jpg","url":"https:\/\/t.co\/6qc6yrX4dg","display_url":"pic.twitter.com\/6qc6yrX4dg","expanded_url":"https:\/\/twitter.com\/juniordrblog\/status\/1235127363341553667\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1365,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1235127363341553667,"source_status_id_str":"1235127363341553667","source_user_id":2659372678,"source_user_id_str":"2659372678"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29064959,"id_str":"29064959","name":"Dr - Sidra H","screen_name":"Sidra_h92","location":"London","description":"\ud83d\udc69\ud83c\udffb\u200d\u2695\ufe0f@jesuscollegecam - Cambridge & UCL alumna. Core medical trainee. Tweeting my personal opinions - on medicine, politics and what I just watched on TV.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":502,"friends_count":619,"listed_count":7,"created_at":"Sun - Apr 05 21:11:18 +0000 2009","favourites_count":1838,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10256,"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\/1114306877461078016\/ga29Ikvu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114306877461078016\/ga29Ikvu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29064959\/1370646599","profile_link_color":"E81C4F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 08:58:05 +0000 2020","id":1235127363341553667,"id_str":"1235127363341553667","text":"Everything - we know about #coronavirus #Covid19 so far. \nA thread by a doctor. \/thread - https:\/\/t.co\/6qc6yrX4dg","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[25,37]},{"text":"Covid19","indices":[38,46]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235126738893537281,"id_str":"1235126738893537281","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQNOZxWAAEI71a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQNOZxWAAEI71a.jpg","url":"https:\/\/t.co\/6qc6yrX4dg","display_url":"pic.twitter.com\/6qc6yrX4dg","expanded_url":"https:\/\/twitter.com\/juniordrblog\/status\/1235127363341553667\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1365,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235126738893537281,"id_str":"1235126738893537281","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQNOZxWAAEI71a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQNOZxWAAEI71a.jpg","url":"https:\/\/t.co\/6qc6yrX4dg","display_url":"pic.twitter.com\/6qc6yrX4dg","expanded_url":"https:\/\/twitter.com\/juniordrblog\/status\/1235127363341553667\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1365,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2659372678,"id_str":"2659372678","name":"Dr - Dominic Pimenta","screen_name":"juniordrblog","location":"London","description":"Cardiology - Registrar. Writer. Independent\/HuffingtonPost.\n\nBuy my new book: \n\nP - A R T S \n\nhere: https:\/\/t.co\/f5Ikf6j9h6?amp=1\n\nAll views my own. \ud83d\udc68\ud83c\udffd\u200d\ud83d\udd2c\ud83c\uddec\ud83c\udde7","url":"https:\/\/t.co\/Hdj9ZM6j25","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Hdj9ZM6j25","expanded_url":null,"indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19739,"friends_count":821,"listed_count":140,"created_at":"Tue - Jul 01 09:02:36 +0000 2014","favourites_count":13842,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28579,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1200020816878067713\/Zpqbc75V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1200020816878067713\/Zpqbc75V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2659372678\/1581693311","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1213,"favorite_count":1693,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1213,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697338396673,"id_str":"1235246697338396673","text":"RT - @el_pais: \u00daLTIMA HORA | Italia cierra todos los colegios y universidades - del pa\u00eds para intentar atajar la propagaci\u00f3n del coronavirus ht\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"el_pais","name":"EL - PA\u00cdS","id":7996082,"id_str":"7996082","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64817497,"id_str":"64817497","name":"Viviana - Barrera","screen_name":"vivibarrera","location":"","description":"Odontopediatra - SS Araucan\u00eda Sur, estudiante de dise\u00f1o gr\u00e1fico digital \u270c\ud83c\udffb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1072,"friends_count":2329,"listed_count":11,"created_at":"Tue - Aug 11 20:39:36 +0000 2009","favourites_count":808,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7741,"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\/617643284840738817\/GaW4cKG8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617643284840738817\/GaW4cKG8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64817497\/1573766643","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:14:35 +0000 2020","id":1235191914695143425,"id_str":"1235191914695143425","text":"\u00daLTIMA - HORA | Italia cierra todos los colegios y universidades del pa\u00eds para - intentar atajar la propagaci\u00f3n del cor\u2026 https:\/\/t.co\/C3zaUncKYb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C3zaUncKYb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235191914695143425","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":7996082,"id_str":"7996082","name":"EL - PA\u00cdS","screen_name":"el_pais","location":"Madrid","description":"Noticias, - reportajes, opini\u00f3n, an\u00e1lisis y la \u00faltima hora de la informaci\u00f3n - m\u00e1s relevante. Con nuestra mirada puesta en Espa\u00f1a, Europa y Am\u00e9rica","url":"https:\/\/t.co\/0o6oj1LRF2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0o6oj1LRF2","expanded_url":"http:\/\/www.elpais.com","display_url":"elpais.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7295108,"friends_count":761,"listed_count":57206,"created_at":"Mon - Aug 06 16:20:09 +0000 2007","favourites_count":1706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":542979,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/815456059322036224\/o_RQNEOh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/815456059322036224\/o_RQNEOh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7996082\/1450772084","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F1F4F9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1699,"favorite_count":1947,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":1699,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697313447936,"id_str":"1235246697313447936","text":"RT - @RodSquare_: marcelo tinelli tiene coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RodSquare_","name":"rodsquare","id":958559937721978880,"id_str":"958559937721978880","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1233252804967510016,"id_str":"1233252804967510016","name":"ale","screen_name":"aleinsf","location":"","description":"ndea","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":72,"listed_count":0,"created_at":"Fri - Feb 28 04:49:32 +0000 2020","favourites_count":232,"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\/1235359073199108096\/jN8ruGkC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235359073199108096\/jN8ruGkC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:06:18 +0000 2020","id":1235235126302388224,"id_str":"1235235126302388224","text":"marcelo - tinelli tiene coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":958559937721978880,"id_str":"958559937721978880","name":"rodsquare","screen_name":"RodSquare_","location":"oklahoma","description":"hago - videos en mi casa \ud83d\udcfchttps:\/\/t.co\/9N3RlShQXk","url":"https:\/\/t.co\/mKfUV640LK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mKfUV640LK","expanded_url":"https:\/\/www.youtube.com\/rodsquare","display_url":"youtube.com\/rodsquare","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9N3RlShQXk","expanded_url":"http:\/\/youtube.com\/rodsquare","display_url":"youtube.com\/rodsquare","indices":[24,47]}]}},"protected":false,"followers_count":180552,"friends_count":389,"listed_count":74,"created_at":"Wed - Jan 31 04:37:53 +0000 2018","favourites_count":10810,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6097,"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\/1235741460038905857\/UIcimKgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235741460038905857\/UIcimKgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/958559937721978880\/1581964154","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":300,"favorite_count":3643,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":300,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697288282113,"id_str":"1235246697288282113","text":"RT - @andyfedeok: Par\u00e1 prevenir el Coronavirus recuerden:\n1. Lavarse bien - las manos varias veces al d\u00eda.\n2. No toser ni estornudar en la mano\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"andyfedeok","name":"\u0e04\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49 - \u0336F\u0336\u00a3\u0336D\u0336\u00a3\u0336T\u0305\u0313\u0369\u033e\u033d\u030a\u0357\u0331\u0318\u031c\u0319\u0316\u033a\u0316","id":139242352,"id_str":"139242352","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1109106656456163333,"id_str":"1109106656456163333","name":"carla","screen_name":"carliigioiosa5","location":"","description":"la - peor lucha es la que no se hace \ud83d\udc9a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":102,"listed_count":0,"created_at":"Fri - Mar 22 14:56:47 +0000 2019","favourites_count":10703,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6133,"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\/1235114659453300736\/UkdrNbln_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235114659453300736\/UkdrNbln_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1109106656456163333\/1583309255","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:28:14 +0000 2020","id":1234908458492866561,"id_str":"1234908458492866561","text":"Par\u00e1 - prevenir el Coronavirus recuerden:\n1. Lavarse bien las manos varias veces - al d\u00eda.\n2. No toser ni estornudar en\u2026 https:\/\/t.co\/XxwHKnSM6q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XxwHKnSM6q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234908458492866561","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":139242352,"id_str":"139242352","name":"\u0e04\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49 - \u0336F\u0336\u00a3\u0336D\u0336\u00a3\u0336T\u0305\u0313\u0369\u033e\u033d\u030a\u0357\u0331\u0318\u031c\u0319\u0316\u033a\u0316","screen_name":"andyfedeok","location":"River - de Gallardo ","description":"\u0e0f\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e04\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\u0e49\nNo - todo lo que se escribe es cierto. \nLa salida est\u00e1 al fondo.\nNo respondo - MDs. #\u20ddVolvimos","url":"https:\/\/t.co\/oeHGIn7Ofz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oeHGIn7Ofz","expanded_url":"https:\/\/twitter.com\/settings\/profile","display_url":"twitter.com\/settings\/profi\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20086,"friends_count":16887,"listed_count":32,"created_at":"Sun - May 02 01:04:27 +0000 2010","favourites_count":77211,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":65173,"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\/1235003219815927808\/arARQB5Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235003219815927808\/arARQB5Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139242352\/1583282688","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6745,"favorite_count":28444,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":6745,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697120509952,"id_str":"1235246697120509952","text":"RT - @molerogascon: J\u00fcrgen Klopp sobre el coronavirus:\n\u201cNo entiendo - ni me gusta que simplemente por el hecho de ser famoso mi opini\u00f3n sea - rel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"molerogascon","name":"Pep - Molero","id":213982456,"id_str":"213982456","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146890027,"id_str":"146890027","name":"Kairo - Armengol","screen_name":"kairoarmengol","location":"M\u00e9xico","description":"Business - Developer at @SymbioticsNews\nContributing to the #LatAm region development - through #ImpactInvestment \u300aLIBERTAD\u300b\u00bfQu\u00e9 sos Nicaragua - para dolerme tanto?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":866,"friends_count":863,"listed_count":8,"created_at":"Sat - May 22 16:19:21 +0000 2010","favourites_count":911,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8942,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222170920980078597\/8zRBpL4N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222170920980078597\/8zRBpL4N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146890027\/1531980996","profile_link_color":"038543","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:36:57 +0000 2020","id":1234986149283631105,"id_str":"1234986149283631105","text":"J\u00fcrgen - Klopp sobre el coronavirus:\n\u201cNo entiendo ni me gusta que simplemente - por el hecho de ser famoso mi opini\u00f3n s\u2026 https:\/\/t.co\/xFVIWkrBWR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xFVIWkrBWR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234986149283631105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33979,"favorite_count":118199,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":33979,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697057378304,"id_str":"1235246697057378304","text":"RT - @ABC7: #BREAKING A second case of the coronavirus has been confirmed in Los - Angeles County https:\/\/t.co\/AApS3CTyiA","truncated":false,"entities":{"hashtags":[{"text":"BREAKING","indices":[10,19]}],"symbols":[],"user_mentions":[{"screen_name":"ABC7","name":"ABC7 - Eyewitness News","id":16374678,"id_str":"16374678","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/AApS3CTyiA","expanded_url":"https:\/\/abc7.la\/2VKq86y","display_url":"abc7.la\/2VKq86y","indices":[94,117]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1093240093,"id_str":"1093240093","name":"Fake - Alyssa \u2618\ufe0f","screen_name":"alyssuhh1","location":"","description":"it - is what it is","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":653,"friends_count":482,"listed_count":9,"created_at":"Tue - Jan 15 20:59:51 +0000 2013","favourites_count":18665,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":59601,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1231455609494458368\/xxWSm0GA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231455609494458368\/xxWSm0GA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1093240093\/1447357746","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:27:43 +0000 2020","id":1235089522108465152,"id_str":"1235089522108465152","text":"#BREAKING - A second case of the coronavirus has been confirmed in Los Angeles County - https:\/\/t.co\/AApS3CTyiA","truncated":false,"entities":{"hashtags":[{"text":"BREAKING","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AApS3CTyiA","expanded_url":"https:\/\/abc7.la\/2VKq86y","display_url":"abc7.la\/2VKq86y","indices":[84,107]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":16374678,"id_str":"16374678","name":"ABC7 - Eyewitness News","screen_name":"ABC7","location":"","description":"Your #1 - breaking news source in Southern California. When you witness news, share - it with #abc7eyewitness.","url":"https:\/\/t.co\/wA2krgJd0y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wA2krgJd0y","expanded_url":"http:\/\/abc7.com","display_url":"abc7.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1113036,"friends_count":461,"listed_count":6647,"created_at":"Sat - Sep 20 04:22:30 +0000 2008","favourites_count":3658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":212637,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"044CC1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/869214714143809536\/Fy8fI_7m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/869214714143809536\/Fy8fI_7m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16374678\/1502745997","profile_link_color":"044CC1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DEDEDE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":375,"favorite_count":517,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":375,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:17 +0000 2020","id":1235246697045020677,"id_str":"1235246697045020677","text":"RT - @OldhamCouncil: A case of coronavirus has been confirmed in Oldham. \n\ud83d\udd35 - Risk to the public in Oldham remains low\n\ud83d\udd35 Robust plans are in - pl\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OldhamCouncil","name":"Oldham - Council","id":114765763,"id_str":"114765763","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95998198,"id_str":"95998198","name":"Kim - Wilman","screen_name":"kwilman","location":"","description":"Standing up for - love, peace, tolerance and humanity and democracy!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":813,"friends_count":2388,"listed_count":18,"created_at":"Thu - Dec 10 22:25:05 +0000 2009","favourites_count":61973,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29773,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1118824988809629697\/32hBxQWo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118824988809629697\/32hBxQWo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95998198\/1449102460","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:20:50 +0000 2020","id":1235238785304190982,"id_str":"1235238785304190982","text":"A - case of coronavirus has been confirmed in Oldham. \n\ud83d\udd35 Risk to the - public in Oldham remains low\n\ud83d\udd35 Robust plans are\u2026 https:\/\/t.co\/lLLNGboYiq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lLLNGboYiq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235238785304190982","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114765763,"id_str":"114765763","name":"Oldham - Council","screen_name":"OldhamCouncil","location":"Oldham","description":"Official - account of Oldham Council. Providing you with the latest service news, events - and alerts from across the borough. Feed monitored Mon\u2013Fri, 9am\u20135pm.","url":"https:\/\/t.co\/pcY8CKOgZT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pcY8CKOgZT","expanded_url":"http:\/\/www.oldham.gov.uk","display_url":"oldham.gov.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":23307,"friends_count":1183,"listed_count":314,"created_at":"Tue - Feb 16 14:55:40 +0000 2010","favourites_count":2846,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":71998,"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\/1196344876029403136\/lTCriVPv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196344876029403136\/lTCriVPv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/114765763\/1582553740","profile_link_color":"00B5BE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":94,"favorite_count":68,"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696973709312,"id_str":"1235246696973709312","text":"RT - @MilagrosDwarf: Tengo m\u00e1s posibilidades de morirme por ser mujer que - por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MilagrosDwarf","name":"Milagros.","id":976869942,"id_str":"976869942","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":921688660436770816,"id_str":"921688660436770816","name":"Julieta - \ud83c\udff3\ufe0f\u200d\ud83c\udf08\u26bd\ufe0f\ud83c\udf3b","screen_name":"julieta_toro29","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":217,"listed_count":0,"created_at":"Sat - Oct 21 10:44:35 +0000 2017","favourites_count":12002,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230530251660365824\/52oh5oY__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230530251660365824\/52oh5oY__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:16:11 +0000 2020","id":1234905423574118401,"id_str":"1234905423574118401","text":"Tengo - m\u00e1s posibilidades de morirme por ser mujer que por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":976869942,"id_str":"976869942","name":"Milagros.","screen_name":"MilagrosDwarf","location":"Por - el oeste de baires.","description":"Para verme feliz buscame en alg\u00fan - recital. Trabajo Social (UNLaM).","url":"https:\/\/t.co\/XccD9S7kPe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XccD9S7kPe","expanded_url":"http:\/\/instagram.com\/Milagrosdwarf","display_url":"instagram.com\/Milagrosdwarf","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11021,"friends_count":3230,"listed_count":199,"created_at":"Wed - Nov 28 20:13:25 +0000 2012","favourites_count":18088,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"070A09","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\/882409103896846337\/W3k0lJR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882409103896846337\/W3k0lJR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/976869942\/1471396693","profile_link_color":"F5ABB5","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54481,"favorite_count":116911,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":54481,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696948469766,"id_str":"1235246696948469766","text":"RT - @Visitante78: Si cada 23 hs se muriera un argentin@ por coronavirus estariamos - todos en p\u00e1nico. Pero como son femicidios nadie se escand\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Visitante78","name":"#Volvimos\u270c\ud83c\udffe","id":1652676409,"id_str":"1652676409","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941301392,"id_str":"941301392","name":"Luc\u00eda","screen_name":"LuciaNogueiras","location":"Galicia, - Spain","description":"no esperes mucho de mi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":118,"listed_count":0,"created_at":"Sun - Nov 11 13:26:57 +0000 2012","favourites_count":18718,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7529,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A127A1","profile_background_image_url":"http:\/\/abs.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\/875651461476003840\/c_foofYO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875651461476003840\/c_foofYO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941301392\/1490532095","profile_link_color":"9B35AB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 20:29:55 +0000 2020","id":1234576692682903559,"id_str":"1234576692682903559","text":"Si - cada 23 hs se muriera un argentin@ por coronavirus estariamos todos en p\u00e1nico. - Pero como son femicidios nadie se\u2026 https:\/\/t.co\/u4MkfxleLx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u4MkfxleLx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234576692682903559","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1652676409,"id_str":"1652676409","name":"#Volvimos\u270c\ud83c\udffe","screen_name":"Visitante78","location":"Patagonia, - Argentina ","description":"En barrio de ricachones, sin armas ni rencores, - es solo plata y no amores. \/\/Sub\u00ed, despu\u00e9s te explico.\\\\ La - patria es el otro\/\/","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7039,"friends_count":6871,"listed_count":8,"created_at":"Wed - Aug 07 10:49:55 +0000 2013","favourites_count":100651,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65053,"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\/1211059959280078849\/zniLRpBe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211059959280078849\/zniLRpBe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652676409\/1581028846","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18370,"favorite_count":29260,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":18370,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696931758081,"id_str":"1235246696931758081","text":"RT - @el_pais: \u00daLTIMA HORA | Italia cierra todos los colegios y universidades - del pa\u00eds para intentar atajar la propagaci\u00f3n del coronavirus ht\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"el_pais","name":"EL - PA\u00cdS","id":7996082,"id_str":"7996082","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1548759504,"id_str":"1548759504","name":"Dani","screen_name":"zPOLVORAz","location":"Baza, - Espa\u00f1a","description":"Breaking Bad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":241,"listed_count":0,"created_at":"Wed - Jun 26 18:11:31 +0000 2013","favourites_count":10055,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8690,"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\/1195695207657988096\/2HAv57IA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195695207657988096\/2HAv57IA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1548759504\/1543961321","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:14:35 +0000 2020","id":1235191914695143425,"id_str":"1235191914695143425","text":"\u00daLTIMA - HORA | Italia cierra todos los colegios y universidades del pa\u00eds para - intentar atajar la propagaci\u00f3n del cor\u2026 https:\/\/t.co\/C3zaUncKYb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C3zaUncKYb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235191914695143425","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":7996082,"id_str":"7996082","name":"EL - PA\u00cdS","screen_name":"el_pais","location":"Madrid","description":"Noticias, - reportajes, opini\u00f3n, an\u00e1lisis y la \u00faltima hora de la informaci\u00f3n - m\u00e1s relevante. Con nuestra mirada puesta en Espa\u00f1a, Europa y Am\u00e9rica","url":"https:\/\/t.co\/0o6oj1LRF2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0o6oj1LRF2","expanded_url":"http:\/\/www.elpais.com","display_url":"elpais.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7295108,"friends_count":761,"listed_count":57206,"created_at":"Mon - Aug 06 16:20:09 +0000 2007","favourites_count":1706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":542979,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/815456059322036224\/o_RQNEOh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/815456059322036224\/o_RQNEOh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7996082\/1450772084","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F1F4F9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1699,"favorite_count":1947,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":1699,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696856248320,"id_str":"1235246696856248320","text":"RT - @MilagrosDwarf: Tengo m\u00e1s posibilidades de morirme por ser mujer que - por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MilagrosDwarf","name":"Milagros.","id":976869942,"id_str":"976869942","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":977532934092705793,"id_str":"977532934092705793","name":"\ud83c\udf38","screen_name":"AgusAri96980619","location":"Rio - Segundo ","description":"De risa floja, lagrima f\u00e1cil y un desequilibrio - emocional hermoso \ud83c\udf3c\n\u202219 year old \ud83d\ude4e\ud83c\udffd\u200d\u2640\ufe0f\n\u2022Capricorn - \u2651","url":"https:\/\/t.co\/eFWvjRQ1D4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eFWvjRQ1D4","expanded_url":"https:\/\/www.facebook.com\/agus.arias.336","display_url":"facebook.com\/agus.arias.336","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":173,"friends_count":171,"listed_count":0,"created_at":"Sat - Mar 24 13:09:47 +0000 2018","favourites_count":90,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235592826378911745\/ihQljZmf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235592826378911745\/ihQljZmf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/977532934092705793\/1582372242","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:16:11 +0000 2020","id":1234905423574118401,"id_str":"1234905423574118401","text":"Tengo - m\u00e1s posibilidades de morirme por ser mujer que por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":976869942,"id_str":"976869942","name":"Milagros.","screen_name":"MilagrosDwarf","location":"Por - el oeste de baires.","description":"Para verme feliz buscame en alg\u00fan - recital. Trabajo Social (UNLaM).","url":"https:\/\/t.co\/XccD9S7kPe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XccD9S7kPe","expanded_url":"http:\/\/instagram.com\/Milagrosdwarf","display_url":"instagram.com\/Milagrosdwarf","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11021,"friends_count":3230,"listed_count":199,"created_at":"Wed - Nov 28 20:13:25 +0000 2012","favourites_count":18088,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"070A09","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\/882409103896846337\/W3k0lJR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882409103896846337\/W3k0lJR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/976869942\/1471396693","profile_link_color":"F5ABB5","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54481,"favorite_count":116911,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":54481,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696793333761,"id_str":"1235246696793333761","text":"RT - @AdrianGonzalezF: Solo falta el portero y ya tenemos Coronavirus FC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdrianGonzalezF","name":"Adri\u00e1n - Gonz\u00e1lez","id":211559577,"id_str":"211559577","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3037882361,"id_str":"3037882361","name":"Manuel - Garcia","screen_name":"manuugarciaa04","location":"","description":"19.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":105,"listed_count":0,"created_at":"Sat - Feb 14 23:28:46 +0000 2015","favourites_count":3659,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9519,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/937471682108907526\/MY9R_N62_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/937471682108907526\/MY9R_N62_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3037882361\/1423957287","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:32:35 +0000 2020","id":1235241739369304065,"id_str":"1235241739369304065","text":"Solo - falta el portero y ya tenemos Coronavirus FC https:\/\/t.co\/ChhrLFudn3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ChhrLFudn3","expanded_url":"https:\/\/twitter.com\/elcomerciocom\/status\/1235239024895369217","display_url":"twitter.com\/elcomerciocom\/\u2026","indices":[50,73]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211559577,"id_str":"211559577","name":"Adri\u00e1n - Gonz\u00e1lez","screen_name":"AdrianGonzalezF","location":"Guayaquil, Ecuador","description":"Datos - curiosos del g\u00e9nero urbano en @EnciclopediaUrb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":858,"friends_count":715,"listed_count":2,"created_at":"Wed - Nov 03 16:12:01 +0000 2010","favourites_count":7536,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15476,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1178078166134542342\/lDntg0A3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1178078166134542342\/lDntg0A3_normal.jpg","profile_link_color":"1A82BA","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"171616","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235239024895369217,"quoted_status_id_str":"1235239024895369217","quoted_status":{"created_at":"Wed - Mar 04 16:21:47 +0000 2020","id":1235239024895369217,"id_str":"1235239024895369217","text":"#ATENCI\u00d3N - | Con el anuncio del Ministerio de Salud de tres nuevos casos de #COVID19ec, - Ecuador suma 10 contagios po\u2026 https:\/\/t.co\/YHf98xNS9C","truncated":true,"entities":{"hashtags":[{"text":"ATENCI\u00d3N","indices":[0,9]},{"text":"COVID19ec","indices":[75,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YHf98xNS9C","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235239024895369217","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":14333756,"id_str":"14333756","name":"El - Comercio","screen_name":"elcomerciocom","location":"Ecuador","description":"El - Diario informativo m\u00e1s comprometido con la gente de Ecuador.","url":"https:\/\/t.co\/ybctD4cRAO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ybctD4cRAO","expanded_url":"http:\/\/www.elcomercio.com","display_url":"elcomercio.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1574182,"friends_count":4379,"listed_count":3929,"created_at":"Tue - Apr 08 16:32:05 +0000 2008","favourites_count":1357,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":257100,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/984857614247919616\/V7z-khzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/984857614247919616\/V7z-khzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14333756\/1546465954","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":142,"favorite_count":144,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":20,"favorite_count":60,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1235239024895369217,"quoted_status_id_str":"1235239024895369217","retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696793284609,"id_str":"1235246696793284609","text":"RT - @Corriere: Dalla Puglia un appello solidale su Facebook: \u00abVeneti e lombardi, - vi aspettiamo a bracc... https:\/\/t.co\/18wjXRaPWz https:\/\/t.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Corriere","name":"Corriere - della Sera","id":395218906,"id_str":"395218906","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/18wjXRaPWz","expanded_url":"http:\/\/csera.it\/b62f5bdaeb","display_url":"csera.it\/b62f5bdaeb","indices":[105,128]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425242488,"id_str":"425242488","name":"Veronica - Riri Besana","screen_name":"veryhbesana","location":"Monza","description":"Mi - piace chiacchierare, ma con un p\u00f2 di musica tra le frasi. Cos\u00ec ho - trovato nella Radio il mio posto nel mondo \ud83c\udfa7 Radio Panda 96.3","url":"https:\/\/t.co\/EZMYUvkQxr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EZMYUvkQxr","expanded_url":"http:\/\/it.linkedin.com\/in\/verobesana","display_url":"it.linkedin.com\/in\/verobesana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":582,"listed_count":2,"created_at":"Wed - Nov 30 19:08:52 +0000 2011","favourites_count":2057,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":879,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1230219141593935874\/oTwPfPDX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230219141593935874\/oTwPfPDX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425242488\/1581027022","profile_link_color":"91D2FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:31:46 +0000 2020","id":1235241536436260864,"id_str":"1235241536436260864","text":"Dalla - Puglia un appello solidale su Facebook: \u00abVeneti e lombardi, vi aspettiamo - a bracc... https:\/\/t.co\/18wjXRaPWz https:\/\/t.co\/OXgAQYC187","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/18wjXRaPWz","expanded_url":"http:\/\/csera.it\/b62f5bdaeb","display_url":"csera.it\/b62f5bdaeb","indices":[91,114]}],"media":[{"id":1235241535383515136,"id_str":"1235241535383515136","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR1ocBXsAAsNeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR1ocBXsAAsNeu.jpg","url":"https:\/\/t.co\/OXgAQYC187","display_url":"pic.twitter.com\/OXgAQYC187","expanded_url":"https:\/\/twitter.com\/Corriere\/status\/1235241536436260864\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":656,"h":492,"resize":"fit"},"small":{"w":656,"h":492,"resize":"fit"},"medium":{"w":656,"h":492,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235241535383515136,"id_str":"1235241535383515136","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR1ocBXsAAsNeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR1ocBXsAAsNeu.jpg","url":"https:\/\/t.co\/OXgAQYC187","display_url":"pic.twitter.com\/OXgAQYC187","expanded_url":"https:\/\/twitter.com\/Corriere\/status\/1235241536436260864\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":656,"h":492,"resize":"fit"},"small":{"w":656,"h":492,"resize":"fit"},"medium":{"w":656,"h":492,"resize":"fit"}}}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.corriere.it\" rel=\"nofollow\"\u003eTweetCorriereit\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":395218906,"id_str":"395218906","name":"Corriere - della Sera","screen_name":"Corriere","location":"Milano","description":"L''informazione - in 280 caratteri, 7 giorni su 7. Anche su Instagram \ud83d\udc49 : https:\/\/t.co\/DAPcdOsTiF","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/DAPcdOsTiF","expanded_url":"https:\/\/www.instagram.com\/corriere\/","display_url":"instagram.com\/corriere\/","indices":[71,94]}]}},"protected":false,"followers_count":2197969,"friends_count":248,"listed_count":7883,"created_at":"Fri - Oct 21 10:00:47 +0000 2011","favourites_count":5452,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":377741,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/844239421696368640\/8du2P_fp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/844239421696368640\/8du2P_fp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/395218906\/1569232527","profile_link_color":"4F48B0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"25262E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":183,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696780779520,"id_str":"1235246696780779520","text":"RT - @miskeencore: summer walker, whose hygiene got dragged recently for taking - \"cat baths\", should be the last person to flap her mouth spew\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"miskeencore","name":"no","id":70162917,"id_str":"70162917","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":801299973644107776,"id_str":"801299973644107776","name":"alana","screen_name":"Alanakieraa","location":"Michigan, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":89,"friends_count":101,"listed_count":0,"created_at":"Wed - Nov 23 05:42:55 +0000 2016","favourites_count":32881,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27215,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234510602460114945\/Rxxkjk-v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234510602460114945\/Rxxkjk-v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/801299973644107776\/1583165239","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 01:52:07 +0000 2020","id":1235020166200688640,"id_str":"1235020166200688640","text":"summer - walker, whose hygiene got dragged recently for taking \"cat baths\", should - be the last person to flap her mou\u2026 https:\/\/t.co\/WvtL4KxAM1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WvtL4KxAM1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235020166200688640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70162917,"id_str":"70162917","name":"no","screen_name":"miskeencore","location":"to - \u26a1 nyc","description":"big forehead bigger heart","url":"https:\/\/t.co\/8yYUdSj6Ht","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8yYUdSj6Ht","expanded_url":"http:\/\/instagram.com\/miskeenc0re","display_url":"instagram.com\/miskeenc0re","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17245,"friends_count":454,"listed_count":343,"created_at":"Sun - Aug 30 17:08:50 +0000 2009","favourites_count":1528,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7030,"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\/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\/1228130729986580481\/8fAN8ud6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228130729986580481\/8fAN8ud6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70162917\/1568588648","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ACDEA9","profile_text_color":"8A238A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7993,"favorite_count":55706,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7993,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696759578624,"id_str":"1235246696759578624","text":"RT - @xzjps: \u7c73\u5927\u624b\u3082\u3000\u3068\u3063\u304f\u306b\u5831\u9053\u3057\u3066\u305f\nhttps:\/\/t.co\/lGR7g4bWL9\n\u30fbThe - more aggressive type of virus was found to be prevalent in the early stages - of the o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"xzjps","name":"\u4e94\u8f2a\u307e\u3067140\u65e5","id":3840487994,"id_str":"3840487994","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/lGR7g4bWL9","expanded_url":"https:\/\/www.cnbc.com\/2020\/03\/04\/coronavirus-chinese-scientists-identify-two-types-covid-19.html","display_url":"cnbc.com\/2020\/03\/04\/cor\u2026","indices":[26,49]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84855546,"id_str":"84855546","name":"\u307f\u30fc\u306a","screen_name":"_miina__","location":"\u6a2a\u6d5c\u30fb\u6c96\u7e04\u30fb\u6a2a\u6d5c\u30fb\u6c96\u7e04\u30fb\u6a2a\u6d5c\u30fb\u6c96\u7e04\u30fb\u6a2a\u6d5c\u2190\u30a4\u30de\u30b3\u30b3","description":"\u3069\u3053\u3067\u3082\u300e\u307f\u30fc\u306a\u300f\u8077\u696d\u30fb\u30de\u30de","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1565,"friends_count":1921,"listed_count":74,"created_at":"Sat - Oct 24 14:07:09 +0000 2009","favourites_count":5308,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187050,"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\/1448540565\/__________2011-05-26_14.31.42__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448540565\/__________2011-05-26_14.31.42__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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:36:35 +0000 2020","id":1235242748673835009,"id_str":"1235242748673835009","text":"\u7c73\u5927\u624b\u3082\u3000\u3068\u3063\u304f\u306b\u5831\u9053\u3057\u3066\u305f\nhttps:\/\/t.co\/lGR7g4bWL9\n\u30fbThe - more aggressive type of virus was found to be prevalent in the early st\u2026 - https:\/\/t.co\/AODTRCrKgO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lGR7g4bWL9","expanded_url":"https:\/\/www.cnbc.com\/2020\/03\/04\/coronavirus-chinese-scientists-identify-two-types-covid-19.html","display_url":"cnbc.com\/2020\/03\/04\/cor\u2026","indices":[15,38]},{"url":"https:\/\/t.co\/AODTRCrKgO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242748673835009","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1235235035458007041,"in_reply_to_status_id_str":"1235235035458007041","in_reply_to_user_id":3840487994,"in_reply_to_user_id_str":"3840487994","in_reply_to_screen_name":"xzjps","user":{"id":3840487994,"id_str":"3840487994","name":"\u4e94\u8f2a\u307e\u3067140\u65e5","screen_name":"xzjps","location":"\u4e16\u8972\u3060\u3089\u3051\u56fd\u4f1a\u3001\u307e\u3055\u304b\u306b\u5f31\u3044\u65e5\u672c","description":"\u25a03\/9\u4f1a\u98df\u738b\u5165\u308a\u3067 - \u96c6\u4e2d\u5be9\u8b70\n3\/10\u516c\u8074\u4f1a\n\u30fb\u300c\u7279\u63aa\u6cd5\u300d\n3\/10\u56fd\u4f1a\u63d0\u51fa\n3\/11\u8846\u30fb\u5185\u95a3\u59d4\n3\/12\u8846\u9662\u3092\u901a\u904e\u5f8c\u3001\u53c2\u30fb\u59d4\u54e1\u4f1a\n3\/13\u53c2\u9662\u3067\u53ef\u6c7a\u6210\u7acb\u4e88\u5b9a\n\u25a0\u307f\u306a\u3055\u3093\u3001\u3054\u7121\u4e8b\u3092\u7948\u308a\u307e\u3059\n\u25a0","url":"https:\/\/t.co\/LUZi1ePI41","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LUZi1ePI41","expanded_url":"https:\/\/www.youtube.com\/c\/article9jp","display_url":"youtube.com\/c\/article9jp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7649,"friends_count":24,"listed_count":131,"created_at":"Fri - Oct 09 21:32:56 +0000 2015","favourites_count":6168,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22680,"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\/1227408788820381697\/ERvxYnsD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227408788820381697\/ERvxYnsD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3840487994\/1581781957","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":26,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696734625793,"id_str":"1235246696734625793","text":"RT - @meldu5: @PressSec @realDonaldTrump @HHSGov Our Awesome & caring @POTUS - donating a big part of his salary to help combat the Coronavirus\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"meldu5","name":"\ud83e\udd8b - Mellie (Text \"TRUMP\" to 88022) \ud83e\udd8b","id":788522638062657536,"id_str":"788522638062657536","indices":[3,10]},{"screen_name":"PressSec","name":"Stephanie - Grisham","id":818927131883356161,"id_str":"818927131883356161","indices":[12,21]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[22,38]},{"screen_name":"HHSGov","name":"HHS.gov","id":44783853,"id_str":"44783853","indices":[39,46]},{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[72,78]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":790915455976411136,"id_str":"790915455976411136","name":"Toni - Tyson","screen_name":"TTysonToni1","location":"","description":"Patriot 1st, - love America & our Constitution\n Islam is our greatest threat! #BanIslam\n#MAGA - #BuildTheWall #Trump2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5837,"friends_count":5721,"listed_count":1,"created_at":"Tue - Oct 25 13:58:34 +0000 2016","favourites_count":84206,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94399,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/887752286818140166\/0LFNLpVm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/887752286818140166\/0LFNLpVm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/790915455976411136\/1511115759","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 03:14:09 +0000 2020","id":1235040807389978624,"id_str":"1235040807389978624","text":"@PressSec - @realDonaldTrump @HHSGov Our Awesome & caring @POTUS donating a big part - of his salary to help combat the\u2026 https:\/\/t.co\/mkQtWohYu5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PressSec","name":"Stephanie - Grisham","id":818927131883356161,"id_str":"818927131883356161","indices":[0,9]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[10,26]},{"screen_name":"HHSGov","name":"HHS.gov","id":44783853,"id_str":"44783853","indices":[27,34]},{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[60,66]}],"urls":[{"url":"https:\/\/t.co\/mkQtWohYu5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235040807389978624","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234911110861594624,"in_reply_to_status_id_str":"1234911110861594624","in_reply_to_user_id":818927131883356161,"in_reply_to_user_id_str":"818927131883356161","in_reply_to_screen_name":"PressSec","user":{"id":788522638062657536,"id_str":"788522638062657536","name":"\ud83e\udd8b - Mellie (Text \"TRUMP\" to 88022) \ud83e\udd8b","screen_name":"meldu5","location":"USA","description":"MAGA, - Support LE, Military, Vets, Firefighters\ud83c\uddfa\ud83c\uddf8 MARRIED,\ud83d\udeabDATES! - #IFBP #QANON #WWG1WGA FB: @RealDrGina @Harlan @cvpayne, @GrrrGraphics Blk''d - By: Rosie O. \ud83d\ude02","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35025,"friends_count":35056,"listed_count":4,"created_at":"Tue - Oct 18 23:30:21 +0000 2016","favourites_count":46777,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":65963,"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\/1210430385152237568\/m9euJJiP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210430385152237568\/m9euJJiP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/788522638062657536\/1563167955","profile_link_color":"236BE1","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":160,"favorite_count":158,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":160,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696684228608,"id_str":"1235246696684228608","text":"RT - @DDNational: PLEASE RETWEET -\nDON''T PANIC!\n#CoronaVirus : Basic Protective - Measures\n \nIf you have fever,cough and difficulty breathing,\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[46,58]}],"symbols":[],"user_mentions":[{"screen_name":"DDNational","name":"Doordarshan - National","id":571878474,"id_str":"571878474","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1598673080,"id_str":"1598673080","name":"Shubha - Sarma","screen_name":"Shubha_Sarma","location":"New Delhi","description":"Author, - IAS Officer, Views Shared are Personal, Believe in India & its People","url":"http:\/\/t.co\/QTfgIBp3i3","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QTfgIBp3i3","expanded_url":"http:\/\/theflyonthewall2013.blogspot.in\/","display_url":"theflyonthewall2013.blogspot.in","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":14272,"friends_count":275,"listed_count":33,"created_at":"Tue - Jul 16 15:33:47 +0000 2013","favourites_count":3947,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4899,"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\/508614056836472835\/3qnJPywg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508614056836472835\/3qnJPywg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1598673080\/1397751392","profile_link_color":"045885","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 02:10:00 +0000 2020","id":1235024664021237761,"id_str":"1235024664021237761","text":"PLEASE - RETWEET -\nDON''T PANIC!\n#CoronaVirus : Basic Protective Measures\n \nIf - you have fever,cough and difficulty bre\u2026 https:\/\/t.co\/ShPXMq8Y4D","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[30,42]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ShPXMq8Y4D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235024664021237761","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":571878474,"id_str":"571878474","name":"Doordarshan - National","screen_name":"DDNational","location":"New Delhi","description":"Official - Twitter account of DD National\nFacebook: https:\/\/t.co\/GyRCTk88vU\nYouTube: - https:\/\/t.co\/gEpWIKCKww\nInsta:https:\/\/t.co\/R2NskZlyUB","url":"https:\/\/t.co\/4iLm2Sri2T","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4iLm2Sri2T","expanded_url":"http:\/\/doordarshan.gov.in","display_url":"doordarshan.gov.in","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/GyRCTk88vU","expanded_url":"http:\/\/facebook.com\/DoordarshanNational","display_url":"facebook.com\/DoordarshanNat\u2026","indices":[50,73]},{"url":"https:\/\/t.co\/gEpWIKCKww","expanded_url":"http:\/\/youtube.com\/DoordarshanNational","display_url":"youtube.com\/DoordarshanNat\u2026","indices":[83,106]},{"url":"https:\/\/t.co\/R2NskZlyUB","expanded_url":"http:\/\/instagram.com\/ddnational","display_url":"instagram.com\/ddnational","indices":[113,136]}]}},"protected":false,"followers_count":360285,"friends_count":355,"listed_count":604,"created_at":"Sat - May 05 14:36:20 +0000 2012","favourites_count":6564,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":75957,"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\/936893913650012160\/yeaKQaZ5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/936893913650012160\/yeaKQaZ5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571878474\/1583391620","profile_link_color":"0083B3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1342,"favorite_count":1638,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1342,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696638148614,"id_str":"1235246696638148614","text":"RT - @thewebbix: [video] Interview on #coronavirus testing, how quickly it is transmitted, - preparedness and potential impact on daily lives.\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[36,48]}],"symbols":[],"user_mentions":[{"screen_name":"thewebbix","name":"W\u1d36E\u1d3cB\u1d31B - \u270c\ud83c\udffc","id":32399655,"id_str":"32399655","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":832616065259614209,"id_str":"832616065259614209","name":"The - USA Singers","screen_name":"TheUSASingers","location":"USA!!!!","description":"We - are the first band of The #Resistance. Our hilariously thought-provoking debut - record, The Orange Album, is now available on Vinyl, CD & Digital. \ud83e\udd18\ud83c\uddfa\ud83c\uddf8\ud83c\udf4a","url":"https:\/\/t.co\/ZvfdMQ2xCs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZvfdMQ2xCs","expanded_url":"https:\/\/www.theconnextion.com\/theusasingers","display_url":"theconnextion.com\/theusasingers","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":69036,"friends_count":44807,"listed_count":72,"created_at":"Fri - Feb 17 15:41:54 +0000 2017","favourites_count":147298,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41560,"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\/1211665865109848064\/u5KfdoW2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211665865109848064\/u5KfdoW2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/832616065259614209\/1542163706","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:29:41 +0000 2020","id":1235241011607199744,"id_str":"1235241011607199744","text":"[video] - Interview on #coronavirus testing, how quickly it is transmitted, preparedness - and potential impact on dail\u2026 https:\/\/t.co\/JmErU9GuYx","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[21,33]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JmErU9GuYx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235241011607199744","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235201446326521858,"in_reply_to_status_id_str":"1235201446326521858","in_reply_to_user_id":32399655,"in_reply_to_user_id_str":"32399655","in_reply_to_screen_name":"thewebbix","user":{"id":32399655,"id_str":"32399655","name":"W\u1d36E\u1d3cB\u1d31B - \u270c\ud83c\udffc","screen_name":"thewebbix","location":"Lakeland, FL","description":"Beach\/RV - life \u2022 Hippie \u2022 Love People \u2022 Love Music \u2022 Every day I - wake is a good day, no worry if I don\u2019t. \u2022 I LIVE BY: It is what - it is. \u2022 View #NewDayNewChance","url":"https:\/\/t.co\/c5VM9j6Ncp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c5VM9j6Ncp","expanded_url":"https:\/\/twitter.com\/search\/from:thewebbix%20NewDayNewChance","display_url":"twitter.com\/search\/from:th\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":22868,"friends_count":22704,"listed_count":129,"created_at":"Fri - Apr 17 13:17:11 +0000 2009","favourites_count":66498,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104695,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/2599680382\/093D5102-740F-4502-B0C9-2837819E1623_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2599680382\/093D5102-740F-4502-B0C9-2837819E1623_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32399655\/1565561713","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":25,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696600399873,"id_str":"1235246696600399873","text":"RT - @chimisape: trasladaron al argentino que tiene coronavirus al Sanatorio Agote - https:\/\/t.co\/UCyvknBfob","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chimisape","name":"chimi","id":2222127930,"id_str":"2222127930","indices":[3,13]}],"urls":[],"media":[{"id":1234999126154260482,"id_str":"1234999126154260482","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234999126154260482\/pu\/img\/X6ngLcRdKtlrcq_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234999126154260482\/pu\/img\/X6ngLcRdKtlrcq_p.jpg","url":"https:\/\/t.co\/UCyvknBfob","display_url":"pic.twitter.com\/UCyvknBfob","expanded_url":"https:\/\/twitter.com\/chimisape\/status\/1234999946790629376\/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":1234999946790629376,"source_status_id_str":"1234999946790629376","source_user_id":2222127930,"source_user_id_str":"2222127930"}]},"extended_entities":{"media":[{"id":1234999126154260482,"id_str":"1234999126154260482","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234999126154260482\/pu\/img\/X6ngLcRdKtlrcq_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234999126154260482\/pu\/img\/X6ngLcRdKtlrcq_p.jpg","url":"https:\/\/t.co\/UCyvknBfob","display_url":"pic.twitter.com\/UCyvknBfob","expanded_url":"https:\/\/twitter.com\/chimisape\/status\/1234999946790629376\/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":1234999946790629376,"source_status_id_str":"1234999946790629376","source_user_id":2222127930,"source_user_id_str":"2222127930","video_info":{"aspect_ratio":[16,9],"duration_millis":18719,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234999126154260482\/pu\/vid\/640x360\/-D401KXflI-sHZOj.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234999126154260482\/pu\/vid\/1280x720\/bTOH28FSEnSkkdUz.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234999126154260482\/pu\/pl\/dtdNL3Ea8xzVH0A3.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234999126154260482\/pu\/vid\/480x270\/6v0Jlu5xiNZbdMZz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2222127930,"id_str":"2222127930","name":"chimi","screen_name":"chimisape","location":"ADVERTENCIA - CHIMI NO DA RISA","description":"gamer en busqueda de mujer con la que jugar - bo2 zombies en transit ya tengo el easter egg hecho","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44146,"friends_count":574,"listed_count":31,"created_at":"Fri - Nov 29 22:50:47 +0000 2013","favourites_count":46927,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19520,"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\/1220540073831215104\/gLmb6-rR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220540073831215104\/gLmb6-rR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2222127930\/1575310276","profile_link_color":"AAB8C2","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"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4576511481,"id_str":"4576511481","name":"Mart\u00edn","screen_name":"MartinZerilloo","location":"","description":"18","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":464,"friends_count":478,"listed_count":0,"created_at":"Wed - Dec 23 08:24:19 +0000 2015","favourites_count":14236,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7583,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223463932234477569\/53b--5t-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223463932234477569\/53b--5t-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4576511481\/1574075835","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 00:31:47 +0000 2020","id":1234999946790629376,"id_str":"1234999946790629376","text":"trasladaron - al argentino que tiene coronavirus al Sanatorio Agote https:\/\/t.co\/UCyvknBfob","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234999126154260482,"id_str":"1234999126154260482","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234999126154260482\/pu\/img\/X6ngLcRdKtlrcq_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234999126154260482\/pu\/img\/X6ngLcRdKtlrcq_p.jpg","url":"https:\/\/t.co\/UCyvknBfob","display_url":"pic.twitter.com\/UCyvknBfob","expanded_url":"https:\/\/twitter.com\/chimisape\/status\/1234999946790629376\/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":1234999126154260482,"id_str":"1234999126154260482","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234999126154260482\/pu\/img\/X6ngLcRdKtlrcq_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234999126154260482\/pu\/img\/X6ngLcRdKtlrcq_p.jpg","url":"https:\/\/t.co\/UCyvknBfob","display_url":"pic.twitter.com\/UCyvknBfob","expanded_url":"https:\/\/twitter.com\/chimisape\/status\/1234999946790629376\/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":18719,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234999126154260482\/pu\/vid\/640x360\/-D401KXflI-sHZOj.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234999126154260482\/pu\/vid\/1280x720\/bTOH28FSEnSkkdUz.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234999126154260482\/pu\/pl\/dtdNL3Ea8xzVH0A3.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234999126154260482\/pu\/vid\/480x270\/6v0Jlu5xiNZbdMZz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2222127930,"id_str":"2222127930","name":"chimi","screen_name":"chimisape","location":"ADVERTENCIA - CHIMI NO DA RISA","description":"gamer en busqueda de mujer con la que jugar - bo2 zombies en transit ya tengo el easter egg hecho","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44146,"friends_count":574,"listed_count":31,"created_at":"Fri - Nov 29 22:50:47 +0000 2013","favourites_count":46927,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19520,"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\/1220540073831215104\/gLmb6-rR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220540073831215104\/gLmb6-rR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2222127930\/1575310276","profile_link_color":"AAB8C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":444,"favorite_count":2634,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":444,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696436658177,"id_str":"1235246696436658177","text":"RT - @usembassydhaka: The US, through @USAID, announces $37 million to help countries - including BD combat the spread of novel coronavirus (CO\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"usembassydhaka","name":"U.S. - Embassy Dhaka","id":216234513,"id_str":"216234513","indices":[3,18]},{"screen_name":"USAID","name":"USAID","id":36683668,"id_str":"36683668","indices":[36,42]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1042696083460247552,"id_str":"1042696083460247552","name":"B. - M. Masiur Rahman","screen_name":"b_masiur","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":115,"listed_count":0,"created_at":"Thu - Sep 20 08:44:53 +0000 2018","favourites_count":2870,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":572,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176316593430781952\/X72mVSHM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176316593430781952\/X72mVSHM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1042696083460247552\/1556031051","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:55:09 +0000 2020","id":1235202121924042752,"id_str":"1235202121924042752","text":"The - US, through @USAID, announces $37 million to help countries including BD combat - the spread of novel coronavirus\u2026 https:\/\/t.co\/iGG5FEtUbJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"USAID","name":"USAID","id":36683668,"id_str":"36683668","indices":[16,22]}],"urls":[{"url":"https:\/\/t.co\/iGG5FEtUbJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235202121924042752","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":216234513,"id_str":"216234513","name":"U.S. - Embassy Dhaka","screen_name":"usembassydhaka","location":"Dhaka, Bangladesh","description":"Official - Twitter Account of the U.S. Embassy in Dhaka","url":"https:\/\/t.co\/eZ6hZ321KA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eZ6hZ321KA","expanded_url":"http:\/\/bd.usembassy.gov","display_url":"bd.usembassy.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":95357,"friends_count":206,"listed_count":213,"created_at":"Tue - Nov 16 03:44:58 +0000 2010","favourites_count":494,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5641,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"02196B","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\/378800000315809130\/d80f2fc414e545725fd8e52180b83116_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000315809130\/d80f2fc414e545725fd8e52180b83116_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216234513\/1583132415","profile_link_color":"2FC2EF","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"},"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696399097858,"id_str":"1235246696399097858","text":"RT - @BeaglesResist: @joncoopertweets Human suffering and death shall not be permitted - to infringe the right of a pharmaceutical CEO to be a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BeaglesResist","name":"Beagles\ud83d\udc36Resist - Is All-in for Liz in the Primary","id":4823335694,"id_str":"4823335694","indices":[3,17]},{"screen_name":"joncoopertweets","name":"Jon - Cooper \ud83c\uddfa\ud83c\uddf8","id":27493883,"id_str":"27493883","indices":[19,35]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1338317185,"id_str":"1338317185","name":"Cheri","screen_name":"nrwgnwd_cheri","location":"Charlottesville, - VA","description":"Just trying to keep breathing!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":827,"friends_count":692,"listed_count":12,"created_at":"Tue - Apr 09 04:42:39 +0000 2013","favourites_count":165944,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70561,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1039535156661506049\/Nnd8_RpO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039535156661506049\/Nnd8_RpO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1338317185\/1573049683","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:30:25 +0000 2020","id":1235210998837055488,"id_str":"1235210998837055488","text":"@joncoopertweets - Human suffering and death shall not be permitted to infringe the right of - a pharmaceutical CEO to\u2026 https:\/\/t.co\/Wc6DmZeqUS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper \ud83c\uddfa\ud83c\uddf8","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/Wc6DmZeqUS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235210998837055488","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1235017199594680320,"in_reply_to_status_id_str":"1235017199594680320","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","user":{"id":4823335694,"id_str":"4823335694","name":"Beagles\ud83d\udc36Resist - Is All-in for Liz in the Primary","screen_name":"BeaglesResist","location":"Florida, - and not the good part","description":"Southerner by birth. Liberal by the - grace of God.\ud83d\udc99\u262e\ufe0fSnark & Politics\u270a\ud83c\udffdBlocked - by Gorka, Osteen, MHuckabee \ud83c\udf7c She\/Her \ud83d\udc52Some cussing\ud83d\ude2cNo - DMs.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13742,"friends_count":13833,"listed_count":13,"created_at":"Thu - Jan 28 01:14:57 +0000 2016","favourites_count":167694,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":61119,"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\/1122850360610164739\/vv5-w2Cf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1122850360610164739\/vv5-w2Cf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4823335694\/1583431721","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":46,"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696268849153,"id_str":"1235246696268849153","text":"RT - @hollaa_backk: if you\u2019ve ever used a frat house bathroom you\u2019re - immune to the coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hollaa_backk","name":"Holland - Beck","id":970402920087908352,"id_str":"970402920087908352","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3027601336,"id_str":"3027601336","name":"Ceasaroni","screen_name":"codycolts45","location":"Caledonia, - NY","description":"Cal-Mum 17''\nUS Army","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":310,"friends_count":301,"listed_count":1,"created_at":"Tue - Feb 10 02:55:44 +0000 2015","favourites_count":16937,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2016,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215124291487850496\/Y6q1eJpa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215124291487850496\/Y6q1eJpa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3027601336\/1559313599","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 21:07:23 +0000 2020","id":1234586120517754880,"id_str":"1234586120517754880","text":"if - you\u2019ve ever used a frat house bathroom you\u2019re immune to the coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":970402920087908352,"id_str":"970402920087908352","name":"Holland - Beck","screen_name":"hollaa_backk","location":"Oxford, MS","description":"university - of ole miss- future fun aunt","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":628,"friends_count":474,"listed_count":0,"created_at":"Sun - Mar 04 20:57:40 +0000 2018","favourites_count":36455,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":913,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221516105044430852\/0XZOtAR8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221516105044430852\/0XZOtAR8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/970402920087908352\/1580067110","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47013,"favorite_count":261630,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":47013,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696264847361,"id_str":"1235246696264847361","text":"RT - @EPLBible: Jurgen Klopp''s response when asked about Coronavirus is absolutely - class. \n\nThis is spot on. It\u2019s impossible to dislike this\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EPLBible","name":"EPL - Bible","id":595343731,"id_str":"595343731","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146861661,"id_str":"146861661","name":"Marius - Quabeck","screen_name":"MariusQuabeck","location":"Stuttgart Germany","description":"NerdZoom - Media, Blogger und Podcaster bei @NerdZoomDE, Apple User, Ubuntu Member \ud83c\udf08","url":"https:\/\/t.co\/518dvYFuwF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/518dvYFuwF","expanded_url":"https:\/\/NerdZoom.de","display_url":"NerdZoom.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2031,"friends_count":428,"listed_count":46,"created_at":"Sat - May 22 14:50:01 +0000 2010","favourites_count":8773,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":557,"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\/1097355875407327232\/GKt1tnD6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1097355875407327232\/GKt1tnD6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146861661\/1509662321","profile_link_color":"CA2017","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 10:11:43 +0000 2020","id":1235145893839613952,"id_str":"1235145893839613952","text":"Jurgen - Klopp''s response when asked about Coronavirus is absolutely class. \n\nThis - is spot on. It\u2019s impossible to dis\u2026 https:\/\/t.co\/Gf27yy0IDt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Gf27yy0IDt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235145893839613952","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":595343731,"id_str":"595343731","name":"EPL - Bible","screen_name":"EPLBible","location":"Barclaysbible@gmail.com","description":"Your - #1 source for everything Premier League related. 18+.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":670844,"friends_count":274,"listed_count":2852,"created_at":"Thu - May 31 09:35:07 +0000 2012","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18018,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233112558284025859\/Y-sMiesr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233112558284025859\/Y-sMiesr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/595343731\/1582831920","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11508,"favorite_count":42301,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11508,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696260612098,"id_str":"1235246696260612098","text":"Two - new cases of coronavirus confirmed in Northern Ireland https:\/\/t.co\/f9IN3tM6VR - https:\/\/t.co\/HeMvRWItYf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/f9IN3tM6VR","expanded_url":"https:\/\/buff.ly\/2Q25yuX","display_url":"buff.ly\/2Q25yuX","indices":[59,82]}],"media":[{"id":1235246694838792199,"id_str":"1235246694838792199","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6UwfXcAcmf-G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6UwfXcAcmf-G.jpg","url":"https:\/\/t.co\/HeMvRWItYf","display_url":"pic.twitter.com\/HeMvRWItYf","expanded_url":"https:\/\/twitter.com\/Independent_ie\/status\/1235246696260612098\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":620,"h":350,"resize":"fit"},"small":{"w":620,"h":350,"resize":"fit"},"large":{"w":620,"h":350,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235246694838792199,"id_str":"1235246694838792199","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6UwfXcAcmf-G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6UwfXcAcmf-G.jpg","url":"https:\/\/t.co\/HeMvRWItYf","display_url":"pic.twitter.com\/HeMvRWItYf","expanded_url":"https:\/\/twitter.com\/Independent_ie\/status\/1235246696260612098\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":620,"h":350,"resize":"fit"},"small":{"w":620,"h":350,"resize":"fit"},"large":{"w":620,"h":350,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":91334232,"id_str":"91334232","name":"Independent.ie","screen_name":"Independent_ie","location":"Dublin","description":"https:\/\/t.co\/E5Ythvvsge - is Ireland''s most read news website providing breaking news content to 13 - million readers a month. Get in touch: contact@independent.ie.","url":"https:\/\/t.co\/QKLielSxFR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QKLielSxFR","expanded_url":"http:\/\/www.independent.ie\/","display_url":"independent.ie","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/E5Ythvvsge","expanded_url":"http:\/\/Independent.ie","display_url":"Independent.ie","indices":[0,23]}]}},"protected":false,"followers_count":533997,"friends_count":202,"listed_count":2507,"created_at":"Fri - Nov 20 12:55:30 +0000 2009","favourites_count":358,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":377708,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","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\/1081147519332159488\/-44QdAwK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1081147519332159488\/-44QdAwK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91334232\/1516624681","profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","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":"regular"},"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696210354176,"id_str":"1235246696210354176","text":"RT - @Carolin87034864: Wueon primer caso de coronavirus lleg\u00f3 a chile luego - paso por Santiago y fue a caer al peor hospital de chile !!!\n\nFam\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Carolin87034864","name":"virgen - de fatima versi\u00f3n 6.9 \ud83d\ude01","id":1205533363710447616,"id_str":"1205533363710447616","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":990356681128337409,"id_str":"990356681128337409","name":"Carlos","screen_name":"Carlos67360447","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":468,"listed_count":1,"created_at":"Sat - Apr 28 22:26:47 +0000 2018","favourites_count":3032,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17718,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216458664204210177\/AhEC_Btu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216458664204210177\/AhEC_Btu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 00:12:49 +0000 2020","id":1234995173278519297,"id_str":"1234995173278519297","text":"Wueon - primer caso de coronavirus lleg\u00f3 a chile luego paso por Santiago y fue - a caer al peor hospital de chile !!!\u2026 https:\/\/t.co\/8hpZzPcggU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8hpZzPcggU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234995173278519297","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1205533363710447616,"id_str":"1205533363710447616","name":"virgen - de fatima versi\u00f3n 6.9 \ud83d\ude01","screen_name":"Carolin87034864","location":"Quintero","description":"creadora - del Pi\u00f1era qliao Miles de cuentas bajadas Miles de veces de vuelta","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8989,"friends_count":3920,"listed_count":6,"created_at":"Fri - Dec 13 17:02:25 +0000 2019","favourites_count":13321,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4423,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1205538468736188416\/C3V2fuIu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205538468736188416\/C3V2fuIu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1205533363710447616\/1576257771","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":67,"favorite_count":324,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":67,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696168333312,"id_str":"1235246696168333312","text":"4 - ways the #Coronavirus is connected to security operations: https:\/\/t.co\/7kcxNHnjE6 - https:\/\/t.co\/t9u32zeHQZ","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[11,23]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7kcxNHnjE6","expanded_url":"https:\/\/siemp.ly\/2PJNUM4","display_url":"siemp.ly\/2PJNUM4","indices":[61,84]}],"media":[{"id":1235246692661944323,"id_str":"1235246692661944323","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6UoYXYAMPnaO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6UoYXYAMPnaO.jpg","url":"https:\/\/t.co\/t9u32zeHQZ","display_url":"pic.twitter.com\/t9u32zeHQZ","expanded_url":"https:\/\/twitter.com\/Siemplify\/status\/1235246696168333312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":676,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":676,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235246692661944323,"id_str":"1235246692661944323","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6UoYXYAMPnaO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6UoYXYAMPnaO.jpg","url":"https:\/\/t.co\/t9u32zeHQZ","display_url":"pic.twitter.com\/t9u32zeHQZ","expanded_url":"https:\/\/twitter.com\/Siemplify\/status\/1235246696168333312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":676,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":676,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3236976590,"id_str":"3236976590","name":"Siemplify","screen_name":"Siemplify","location":"New - York, NY","description":"\u201cThe security equivalent of Salesforce.\u201d - -@SearchSecurity. Manage your security operations end to end with the world\u2019s - leading independent SOAR platform.","url":"https:\/\/t.co\/pKQ4Z8zxRH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pKQ4Z8zxRH","expanded_url":"http:\/\/siemplify.co","display_url":"siemplify.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2507,"friends_count":2500,"listed_count":130,"created_at":"Fri - Jun 05 13:16:05 +0000 2015","favourites_count":309,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3064,"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\/1102282877033742336\/vcLbu799_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1102282877033742336\/vcLbu799_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236976590\/1551850743","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696080330752,"id_str":"1235246696080330752","text":"RT - @W7VOA: #Coronavirus again a focus of @POTUS and @VP here today:","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[11,23]}],"symbols":[],"user_mentions":[{"screen_name":"W7VOA","name":"Steve - Herman","id":17919393,"id_str":"17919393","indices":[3,9]},{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[41,47]},{"screen_name":"VP","name":"Vice - President Mike Pence","id":818910970567344128,"id_str":"818910970567344128","indices":[52,55]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":862831051487535104,"id_str":"862831051487535104","name":"Miles - Hallgren","screen_name":"MilesHallgren","location":"Kent, OH","description":"Kent - State University undergraduate, majoring in International Relations.\n\u79c1\u306f\u56fd\u969b\u95a2\u4fc2\u3092\u52c9\u5f37\u3057\u307e\u3059\u3002 - \ud83c\uddfa\ud83c\uddf8\ud83c\uddef\ud83c\uddf5 ~~\nRT \u2260 endorsement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":401,"listed_count":0,"created_at":"Fri - May 12 00:45:28 +0000 2017","favourites_count":25429,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18350,"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\/1053880482130157568\/tDfX5yRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053880482130157568\/tDfX5yRl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/862831051487535104\/1554343620","profile_link_color":"25561C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:33:34 +0000 2020","id":1235241987567243264,"id_str":"1235241987567243264","text":"#Coronavirus - again a focus of @POTUS and @VP here today: https:\/\/t.co\/P1LbqZK8iS","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[30,36]},{"screen_name":"VP","name":"Vice - President Mike Pence","id":818910970567344128,"id_str":"818910970567344128","indices":[41,44]}],"urls":[{"url":"https:\/\/t.co\/P1LbqZK8iS","expanded_url":"https:\/\/twitter.com\/davidshepardson\/status\/1235241633878290434","display_url":"twitter.com\/davidshepardso\u2026","indices":[57,80]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17919393,"id_str":"17919393","name":"Steve - Herman","screen_name":"W7VOA","location":"Washington, DC ","description":"@WhiteHouse - bureau chief @VOANews. Member: @aaja, @opcofamerica, @pressclubdc, @sajahq, - @whca. Past president: @fccjapan, @SeoulFCC. Ex @AP, @Discovery. \ud83d\udce1","url":"https:\/\/t.co\/Gxigiw7BPO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Gxigiw7BPO","expanded_url":"https:\/\/www.steveherman.press","display_url":"steveherman.press","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":94961,"friends_count":2000,"listed_count":4256,"created_at":"Sat - Dec 06 08:56:45 +0000 2008","favourites_count":7054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":119961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","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\/1193608032158175232\/P9ggH9b4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193608032158175232\/P9ggH9b4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17919393\/1540929053","profile_link_color":"002868","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"191622","profile_text_color":"993B00","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235241633878290434,"quoted_status_id_str":"1235241633878290434","quoted_status":{"created_at":"Wed - Mar 04 16:32:09 +0000 2020","id":1235241633878290434,"id_str":"1235241633878290434","text":"Trump - joins meetings with airline CEOs https:\/\/t.co\/mNCwEn6DMd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mNCwEn6DMd","expanded_url":"https:\/\/twitter.com\/HowardMortman\/status\/1235241543310639105","display_url":"twitter.com\/HowardMortman\/\u2026","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26283307,"id_str":"26283307","name":"David - Shepardson","screen_name":"davidshepardson","location":"Washington, DC","description":"@Reuters - reporter in DC covering aviation, autos + (anything that moves) @fcc tech - Pvs @DetroitNews Michigan native. Father of three, husband","url":"https:\/\/t.co\/SG0tCF9rQx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SG0tCF9rQx","expanded_url":"http:\/\/www.reuters.com\/journalists\/david-shepardson","display_url":"reuters.com\/journalists\/da\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18082,"friends_count":7174,"listed_count":842,"created_at":"Tue - Mar 24 17:47:50 +0000 2009","favourites_count":21056,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":103136,"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\/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\/202644841\/n650203102_2079561_8492-1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/202644841\/n650203102_2079561_8492-1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26283307\/1362714163","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235241543310639105,"quoted_status_id_str":"1235241543310639105","retweet_count":6,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":24,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235241633878290434,"quoted_status_id_str":"1235241633878290434","retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696034168834,"id_str":"1235246696034168834","text":"RT - @umvicente: isso nao mataria apenas o coronavirus isto mataria alguem por - dentro","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"umvicente","name":"vicente - van gogh","id":564628730,"id_str":"564628730","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875806548538384384,"id_str":"875806548538384384","name":"bela - e amoral","screen_name":"fuckingsadxx","location":"Maranh\u00e3o, Brasil","description":"ser - de lua, indom\u00e1vel","url":"https:\/\/t.co\/LcvcPlkkYW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LcvcPlkkYW","expanded_url":"https:\/\/curiouscat.me\/maribbxx","display_url":"curiouscat.me\/maribbxx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":959,"friends_count":706,"listed_count":2,"created_at":"Fri - Jun 16 20:05:27 +0000 2017","favourites_count":11203,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41948,"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\/1231429852491808769\/ar0LuPP2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231429852491808769\/ar0LuPP2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875806548538384384\/1580694280","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:50:23 +0000 2020","id":1235246219833872385,"id_str":"1235246219833872385","text":"isso - nao mataria apenas o coronavirus isto mataria alguem por dentro https:\/\/t.co\/HmJo4ZV2Iy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HmJo4ZV2Iy","expanded_url":"https:\/\/twitter.com\/dayenegs_\/status\/1235245739829350402","display_url":"twitter.com\/dayenegs_\/stat\u2026","indices":[69,92]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":564628730,"id_str":"564628730","name":"vicente - van gogh","screen_name":"umvicente","location":"Campo Mour\u00e3o, Brasil","description":"sem - tempo pra bio e-mail comercial: umvicente@hotmail.com","url":"https:\/\/t.co\/Ht7D8wB5Ux","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ht7D8wB5Ux","expanded_url":"http:\/\/Instagram.com\/vicenteks","display_url":"Instagram.com\/vicenteks","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":110060,"friends_count":527,"listed_count":2425,"created_at":"Fri - Apr 27 13:56:51 +0000 2012","favourites_count":70331,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":164106,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1225189591612825600\/_uNRrsYp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225189591612825600\/_uNRrsYp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/564628730\/1580944891","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235245739829350402,"quoted_status_id_str":"1235245739829350402","quoted_status":{"created_at":"Wed - Mar 04 16:48:28 +0000 2020","id":1235245739829350402,"id_str":"1235245739829350402","text":"@umvicente - corote lim\u00e3o com baunilha","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"umvicente","name":"vicente - van gogh","id":564628730,"id_str":"564628730","indices":[0,10]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1235245123388289025,"in_reply_to_status_id_str":"1235245123388289025","in_reply_to_user_id":564628730,"in_reply_to_user_id_str":"564628730","in_reply_to_screen_name":"umvicente","user":{"id":826618111235411969,"id_str":"826618111235411969","name":"day","screen_name":"dayenegs_","location":"mg","description":"navegando - nas magoas da vida sereia de alma doce","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":187,"friends_count":196,"listed_count":0,"created_at":"Wed - Feb 01 02:28:10 +0000 2017","favourites_count":10042,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8338,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229607164903378945\/AwseAB7D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229607164903378945\/AwseAB7D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826618111235411969\/1558316653","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"pt"},"retweet_count":10,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":true,"quoted_status_id":1235245739829350402,"quoted_status_id_str":"1235245739829350402","retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246696017399809,"id_str":"1235246696017399809","text":"RT - @portalmvd: Confirmaron el primer caso de coronavirus en Argentina https:\/\/t.co\/indmfBCPBR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"portalmvd","name":"Montevideo - Portal","id":87751887,"id_str":"87751887","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/indmfBCPBR","expanded_url":"http:\/\/m.uy\/uc745842","display_url":"m.uy\/uc745842","indices":[70,93]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":422328222,"id_str":"422328222","name":"televisionuy - \ud83d\udcfa\ud83c\uddfa\ud83c\uddfe","screen_name":"televisionuy","location":"Uruguay","description":"@televisionuy, - hacemos lo que queremos","url":"https:\/\/t.co\/J5hh6iyO6O","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J5hh6iyO6O","expanded_url":"http:\/\/televisionuy.tk","display_url":"televisionuy.tk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6684,"friends_count":5521,"listed_count":34,"created_at":"Sun - Nov 27 03:58:26 +0000 2011","favourites_count":36501,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":108910,"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\/1234277621174804481\/JznVmSkw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234277621174804481\/JznVmSkw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/422328222\/1583109692","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"20B81B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:45:48 +0000 2020","id":1234897777878020101,"id_str":"1234897777878020101","text":"Confirmaron - el primer caso de coronavirus en Argentina https:\/\/t.co\/indmfBCPBR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/indmfBCPBR","expanded_url":"http:\/\/m.uy\/uc745842","display_url":"m.uy\/uc745842","indices":[55,78]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/desarrolla.montevideo.com.uy\/\" rel=\"nofollow\"\u003eMVD - CMS\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87751887,"id_str":"87751887","name":"Montevideo - Portal","screen_name":"portalmvd","location":"Uruguay","description":"Informaci\u00f3n - y entretenimiento para sentirte m\u00e1s conectado con Uruguay, la regi\u00f3n - y el mundo. #ParaTodosTodo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":467678,"friends_count":633,"listed_count":910,"created_at":"Thu - Nov 05 18:37:33 +0000 2009","favourites_count":366,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":299033,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E85B49","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/743850583996641280\/cTWUCcFN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/743850583996641280\/cTWUCcFN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87751887\/1571162519","profile_link_color":"E73C26","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695929217026,"id_str":"1235246695929217026","text":"RT - @universalhub: One bonus of coronavirus: MBTA will step up cleaning and disinfecting - - once a day for subway cars and buses, every four\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"universalhub","name":"Adam - Gaffin","id":12705772,"id_str":"12705772","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":567402869,"id_str":"567402869","name":"Diana - Lane","screen_name":"DianaLaneHR","location":"","description":"HR professional,Secular - Carmelite and singer. Owned by Oliver and Esther, two fabulous feline bosses.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":232,"listed_count":12,"created_at":"Mon - Apr 30 17:39:14 +0000 2012","favourites_count":132674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66249,"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\/2179228206\/diana_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2179228206\/diana_normal","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:22:31 +0000 2020","id":1235239207590862849,"id_str":"1235239207590862849","text":"One - bonus of coronavirus: MBTA will step up cleaning and disinfecting - once a - day for subway cars and buses, every\u2026 https:\/\/t.co\/hdOyR823Gl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hdOyR823Gl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235239207590862849","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":12705772,"id_str":"12705772","name":"Adam - Gaffin","screen_name":"universalhub","location":"Boston, MA","description":"Boston - news and the latest turkey and helicopter updates from Universal Hub.","url":"https:\/\/t.co\/tK1H5awVki","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tK1H5awVki","expanded_url":"https:\/\/www.universalhub.com","display_url":"universalhub.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":67073,"friends_count":18073,"listed_count":1877,"created_at":"Sat - Jan 26 01:46:42 +0000 2008","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":190028,"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\/1124504090682253312\/akx3jj4r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1124504090682253312\/akx3jj4r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12705772\/1506000154","profile_link_color":"0000FF","profile_sidebar_border_color":"0000FF","profile_sidebar_fill_color":"8FC6E1","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":189,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":41,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695769767936,"id_str":"1235246695769767936","text":"RT - @NetworksManager: Need find, test and isolate all who have been within 6 ft - of the infected family in New York. I know that''s gonna be a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NetworksManager","name":"Bruce - Porter, Jr.","id":115681686,"id_str":"115681686","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1096583685808128000,"id_str":"1096583685808128000","name":"\u5929\u5e74","screen_name":"Johnny52313132","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":958,"listed_count":0,"created_at":"Sat - Feb 16 01:34:59 +0000 2019","favourites_count":1807,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1930,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1120401207032520706\/jPUVnWPv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1120401207032520706\/jPUVnWPv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:26:31 +0000 2020","id":1235240214685249536,"id_str":"1235240214685249536","text":"Need - find, test and isolate all who have been within 6 ft of the infected family - in New York. I know that''s gonna b\u2026 https:\/\/t.co\/CT1qgP0HiQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CT1qgP0HiQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235240214685249536","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115681686,"id_str":"115681686","name":"Bruce - Porter, Jr.","screen_name":"NetworksManager","location":"Washington DC","description":"American - investor, athlete, globetrotter in #Washington #DC. @EmmeGirls COO @GlobalBoost - CEO. Join @WashingtonElite #AI #Blockchain Summit & Gala March 13 in DC","url":"https:\/\/t.co\/ygg3moP9Vk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ygg3moP9Vk","expanded_url":"http:\/\/t.me\/WashingtonElite","display_url":"t.me\/WashingtonElite","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":107162,"friends_count":107613,"listed_count":1117,"created_at":"Fri - Feb 19 14:51:42 +0000 2010","favourites_count":73947,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":151943,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/854422612310708226\/yq8sdVz0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/854422612310708226\/yq8sdVz0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115681686\/1579920153","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235239187185623040,"quoted_status_id_str":"1235239187185623040","quoted_status":{"created_at":"Wed - Mar 04 16:22:26 +0000 2020","id":1235239187185623040,"id_str":"1235239187185623040","text":"@NetworksManager - That could be a quarantine problem. The whole family has it.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NetworksManager","name":"Bruce - Porter, Jr.","id":115681686,"id_str":"115681686","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1235236538474287104,"in_reply_to_status_id_str":"1235236538474287104","in_reply_to_user_id":115681686,"in_reply_to_user_id_str":"115681686","in_reply_to_screen_name":"NetworksManager","user":{"id":1205082198619172864,"id_str":"1205082198619172864","name":"Antisillypirate.","screen_name":"Antisillypirate","location":"","description":"Pirate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":105,"listed_count":0,"created_at":"Thu - Dec 12 11:09:37 +0000 2019","favourites_count":5684,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5147,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1205193995711893504\/MmHRR_7I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205193995711893504\/MmHRR_7I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1205082198619172864\/1576156545","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":18,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235239187185623040,"quoted_status_id_str":"1235239187185623040","retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695602171907,"id_str":"1235246695602171907","text":"RT - @adamconover: Yesterday I saw a man who had stuck his \u201cI Voted\u201d - sticker onto his coronavirus mask. The most March 3rd 2020 man of all ti\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"adamconover","name":"Adam - Conover","id":5880462,"id_str":"5880462","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3296156502,"id_str":"3296156502","name":"Nieves - McSnowflake","screen_name":"LaXtinaAbella","location":"Chicago, IL","description":"I - teach & study language. Music nerds\/foodies\/linguists\/writers\/scientists\/artists - sometimes think I''m funny. Obsessed with plants. Normcore artsy mom. She\/her.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":682,"listed_count":3,"created_at":"Sun - Jul 26 21:58:43 +0000 2015","favourites_count":27677,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9633,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1024834878716739584\/1LhWXtzf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1024834878716739584\/1LhWXtzf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3296156502\/1533174655","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:49:13 +0000 2020","id":1235245928329568256,"id_str":"1235245928329568256","text":"Yesterday - I saw a man who had stuck his \u201cI Voted\u201d sticker onto his coronavirus - mask. The most March 3rd 2020 man of all time.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5880462,"id_str":"5880462","name":"Adam - Conover","screen_name":"adamconover","location":"Los Angeles, CA","description":"A - curious comedian exploring the weirdest and wildest reaches of human knowledge. - Creator & host of Adam Ruins Everything. Listen to my new podcast, Factually!","url":"https:\/\/t.co\/SEJl5xUQTI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEJl5xUQTI","expanded_url":"http:\/\/www.adamconover.net","display_url":"adamconover.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158723,"friends_count":1551,"listed_count":764,"created_at":"Wed - May 09 00:04:45 +0000 2007","favourites_count":11560,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6416,"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\/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\/1133788894586068992\/kqAJxs0Q_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133788894586068992\/kqAJxs0Q_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5880462\/1415568424","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":221,"favorite_count":2593,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":221,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695572791296,"id_str":"1235246695572791296","text":"RT - @TomyDonna: Mira que voy a dejar de tomar mate por el coronavirus, no seas - trolo man","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TomyDonna","name":"Tomas","id":1360652701,"id_str":"1360652701","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/Twitter.com\" rel=\"nofollow\"\u003eBotNoseastroloman\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1219993232240783366,"id_str":"1219993232240783366","name":"No - seas trolo man BOT","screen_name":"noseastrolobot_","location":"Desubicado","description":"*Mencioname - y te digo si el tweet es re de trolo o no, ademas tengo estas cuentas @sosunvirgo - @negativobot @fedecerdeira","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":257,"friends_count":23,"listed_count":0,"created_at":"Wed - Jan 22 14:40:37 +0000 2020","favourites_count":299,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5914,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219993785184268297\/02HC_EQM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219993785184268297\/02HC_EQM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1219993232240783366\/1580242760","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:48:19 +0000 2020","id":1235245700872572928,"id_str":"1235245700872572928","text":"Mira - que voy a dejar de tomar mate por el coronavirus, no seas trolo man","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1360652701,"id_str":"1360652701","name":"Tomas","screen_name":"TomyDonna","location":"La - Plata, Argentina","description":"TCP\u2708\ufe0f ig: @tomasdonna_","url":"https:\/\/t.co\/cvRX4XzPB9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cvRX4XzPB9","expanded_url":"http:\/\/Instagram.com\/tomasdonna_","display_url":"Instagram.com\/tomasdonna_","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":588,"friends_count":496,"listed_count":2,"created_at":"Thu - Apr 18 00:20:00 +0000 2013","favourites_count":13363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39692,"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\/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\/1177212958667083776\/UsR9rlrj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1177212958667083776\/UsR9rlrj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1360652701\/1529714390","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695564423169,"id_str":"1235246695564423169","text":"Bach - says as IOC President he has dealt with threats of nuclear strikes (Korean - peninsula) and Zika virus (Rio), th\u2026 https:\/\/t.co\/gQlO7sCVHU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gQlO7sCVHU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246695564423169","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235245317110534144,"in_reply_to_status_id_str":"1235245317110534144","in_reply_to_user_id":18981645,"in_reply_to_user_id_str":"18981645","in_reply_to_screen_name":"stevescott_itv","user":{"id":18981645,"id_str":"18981645","name":"Steve - Scott","screen_name":"stevescott_itv","location":"","description":"Sports - Editor and News Presenter ITV News. https:\/\/t.co\/dQ20Gu4JXA","url":"https:\/\/t.co\/5a9MnUldj9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5a9MnUldj9","expanded_url":"http:\/\/Instagram.com\/itvsteve","display_url":"Instagram.com\/itvsteve","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/dQ20Gu4JXA","expanded_url":"http:\/\/www.itv.com\/stevescott","display_url":"itv.com\/stevescott","indices":[43,66]}]}},"protected":false,"followers_count":5685,"friends_count":1946,"listed_count":106,"created_at":"Wed - Jan 14 16:24:34 +0000 2009","favourites_count":1469,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5373,"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\/1188257645196529666\/SH8mor3e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188257645196529666\/SH8mor3e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18981645\/1517752580","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695564423168,"id_str":"1235246695564423168","text":"RT - @dianehain: Why did BorisJohnson LIE to the Media that he shook hands with - Coronavirus patients. It is not just because it was AGAINST p\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dianehain","name":"Diane - Hain","id":100561484,"id_str":"100561484","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954673109096980480,"id_str":"954673109096980480","name":"Marianna - J\ud83c\udf39#TransRightsAreHumanRights \ud83c\uddeb\ud83c\uddf7 \ud83c\uddf5\ud83c\uddf8","screen_name":"Femulator","location":"East - Suffolk England, UK EU","description":"Late 50s, genderfluid? divorced. ME - sufferer, Cancer survivor. A-sexual. Socialist. Atheist. No interest in men. - #nhsLove #girlslikeus","url":"https:\/\/t.co\/Ow9yNuJ37I","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ow9yNuJ37I","expanded_url":"https:\/\/beingmarianna.weebly.com\/","display_url":"beingmarianna.weebly.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":473,"friends_count":587,"listed_count":1,"created_at":"Sat - Jan 20 11:13:00 +0000 2018","favourites_count":9793,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25456,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1200134929629224962\/s_eU3aDh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1200134929629224962\/s_eU3aDh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/954673109096980480\/1575728862","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 11:50:20 +0000 2020","id":1235170711083397125,"id_str":"1235170711083397125","text":"Why - did BorisJohnson LIE to the Media that he shook hands with Coronavirus patients. - It is not just because it was\u2026 https:\/\/t.co\/taP3rszdwB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/taP3rszdwB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235170711083397125","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100561484,"id_str":"100561484","name":"Diane - Hain","screen_name":"dianehain","location":"","description":"NEVER HAS SO - MUCH BEEN TAKEN FROM SO MANY ORDINARY PEOPLE, TO THE BENEFIT OF THE FEW AT - THE TOP.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10075,"friends_count":9453,"listed_count":107,"created_at":"Wed - Dec 30 18:18:16 +0000 2009","favourites_count":57637,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":137147,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248837433\/Picture_of_me_for_facebook_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248837433\/Picture_of_me_for_facebook_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100561484\/1402844490","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":580,"favorite_count":1110,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":580,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695526490113,"id_str":"1235246695526490113","text":"RT - @AlyciaTyre: Alright they need to hurry up and find a cure for this coronavirus - shit because it\u2019s actually scary","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlyciaTyre","name":"Sahlt","id":2241248221,"id_str":"2241248221","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1072017903786983424,"id_str":"1072017903786983424","name":"Natalia - Rojas","screen_name":"rojasnataliaa_","location":"Los Angeles, CA","description":"gram-rojassnataliaa_","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":11,"listed_count":0,"created_at":"Mon - Dec 10 06:39:20 +0000 2018","favourites_count":160,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1178550034192683009\/3kHLj-Sv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1178550034192683009\/3kHLj-Sv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1072017903786983424\/1569823249","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:21:45 +0000 2020","id":1234906824551219200,"id_str":"1234906824551219200","text":"Alright - they need to hurry up and find a cure for this coronavirus shit because it\u2019s - actually scary","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2241248221,"id_str":"2241248221","name":"Sahlt","screen_name":"AlyciaTyre","location":"","description":"Instagram - : Sahlt_","url":"https:\/\/t.co\/VRrNnEFVOs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VRrNnEFVOs","expanded_url":"https:\/\/m.youtube.com\/channel\/UCzgrQq25m4OX5sW0The9sgQ","display_url":"m.youtube.com\/channel\/UCzgrQ\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":612237,"friends_count":760,"listed_count":2123,"created_at":"Wed - Dec 11 19:19:37 +0000 2013","favourites_count":101554,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":57656,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221897268036419584\/MpUoR1cl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221897268036419584\/MpUoR1cl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2241248221\/1582271029","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":693,"favorite_count":3689,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":693,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695425994754,"id_str":"1235246695425994754","text":"RT - @Acosta: Since Monday, Dr. Fauci has publicly explained in front of Trump - three times now that it will take a year or more to develop a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Acosta","name":"Jim - Acosta","id":22771961,"id_str":"22771961","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425779247,"id_str":"425779247","name":"Juggs - Bunny","screen_name":"ILoveCalinda","location":"","description":"GOAT","url":"https:\/\/t.co\/DXm0KIXurP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DXm0KIXurP","expanded_url":"http:\/\/RealAsFuck.com","display_url":"RealAsFuck.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16263,"friends_count":519,"listed_count":141,"created_at":"Thu - Dec 01 12:25:14 +0000 2011","favourites_count":4805,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":147313,"lang":null,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204004882715418624\/NudNI28U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204004882715418624\/NudNI28U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425779247\/1564388710","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 22:21:31 +0000 2020","id":1234967163812925442,"id_str":"1234967163812925442","text":"Since - Monday, Dr. Fauci has publicly explained in front of Trump three times now - that it will take a year or more t\u2026 https:\/\/t.co\/ZFLjAvdpSg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZFLjAvdpSg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234967163812925442","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22771961,"id_str":"22771961","name":"Jim - Acosta","screen_name":"Acosta","location":"Washington, DC","description":"CNN - Chief White House Correspondent. Author of NYT Bestseller, \u201cThe Enemy - of the People.\u201d Winner of NY Press Club \u201cTruth to Power\u201d award. - I believe in #realnews","url":"https:\/\/t.co\/vRiHS21vus","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vRiHS21vus","expanded_url":"https:\/\/www.amazon.com\/Enemy-People-Dangerous-Truth-America\/dp\/0062916122","display_url":"amazon.com\/Enemy-People-D\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1403909,"friends_count":4248,"listed_count":9871,"created_at":"Wed - Mar 04 13:48:04 +0000 2009","favourites_count":11243,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":33635,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A39E96","profile_background_image_url":"http:\/\/abs.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\/1205491405503815680\/1nzBX0Eo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205491405503815680\/1nzBX0Eo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22771961\/1576257752","profile_link_color":"ABB8C2","profile_sidebar_border_color":"33363D","profile_sidebar_fill_color":"AD9D6B","profile_text_color":"3D2406","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3712,"favorite_count":11202,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3712,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695413190657,"id_str":"1235246695413190657","text":"RT - @B52Malmet: Breaking: Los Angeles-area officials declare emergency, confirm - new #coronavirus cases https:\/\/t.co\/86Rq49xiR3","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[83,95]}],"symbols":[],"user_mentions":[{"screen_name":"B52Malmet","name":"Barbara - Malmet","id":2876041031,"id_str":"2876041031","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/86Rq49xiR3","expanded_url":"https:\/\/www.cnbc.com\/2020\/03\/04\/los-angeles-area-officials-declare-local-emergency-confirm-new-coronavirus-cases.html?__source=iosappshare%7Ccom.apple.UIKit.activity.PostToTwitter","display_url":"cnbc.com\/2020\/03\/04\/los\u2026","indices":[103,126]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241604859,"id_str":"241604859","name":"M - A K","screen_name":"MAK7591","location":"Southern California","description":"Biological - mind, rational thought - Keep Listening - Keep Learning - Stand Free - Life - is not single issue - esto benignus - https:\/\/t.co\/UJKYptiDFo","url":"https:\/\/t.co\/QL27lybQKi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QL27lybQKi","expanded_url":"http:\/\/www.instagram.com\/lookslikeitmeansthings\/","display_url":"instagram.com\/lookslikeitmea\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UJKYptiDFo","expanded_url":"http:\/\/etsy.com\/shop\/mak531","display_url":"etsy.com\/shop\/mak531","indices":[128,151]}]}},"protected":false,"followers_count":3710,"friends_count":4983,"listed_count":138,"created_at":"Sat - Jan 22 17:42:59 +0000 2011","favourites_count":39698,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":219338,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1036708915940012032\/Xx7omC0j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1036708915940012032\/Xx7omC0j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241604859\/1392581827","profile_link_color":"9266CC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:46:36 +0000 2020","id":1235245267194126339,"id_str":"1235245267194126339","text":"Breaking: - Los Angeles-area officials declare emergency, confirm new #coronavirus cases https:\/\/t.co\/86Rq49xiR3","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[68,80]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/86Rq49xiR3","expanded_url":"https:\/\/www.cnbc.com\/2020\/03\/04\/los-angeles-area-officials-declare-local-emergency-confirm-new-coronavirus-cases.html?__source=iosappshare%7Ccom.apple.UIKit.activity.PostToTwitter","display_url":"cnbc.com\/2020\/03\/04\/los\u2026","indices":[88,111]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2876041031,"id_str":"2876041031","name":"Barbara - Malmet","screen_name":"B52Malmet","location":"New York, NY","description":"Artist, - Activist, TriAthlete, Producer- The democracy you save is your own. #ProtectTheFreePress - #WomensRightsAreHumanRights","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":157889,"friends_count":6798,"listed_count":375,"created_at":"Fri - Nov 14 05:18:51 +0000 2014","favourites_count":656441,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":292088,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876041031\/1579491738","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":135,"favorite_count":122,"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695346249729,"id_str":"1235246695346249729","text":"RT - @MelPrzz: Plata, tetas, ganas de vivir, herencia millonaria, un t\u00edtulo, - coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MelPrzz","name":"\ud83d\udda4","id":1542096156,"id_str":"1542096156","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":962753018470035457,"id_str":"962753018470035457","name":"ktitA\ud83d\udc9a","screen_name":"Cataurtubey1","location":"C\u00f3rdoba, - Argentina","description":"cheerleading IACC \ud83c\udf80 instagram: cataurtubey_","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":261,"listed_count":0,"created_at":"Sun - Feb 11 18:19:41 +0000 2018","favourites_count":7822,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5269,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181207396124958721\/qbj-Rwgu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181207396124958721\/qbj-Rwgu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/962753018470035457\/1566237462","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 02:35:06 +0000 2020","id":1235030981553217536,"id_str":"1235030981553217536","text":"Plata, - tetas, ganas de vivir, herencia millonaria, un t\u00edtulo, coronavirus https:\/\/t.co\/JkgpUyOAVl","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JkgpUyOAVl","expanded_url":"https:\/\/twitter.com\/UnManChevere\/status\/1231949299568840705","display_url":"twitter.com\/UnManChevere\/s\u2026","indices":[74,97]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1542096156,"id_str":"1542096156","name":"\ud83d\udda4","screen_name":"MelPrzz","location":"Buenos - Aires, Argentina","description":"https:\/\/t.co\/bVx5GXoM7Q","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/bVx5GXoM7Q","expanded_url":"http:\/\/instagram.com\/melprzz","display_url":"instagram.com\/melprzz","indices":[0,23]}]}},"protected":false,"followers_count":72290,"friends_count":108,"listed_count":119,"created_at":"Mon - Jun 24 00:08:47 +0000 2013","favourites_count":7204,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32026,"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\/1235607587506225153\/67UvYE1x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235607587506225153\/67UvYE1x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1542096156\/1582854853","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1231949299568840705,"quoted_status_id_str":"1231949299568840705","quoted_status":{"created_at":"Mon - Feb 24 14:29:36 +0000 2020","id":1231949299568840705,"id_str":"1231949299568840705","text":"Boomboclaat - https:\/\/t.co\/oPpY4zn8Cz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1231949297463242753,"id_str":"1231949297463242753","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/ERjDW-CWsAE1O0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ERjDW-CWsAE1O0e.jpg","url":"https:\/\/t.co\/oPpY4zn8Cz","display_url":"pic.twitter.com\/oPpY4zn8Cz","expanded_url":"https:\/\/twitter.com\/UnManChevere\/status\/1231949299568840705\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":643,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":709,"resize":"fit"},"medium":{"w":750,"h":709,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1231949297463242753,"id_str":"1231949297463242753","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/ERjDW-CWsAE1O0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ERjDW-CWsAE1O0e.jpg","url":"https:\/\/t.co\/oPpY4zn8Cz","display_url":"pic.twitter.com\/oPpY4zn8Cz","expanded_url":"https:\/\/twitter.com\/UnManChevere\/status\/1231949299568840705\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":643,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":709,"resize":"fit"},"medium":{"w":750,"h":709,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1130173831786696706,"id_str":"1130173831786696706","name":"UN - MAN CH\u00c9VERE \ud83d\uddef","screen_name":"UnManChevere","location":"Colombia","description":"Hablando - ch\u00e9vere desde los 90''s \ud83c\udfdd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":914,"friends_count":393,"listed_count":0,"created_at":"Sun - May 19 18:10:13 +0000 2019","favourites_count":9702,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3296,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229824321595547651\/zLLQ6JNO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229824321595547651\/zLLQ6JNO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1130173831786696706\/1580417574","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":138,"favorite_count":2555,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"retweet_count":2515,"favorite_count":5729,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1231949299568840705,"quoted_status_id_str":"1231949299568840705","retweet_count":2515,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695291785217,"id_str":"1235246695291785217","text":"RT - @broderick: Uber finally gave drivers coronavirus guidelines: \n\n\u2022 If - you feel sick, stay home.\n\u2022 Wash your hands frequently.\n\u2022 Cover - you\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"broderick","name":"Ryan - Broderick","id":18205531,"id_str":"18205531","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":713523308805939200,"id_str":"713523308805939200","name":"Irene - Elizabeth Minge","screen_name":"IreneEl23951229","location":"","description":"Love - knitting, take photos, read, listen to music and be with love of my life...\u2764","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":259,"listed_count":1,"created_at":"Sat - Mar 26 00:29:48 +0000 2016","favourites_count":198,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229089775669391365\/9-pOYIsT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229089775669391365\/9-pOYIsT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/713523308805939200\/1581872811","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 20:21:59 +0000 2020","id":1234574698035515401,"id_str":"1234574698035515401","text":"Uber - finally gave drivers coronavirus guidelines: \n\n\u2022 If you feel sick, - stay home.\n\u2022 Wash your hands frequently.\n\u2022\u2026 https:\/\/t.co\/dbu7F7KqPK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dbu7F7KqPK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234574698035515401","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":18205531,"id_str":"18205531","name":"Ryan - Broderick","screen_name":"broderick","location":"New York, I guess","description":"Senior - reporter @BuzzFeedNews. @iexplorer podcast. Lots of typos. Open DMs. Send - tips. Email: ryan@buzzfeed.com https:\/\/t.co\/FY9mN44qa2","url":"https:\/\/t.co\/z9Bjj1EEut","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/z9Bjj1EEut","expanded_url":"http:\/\/Instagram.com\/ryanhatesthis","display_url":"Instagram.com\/ryanhatesthis","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/FY9mN44qa2","expanded_url":"https:\/\/garbageday.substack.com","display_url":"garbageday.substack.com","indices":[112,135]}]}},"protected":false,"followers_count":60436,"friends_count":1688,"listed_count":1703,"created_at":"Thu - Dec 18 01:29:08 +0000 2008","favourites_count":18403,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":77199,"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\/1141015603353968640\/tBokIZXy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141015603353968640\/tBokIZXy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18205531\/1422647849","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":126,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":61,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695182565377,"id_str":"1235246695182565377","text":"RT - @julioastillero: \u00bfQui\u00e9nes est\u00e1n ganando dinero con el coronavirus - COVID-19?\nhttps:\/\/t.co\/nHm8QhxJ5r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"julioastillero","name":"Julio - Astillero","id":52422182,"id_str":"52422182","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/nHm8QhxJ5r","expanded_url":"https:\/\/julioastillero.com\/quienes-estan-ganando-dinero-con-el-coronavirus-covid-19\/","display_url":"julioastillero.com\/quienes-estan-\u2026","indices":[79,102]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87380649,"id_str":"87380649","name":"Angeles - Guerrero","screen_name":"zadakadula","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":754,"friends_count":272,"listed_count":8,"created_at":"Wed - Nov 04 06:44:30 +0000 2009","favourites_count":6811,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5641,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879536020743696384\/9jtiUkVc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879536020743696384\/9jtiUkVc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87380649\/1498532704","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:16:43 +0000 2020","id":1235237748065406976,"id_str":"1235237748065406976","text":"\u00bfQui\u00e9nes - est\u00e1n ganando dinero con el coronavirus COVID-19?\nhttps:\/\/t.co\/nHm8QhxJ5r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nHm8QhxJ5r","expanded_url":"https:\/\/julioastillero.com\/quienes-estan-ganando-dinero-con-el-coronavirus-covid-19\/","display_url":"julioastillero.com\/quienes-estan-\u2026","indices":[59,82]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52422182,"id_str":"52422182","name":"Julio - Astillero","screen_name":"julioastillero","location":"Ciudad de M\u00e9xico","description":"Los - comentarios que realizo aqu\u00ed corresponden estrictamente a mi opini\u00f3n - personal y no tienen ninguna relaci\u00f3n con alguno de los medios en los - que colaboro.","url":"https:\/\/t.co\/roGlHC0JlG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/roGlHC0JlG","expanded_url":"http:\/\/www.julioastillero.com","display_url":"julioastillero.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":634154,"friends_count":31274,"listed_count":3883,"created_at":"Tue - Jun 30 15:20:55 +0000 2009","favourites_count":1113,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":240405,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/426006258089340928\/4HTqjiTI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/426006258089340928\/4HTqjiTI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52422182\/1495743568","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":80,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":53,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695170093057,"id_str":"1235246695170093057","text":"WAIT - SHIT SHIT WHAT DOES CORONAVIRUS MEAN FOR EUROVISION","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213294439,"id_str":"213294439","name":"\ud83e\udd37\ud83c\udffb\u200d\u2642\ufe0f - Neil Brennan \ud83e\udd37\ud83c\udffb\u200d\u2642\ufe0f","screen_name":"nrdbrennan","location":"London","description":"Content - @Pleo, formerly @BBCNews, @LBC. Made a podcast about my hero: @roykeaneversus.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1449,"friends_count":886,"listed_count":26,"created_at":"Mon - Nov 08 14:44:16 +0000 2010","favourites_count":10055,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13029,"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\/1234249145084452873\/bC8greR0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234249145084452873\/bC8greR0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213294439\/1583102990","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246695098671104,"id_str":"1235246695098671104","text":"The - University of Oregon now has a specific website for info about the Coronavirus. - Please check that site for late\u2026 https:\/\/t.co\/VHi6Mal25P","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VHi6Mal25P","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246695098671104","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1900789958,"id_str":"1900789958","name":"Equity - and Inclusion","screen_name":"UOEquity","location":"University of Oregon","description":"Celebrating - Diversity.\nFacilitating Equity and Inclusiveness.\nInspiring Positive Change.","url":"https:\/\/t.co\/CQ3SoFrSWD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CQ3SoFrSWD","expanded_url":"https:\/\/inclusion.uoregon.edu\/","display_url":"inclusion.uoregon.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":585,"friends_count":382,"listed_count":16,"created_at":"Tue - Sep 24 15:10:18 +0000 2013","favourites_count":164,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2741,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EEEDEA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/872118272686145536\/KfDjiD5S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/872118272686145536\/KfDjiD5S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1900789958\/1574719067","profile_link_color":"749125","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694977228800,"id_str":"1235246694977228800","text":"#Salud\n\nCoronavirus: - El primer argentino que se contagi\u00f3 en el crucero japon\u00e9s se recuper\u00f3 - y volvi\u00f3 al pa\u00eds\u2026 https:\/\/t.co\/BthE19naiy","truncated":true,"entities":{"hashtags":[{"text":"Salud","indices":[0,6]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BthE19naiy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246694977228800","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":256131135,"id_str":"256131135","name":"El - Comodorense","screen_name":"ElComodorense","location":"Comodoro Rivadavia","description":"La - realidad que nos toca de cerca, en todo momento.","url":"http:\/\/t.co\/G4lW7Pz6R9","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/G4lW7Pz6R9","expanded_url":"http:\/\/www.elcomodorense.net","display_url":"elcomodorense.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":16469,"friends_count":483,"listed_count":100,"created_at":"Tue - Feb 22 18:35:43 +0000 2011","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":135224,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"008DD1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214595734332477440\/klKvUHm5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214595734332477440\/klKvUHm5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256131135\/1581594593","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694851317760,"id_str":"1235246694851317760","text":"RT - @CamCrustulum: Las medidas que se deber\u00edan estar tomando contra el coronavirus - seg\u00fan los alarmistas: https:\/\/t.co\/YWEwmysczX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CamCrustulum","name":"Cam","id":1610234400,"id_str":"1610234400","indices":[3,16]}],"urls":[],"media":[{"id":1235237171860209666,"id_str":"1235237171860209666","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235237171860209666\/pu\/img\/oEPPTTZzEsWMp7jr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235237171860209666\/pu\/img\/oEPPTTZzEsWMp7jr.jpg","url":"https:\/\/t.co\/YWEwmysczX","display_url":"pic.twitter.com\/YWEwmysczX","expanded_url":"https:\/\/twitter.com\/CamCrustulum\/status\/1235237219180466176\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":848,"h":480,"resize":"fit"},"medium":{"w":848,"h":480,"resize":"fit"},"small":{"w":680,"h":385,"resize":"fit"}},"source_status_id":1235237219180466176,"source_status_id_str":"1235237219180466176","source_user_id":1610234400,"source_user_id_str":"1610234400"}]},"extended_entities":{"media":[{"id":1235237171860209666,"id_str":"1235237171860209666","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235237171860209666\/pu\/img\/oEPPTTZzEsWMp7jr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235237171860209666\/pu\/img\/oEPPTTZzEsWMp7jr.jpg","url":"https:\/\/t.co\/YWEwmysczX","display_url":"pic.twitter.com\/YWEwmysczX","expanded_url":"https:\/\/twitter.com\/CamCrustulum\/status\/1235237219180466176\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":848,"h":480,"resize":"fit"},"medium":{"w":848,"h":480,"resize":"fit"},"small":{"w":680,"h":385,"resize":"fit"}},"source_status_id":1235237219180466176,"source_status_id_str":"1235237219180466176","source_user_id":1610234400,"source_user_id_str":"1610234400","video_info":{"aspect_ratio":[53,30],"duration_millis":13360,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235237171860209666\/pu\/vid\/476x270\/dzHinzlsQLM0bDZp.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235237171860209666\/pu\/pl\/-YTOQYeUIqOJmMKB.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235237171860209666\/pu\/vid\/848x480\/2nMC3UbSygbtq3_U.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235237171860209666\/pu\/vid\/636x360\/7jLnBZqDdB_c1EXq.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":1610234400,"id_str":"1610234400","name":"Cam","screen_name":"CamCrustulum","location":"Sevilla, - Andaluc\u00eda","description":"Biolog\u00eda US\ud83d\udc1d | Le ped\u00ed - a Pap\u00e1 Noel ganas de vivir pero las perdi\u00f3 por el camino","url":"https:\/\/t.co\/8UAER9fOS4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8UAER9fOS4","expanded_url":"https:\/\/www.instagram.com\/cam.icy\/","display_url":"instagram.com\/cam.icy\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2965,"friends_count":664,"listed_count":28,"created_at":"Sun - Jul 21 10:41:06 +0000 2013","favourites_count":49762,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43519,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1209420569290182656\/i_LD3inb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209420569290182656\/i_LD3inb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1610234400\/1566574655","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"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":543739067,"id_str":"543739067","name":"Jorge","screen_name":"NemesisCruz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":2145,"listed_count":0,"created_at":"Mon - Apr 02 21:12:40 +0000 2012","favourites_count":1952,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2978,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2021246862\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2021246862\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/543739067\/1478486441","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:14:37 +0000 2020","id":1235237219180466176,"id_str":"1235237219180466176","text":"Las - medidas que se deber\u00edan estar tomando contra el coronavirus seg\u00fan - los alarmistas: https:\/\/t.co\/YWEwmysczX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235237171860209666,"id_str":"1235237171860209666","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235237171860209666\/pu\/img\/oEPPTTZzEsWMp7jr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235237171860209666\/pu\/img\/oEPPTTZzEsWMp7jr.jpg","url":"https:\/\/t.co\/YWEwmysczX","display_url":"pic.twitter.com\/YWEwmysczX","expanded_url":"https:\/\/twitter.com\/CamCrustulum\/status\/1235237219180466176\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":848,"h":480,"resize":"fit"},"medium":{"w":848,"h":480,"resize":"fit"},"small":{"w":680,"h":385,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235237171860209666,"id_str":"1235237171860209666","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235237171860209666\/pu\/img\/oEPPTTZzEsWMp7jr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235237171860209666\/pu\/img\/oEPPTTZzEsWMp7jr.jpg","url":"https:\/\/t.co\/YWEwmysczX","display_url":"pic.twitter.com\/YWEwmysczX","expanded_url":"https:\/\/twitter.com\/CamCrustulum\/status\/1235237219180466176\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":848,"h":480,"resize":"fit"},"medium":{"w":848,"h":480,"resize":"fit"},"small":{"w":680,"h":385,"resize":"fit"}},"video_info":{"aspect_ratio":[53,30],"duration_millis":13360,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235237171860209666\/pu\/vid\/476x270\/dzHinzlsQLM0bDZp.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235237171860209666\/pu\/pl\/-YTOQYeUIqOJmMKB.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235237171860209666\/pu\/vid\/848x480\/2nMC3UbSygbtq3_U.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235237171860209666\/pu\/vid\/636x360\/7jLnBZqDdB_c1EXq.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1610234400,"id_str":"1610234400","name":"Cam","screen_name":"CamCrustulum","location":"Sevilla, - Andaluc\u00eda","description":"Biolog\u00eda US\ud83d\udc1d | Le ped\u00ed - a Pap\u00e1 Noel ganas de vivir pero las perdi\u00f3 por el camino","url":"https:\/\/t.co\/8UAER9fOS4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8UAER9fOS4","expanded_url":"https:\/\/www.instagram.com\/cam.icy\/","display_url":"instagram.com\/cam.icy\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2965,"friends_count":664,"listed_count":28,"created_at":"Sun - Jul 21 10:41:06 +0000 2013","favourites_count":49762,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43519,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1209420569290182656\/i_LD3inb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209420569290182656\/i_LD3inb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1610234400\/1566574655","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":94,"favorite_count":242,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":94,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694738137089,"id_str":"1235246694738137089","text":"Later - ~I''ll do my best to drink away the #coronavirus .\ud83d\ude06Have a fab Wednesday - .\u270c\ud83c\udf7a\ud83c\udfbc https:\/\/t.co\/UtmMhUYHhJ","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[41,53]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235246684357222400,"id_str":"1235246684357222400","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6UJcXYAAv5du.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6UJcXYAAv5du.jpg","url":"https:\/\/t.co\/UtmMhUYHhJ","display_url":"pic.twitter.com\/UtmMhUYHhJ","expanded_url":"https:\/\/twitter.com\/Nevaehville8\/status\/1235246694738137089\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235246684357222400,"id_str":"1235246684357222400","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6UJcXYAAv5du.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6UJcXYAAv5du.jpg","url":"https:\/\/t.co\/UtmMhUYHhJ","display_url":"pic.twitter.com\/UtmMhUYHhJ","expanded_url":"https:\/\/twitter.com\/Nevaehville8\/status\/1235246694738137089\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":326803872,"id_str":"326803872","name":"Lynn\ud83c\udfbc","screen_name":"Nevaehville8","location":"","description":"\ud83c\udfb6 - I know a place where a royal flush can never beat a pair \ud83c\udfb6","url":"https:\/\/t.co\/UPM7Y2hWps","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UPM7Y2hWps","expanded_url":"https:\/\/youtu.be\/ar3gpz9HXjc","display_url":"youtu.be\/ar3gpz9HXjc","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6367,"friends_count":438,"listed_count":67,"created_at":"Thu - Jun 30 14:28:32 +0000 2011","favourites_count":112250,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":58977,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232752478791356416\/zuISSZ4e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232752478791356416\/zuISSZ4e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/326803872\/1581533572","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694675230731,"id_str":"1235246694675230731","text":"Para - evitar a transmiss\u00e3o do coronav\u00edrus evite pessoas.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2276677996,"id_str":"2276677996","name":"\u3164 \u3164 \u3164 \u3164 \u3164\u3164 \u3164","screen_name":"cronauta","location":"Bel\u00e9m - - PA","description":"English teacher, escritor e sem p\u00e1gina na Wikipedia.","url":"https:\/\/t.co\/up4R60BzEW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/up4R60BzEW","expanded_url":"http:\/\/w.tt\/1SL5pbO","display_url":"w.tt\/1SL5pbO","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5975,"friends_count":45,"listed_count":19,"created_at":"Sun - Jan 12 11:30:41 +0000 2014","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":51611,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/674231593683148800\/v6zYT42b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/674231593683148800\/v6zYT42b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2276677996\/1451790149","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694654259202,"id_str":"1235246694654259202","text":"RT - @nytimesworld: The World Health Organization confirmed that Covid-19 is deadlier - than the seasonal flu, but does not transmit as easily.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimesworld","name":"New - York Times World","id":1877831,"id_str":"1877831","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1571764860,"id_str":"1571764860","name":"HeatNation - WPB \ud83c\udfc6\ud83c\udfc6\ud83c\udfc6","screen_name":"HeatNationWPB","location":"West - Palm Beach, FL","description":"#HEATCulture in West Palm Beach, FL (formerly - @BillyMiz311) | Too many RT''s, misguided opinions, & lots n'' lots of \ud83d\udd25 - emojis | #HeatTwitter #NBATwitter | IFB \ud83c\udfc0","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1230,"friends_count":1402,"listed_count":11,"created_at":"Sat - Jul 06 02:21:55 +0000 2013","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9223,"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\/1169052199994966016\/kpxVsgUk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169052199994966016\/kpxVsgUk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1571764860\/1581013134","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 11:34:18 +0000 2020","id":1235166676309676032,"id_str":"1235166676309676032","text":"The - World Health Organization confirmed that Covid-19 is deadlier than the seasonal - flu, but does not transmit as e\u2026 https:\/\/t.co\/f073MtSFBO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/f073MtSFBO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235166676309676032","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1877831,"id_str":"1877831","name":"New - York Times World","screen_name":"nytimesworld","location":"New York, London, - Hong Kong","description":"World news from The New York Times. Follow our journalists - here: https:\/\/t.co\/dZjTQkxoyM","url":"https:\/\/t.co\/JSlkdhLzCD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JSlkdhLzCD","expanded_url":"http:\/\/nytimes.com\/world","display_url":"nytimes.com\/world","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/dZjTQkxoyM","expanded_url":"http:\/\/bit.ly\/1pHrbd6","display_url":"bit.ly\/1pHrbd6","indices":[65,88]}]}},"protected":false,"followers_count":1996799,"friends_count":915,"listed_count":20259,"created_at":"Thu - Mar 22 13:59:49 +0000 2007","favourites_count":3371,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":254959,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/966009454079684609\/6rPptWsI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/966009454079684609\/6rPptWsI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1877831\/1542723215","profile_link_color":"004276","profile_sidebar_border_color":"333333","profile_sidebar_fill_color":"E7EFF8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3322,"favorite_count":5161,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3322,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694620684289,"id_str":"1235246694620684289","text":"RT - @HKrassenstein: Trump doesn\u2019t want the public to be educated on Coronavirus - because he wants to be able to tell us whatever he wants in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HKrassenstein","name":"Ms. - Krassenstein","id":963790885937995777,"id_str":"963790885937995777","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":947605809596334080,"id_str":"947605809596334080","name":"SocialWJustice","screen_name":"SocialWJustice1","location":"","description":"Married, - SocialWorker, loves dogs, travel, baseball and Tai Chi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":257,"friends_count":651,"listed_count":0,"created_at":"Sun - Dec 31 23:10:05 +0000 2017","favourites_count":48459,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31592,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 11:25:05 +0000 2020","id":1234801970256523266,"id_str":"1234801970256523266","text":"Trump - doesn\u2019t want the public to be educated on Coronavirus because he wants - to be able to tell us whatever he want\u2026 https:\/\/t.co\/xhfwAqtzPT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xhfwAqtzPT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234801970256523266","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":963790885937995777,"id_str":"963790885937995777","name":"Ms. - Krassenstein","screen_name":"HKrassenstein","location":"Fort Myers, FL","description":"Mother - of two awesome kids. \nWife of a Krassenstein brother :)\n#Resist\nEmail: - krassensteinmail@protonmail.com\nHusband''s FB: https:\/\/t.co\/Xxw3zH00D1","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/Xxw3zH00D1","expanded_url":"http:\/\/facebook.com\/Krassensteins","display_url":"facebook.com\/Krassensteins","indices":[124,147]}]}},"protected":false,"followers_count":32468,"friends_count":2601,"listed_count":107,"created_at":"Wed - Feb 14 15:03:48 +0000 2018","favourites_count":556,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2101,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1187004398720954368\/O_J7exRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1187004398720954368\/O_J7exRl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/963790885937995777\/1571864027","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2225,"favorite_count":5659,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2225,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694448721920,"id_str":"1235246694448721920","text":"RT - @BarbMcQuade: Disruption of our country is fun for some, but the Coronavirus - reminds us of the importance of good government. Now is a t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarbMcQuade","name":"Barb - McQuade","id":20094409,"id_str":"20094409","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2773472224,"id_str":"2773472224","name":"CLegan","screen_name":"yuillc66","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":162,"listed_count":1,"created_at":"Wed - Sep 17 12:12:09 +0000 2014","favourites_count":7084,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/767869871631634433\/svntUJm8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/767869871631634433\/svntUJm8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:27:26 +0000 2020","id":1235195147526320129,"id_str":"1235195147526320129","text":"Disruption - of our country is fun for some, but the Coronavirus reminds us of the importance - of good government. Now\u2026 https:\/\/t.co\/Kal8cVZTmF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Kal8cVZTmF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235195147526320129","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20094409,"id_str":"20094409","name":"Barb - McQuade","screen_name":"BarbMcQuade","location":"Ann Arbor, MI","description":"@UMichLaw - prof; legal analyst @NBCNews, @MSNBC; former US Attorney, national security - prosecutor, Eastern District Michigan; @Tigers, @UMich fan; wife, mom of 4","url":"https:\/\/t.co\/hDqJjIHXvP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hDqJjIHXvP","expanded_url":"https:\/\/www.law.umich.edu\/FacultyBio\/Pages\/FacultyBio.aspx?FacID=bmcquade","display_url":"law.umich.edu\/FacultyBio\/Pag\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313581,"friends_count":995,"listed_count":1538,"created_at":"Wed - Feb 04 21:14:05 +0000 2009","favourites_count":14154,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":3594,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214033149547532289\/tVwydXii_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214033149547532289\/tVwydXii_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20094409\/1497574923","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"92b2158a6d509767","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/92b2158a6d509767.json","place_type":"city","name":"Ann - Arbor","full_name":"Ann Arbor, MI","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.800262,42.215087],[-83.659681,42.215087],[-83.659681,42.326592],[-83.800262,42.326592]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":723,"favorite_count":4001,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":723,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694343860224,"id_str":"1235246694343860224","text":"RT - @BettyBowers: @CNN NARRATOR: \"Which meant Mr. Trump gave $30,000 less for - addressing the Coronavirus than he did for screwing a porn sta\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BettyBowers","name":"Mrs. - Betty Bowers","id":46775436,"id_str":"46775436","indices":[3,15]},{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[17,21]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2771291100,"id_str":"2771291100","name":"Mike - Laux","screen_name":"Mike_Laux","location":"Chicago, Little Rock","description":"@WisconsinLaw-trained - Civil Rights Attorney","url":"https:\/\/t.co\/TgRJW1nzHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TgRJW1nzHX","expanded_url":"http:\/\/www.lauxlawgroup.com","display_url":"lauxlawgroup.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":549,"friends_count":176,"listed_count":10,"created_at":"Tue - Aug 26 21:33:27 +0000 2014","favourites_count":8791,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12740,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216968879483703297\/Mb6yo1Af_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216968879483703297\/Mb6yo1Af_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2771291100\/1573671233","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 02:41:57 +0000 2020","id":1235032705911246848,"id_str":"1235032705911246848","text":"@CNN - NARRATOR: \"Which meant Mr. Trump gave $30,000 less for addressing the Coronavirus - than he did for screwing a p\u2026 https:\/\/t.co\/CBo0pSWCIw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[0,4]}],"urls":[{"url":"https:\/\/t.co\/CBo0pSWCIw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235032705911246848","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1235002042541920258,"in_reply_to_status_id_str":"1235002042541920258","in_reply_to_user_id":759251,"in_reply_to_user_id_str":"759251","in_reply_to_screen_name":"CNN","user":{"id":46775436,"id_str":"46775436","name":"Mrs. - Betty Bowers","screen_name":"BettyBowers","location":"The Only Country God - Speaks To","description":"Support my work at: https:\/\/t.co\/KOMoL6qQBe\u2026\nhttps:\/\/t.co\/1zg7R3aH1p\nhttps:\/\/t.co\/1527PsIdoE\nCONTACT - ME: Americasbestchristian@gmail.com","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/KOMoL6qQBe","expanded_url":"http:\/\/paypal.com\/cgi-bin\/webscr","display_url":"paypal.com\/cgi-bin\/webscr","indices":[21,44]},{"url":"https:\/\/t.co\/1zg7R3aH1p","expanded_url":"http:\/\/patreon.com\/MrsBettyBowers","display_url":"patreon.com\/MrsBettyBowers","indices":[46,69]},{"url":"https:\/\/t.co\/1527PsIdoE","expanded_url":"http:\/\/cameo.com\/mrsbettybowers","display_url":"cameo.com\/mrsbettybowers","indices":[70,93]}]}},"protected":false,"followers_count":251614,"friends_count":479,"listed_count":2425,"created_at":"Fri - Jun 12 23:28:17 +0000 2009","favourites_count":6154,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18569,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C7589F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195158958589300739\/ZaKgu_Dt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195158958589300739\/ZaKgu_Dt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46775436\/1573927288","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":258,"favorite_count":1447,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":258,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694247391234,"id_str":"1235246694247391234","text":"RT - @tedlieu: I just spoke with Los Angeles County Supervisor Janice Hahn. She - informed me that as of last week, they had a total of 1 coron\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedlieu","name":"Ted - Lieu","id":21059255,"id_str":"21059255","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266811389,"id_str":"266811389","name":"Jane - De Angeli","screen_name":"bookwormwmb","location":"maryland","description":"Works - with HS students to enable greater access to higher education. Daughter of - 2 WWII veterans. Dog parent to two black labs. Immigrant.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":98,"friends_count":702,"listed_count":2,"created_at":"Tue - Mar 15 21:25:54 +0000 2011","favourites_count":11412,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7814,"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\/1226326892321497089\/r3-lLgA2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226326892321497089\/r3-lLgA2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266811389\/1581214091","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:23:44 +0000 2020","id":1235224415266275330,"id_str":"1235224415266275330","text":"I - just spoke with Los Angeles County Supervisor Janice Hahn. She informed me - that as of last week, they had a total\u2026 https:\/\/t.co\/I6UrtkDWuq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/I6UrtkDWuq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235224415266275330","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21059255,"id_str":"21059255","name":"Ted - Lieu","screen_name":"tedlieu","location":"California","description":"Husband - of Betty, the love of my life. Father of two great kids. USAF veteran. Member - of Congress. In that order. Also, I don''t take orders from Vladimir Putin.","url":"https:\/\/t.co\/YZX138uDSy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YZX138uDSy","expanded_url":"http:\/\/www.TedLieu.com","display_url":"TedLieu.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251529,"friends_count":9798,"listed_count":7170,"created_at":"Tue - Feb 17 03:12:31 +0000 2009","favourites_count":50598,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":24133,"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\/537271043937673217\/3O1qePzP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537271043937673217\/3O1qePzP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21059255\/1485531357","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235071101358743552,"quoted_status_id_str":"1235071101358743552","quoted_status":{"created_at":"Wed - Mar 04 05:14:31 +0000 2020","id":1235071101358743552,"id_str":"1235071101358743552","text":"#BREAKING: - Second case of coronavirus in LA County was confirmed by Kaiser Permanente - West Los Angeles Medical Cent\u2026 https:\/\/t.co\/gwGxT1RDZ2","truncated":true,"entities":{"hashtags":[{"text":"BREAKING","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gwGxT1RDZ2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235071101358743552","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":24928809,"id_str":"24928809","name":"CBS - Los Angeles","screen_name":"CBSLA","location":"Los Angeles","description":"CBSLA - is CBS2 and KCAL9: Local and Breaking News, Sports, Weather and the Best of - LA and OC. \nDownload our app for BREAKING NEWS: https:\/\/t.co\/i1Mp9WsUTH","url":"http:\/\/t.co\/UG5Q3S72j8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/UG5Q3S72j8","expanded_url":"http:\/\/cbsLA.com\/","display_url":"cbsLA.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/i1Mp9WsUTH","expanded_url":"http:\/\/apps.cbslocal.com\/","display_url":"apps.cbslocal.com","indices":[130,153]}]}},"protected":false,"followers_count":214346,"friends_count":2308,"listed_count":3489,"created_at":"Tue - Mar 17 18:40:17 +0000 2009","favourites_count":1131,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":169951,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000033","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\/960690815361306625\/aAingYfa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/960690815361306625\/aAingYfa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24928809\/1560452651","profile_link_color":"080C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C9C7C9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":579,"favorite_count":629,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":8929,"favorite_count":16564,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235071101358743552,"quoted_status_id_str":"1235071101358743552","retweet_count":8929,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694125711360,"id_str":"1235246694125711360","text":"RT - @CharliB97783485: Quand le pote \u00e0 #Benalla s''\u00e9quipe pour lutter - contre le #coronavirus \ud83d\ude43 (je vous rappelle qu''il est d\u00e9put\u00e9...)\n\n#sonfor\u2026","truncated":false,"entities":{"hashtags":[{"text":"Benalla","indices":[37,45]},{"text":"coronavirus","indices":[77,89]}],"symbols":[],"user_mentions":[{"screen_name":"CharliB97783485","name":"Charli\u2600\ufe0f\ud83e\udd8e","id":1119646053102493696,"id_str":"1119646053102493696","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":718487389,"id_str":"718487389","name":"UE= - Machin IRREFORMABLE,c inscrit dans les trait\u00e9s","screen_name":"SissiPatriote","location":"","description":"Le - bon de la Gauche+le bon de la Droite= La France\ud83c\udf1e\nLe mauvais de - la Gauche+le mauvais de la Droite= Les pb actuels.\n\nSouverainet\u00e9 d''abord,on - d\u00e9bat apr\u00e8s. #UPR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8116,"friends_count":1698,"listed_count":74,"created_at":"Thu - Jul 26 18:17:22 +0000 2012","favourites_count":73456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8145,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3B94D9","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\/1040203087611355137\/GEejhCD1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1040203087611355137\/GEejhCD1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718487389\/1583081999","profile_link_color":"FA5882","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:49:19 +0000 2020","id":1234913765495275526,"id_str":"1234913765495275526","text":"Quand - le pote \u00e0 #Benalla s''\u00e9quipe pour lutter contre le #coronavirus - \ud83d\ude43 (je vous rappelle qu''il est d\u00e9put\u00e9...)\u2026 https:\/\/t.co\/QrIjMoL8gX","truncated":true,"entities":{"hashtags":[{"text":"Benalla","indices":[16,24]},{"text":"coronavirus","indices":[56,68]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QrIjMoL8gX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234913765495275526","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1119646053102493696,"id_str":"1119646053102493696","name":"Charli\u2600\ufe0f\ud83e\udd8e","screen_name":"CharliB97783485","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1039,"friends_count":301,"listed_count":6,"created_at":"Sat - Apr 20 16:56:35 +0000 2019","favourites_count":21380,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18295,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149203886353334272\/wmkEK2t-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149203886353334272\/wmkEK2t-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1119646053102493696\/1562827227","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234911583098241025,"quoted_status_id_str":"1234911583098241025","quoted_status":{"created_at":"Tue - Mar 03 18:40:39 +0000 2020","id":1234911583098241025,"id_str":"1234911583098241025","text":"@tyler_durden345 - @tropical_boy Il va bien apparemment !! https:\/\/t.co\/sIiHK7KwjV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tyler_durden345","name":"T - Yler Durden","id":810063638593699840,"id_str":"810063638593699840","indices":[0,16]},{"screen_name":"tropical_boy","name":"\ud83c\udf3a - \ud835\udde7\ud835\uddff\ud835\uddfc\ud835\uddfd\ud835\uddf6\ud835\uddf0\ud835\uddee\ud835\uddf9 - \ud835\uddd5\ud835\uddfc\ud835\ude06 \ud83c\udf3a","id":450667485,"id_str":"450667485","indices":[17,30]}],"urls":[],"media":[{"id":1234911573761777666,"id_str":"1234911573761777666","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/ESNJiJMW4AId5Qh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESNJiJMW4AId5Qh.jpg","url":"https:\/\/t.co\/sIiHK7KwjV","display_url":"pic.twitter.com\/sIiHK7KwjV","expanded_url":"https:\/\/twitter.com\/oussbakk\/status\/1234911583098241025\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1203,"resize":"fit"},"small":{"w":610,"h":680,"resize":"fit"},"medium":{"w":1077,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234911573761777666,"id_str":"1234911573761777666","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/ESNJiJMW4AId5Qh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESNJiJMW4AId5Qh.jpg","url":"https:\/\/t.co\/sIiHK7KwjV","display_url":"pic.twitter.com\/sIiHK7KwjV","expanded_url":"https:\/\/twitter.com\/oussbakk\/status\/1234911583098241025\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1203,"resize":"fit"},"small":{"w":610,"h":680,"resize":"fit"},"medium":{"w":1077,"h":1200,"resize":"fit"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234519083766484993,"in_reply_to_status_id_str":"1234519083766484993","in_reply_to_user_id":810063638593699840,"in_reply_to_user_id_str":"810063638593699840","in_reply_to_screen_name":"tyler_durden345","user":{"id":263241800,"id_str":"263241800","name":"Oussbak","screen_name":"oussbakk","location":"la - ou tra\u00eene le gwenn ha du","description":"C''est que le pouvoir est maudit, - et c''est pour cela que je suis anarchiste. L.M.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":193,"listed_count":0,"created_at":"Wed - Mar 09 17:33:40 +0000 2011","favourites_count":363,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":577,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217434355196485637\/Ry6IGf2t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217434355196485637\/Ry6IGf2t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263241800\/1578690314","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":64,"favorite_count":99,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"retweet_count":98,"favorite_count":100,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1234911583098241025,"quoted_status_id_str":"1234911583098241025","retweet_count":98,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246694100430853,"id_str":"1235246694100430853","text":"RT - @AriadneBoudicca: Why do we have to touch each other AT ALL when we meet each - other? Speaking for all introverts who have NEVER understo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AriadneBoudicca","name":"WiseWarrior69 - FOREVER \ud83c\udf93\ud83d\udcaa","id":1184297774788988928,"id_str":"1184297774788988928","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":955599478538588160,"id_str":"955599478538588160","name":"They - Call Me Cupcake \ud83e\uddc1\ud83c\udd98","screen_name":"MarteMcLovin","location":"Somewhere - Under the Rainbow","description":"I curse, A LOT, sorry not sorry. Don''t - dm me dic pics, I''m a lezbo. \ud83c\udff3\ufe0f\u200d\ud83c\udf08#LGBTQ #ChronicPain - #AnimalRights #wtp2020 #PRU #FuckTrump #FuckTheGOP #ImTheWorst \ud83d\udd95","url":"https:\/\/t.co\/HjuXQCrwmy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HjuXQCrwmy","expanded_url":"http:\/\/www.fucktrump.com","display_url":"fucktrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12119,"friends_count":11983,"listed_count":20,"created_at":"Tue - Jan 23 00:34:04 +0000 2018","favourites_count":29537,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22995,"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\/1045678319100821504\/FnfE5NjZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1045678319100821504\/FnfE5NjZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955599478538588160\/1563987940","profile_link_color":"0C5290","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:37:36 +0000 2020","id":1235243002462781441,"id_str":"1235243002462781441","text":"Why - do we have to touch each other AT ALL when we meet each other? Speaking for - all introverts who have NEVER under\u2026 https:\/\/t.co\/NKGxdidRUC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NKGxdidRUC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243002462781441","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1184297774788988928,"id_str":"1184297774788988928","name":"WiseWarrior69 - FOREVER \ud83c\udf93\ud83d\udcaa","screen_name":"AriadneBoudicca","location":"Jackson, - CA","description":"F\/T caregiver to my 30yo\ud83d\udc69\u200d\ud83e\uddbdDD - #IDIC15 \ud83d\udc8d to a \ud83d\udc3b Rabid Liberal, Shameless Cynic #Resist - #ISTJ #GeeksResist\ud83d\udd96I will cuss in Latin\ud83d\ude08\ud83c\udf93 - @wise_forever 4 Funnies\ud83e\udd23","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8180,"friends_count":8169,"listed_count":8,"created_at":"Wed - Oct 16 02:40:30 +0000 2019","favourites_count":19969,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4353,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184303846312407040\/54qc_DXq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184303846312407040\/54qc_DXq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1184297774788988928\/1575398724","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235232217363816449,"quoted_status_id_str":"1235232217363816449","quoted_status":{"created_at":"Wed - Mar 04 15:54:44 +0000 2020","id":1235232217363816449,"id_str":"1235232217363816449","text":"Rather - than shaking hands, Nebraska Gov. Pete Ricketts is encouraging people to bump - elbows to help stop the spread\u2026 https:\/\/t.co\/QdeO3mBEEy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QdeO3mBEEy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235232217363816449","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":759251,"id_str":"759251","name":"CNN","screen_name":"CNN","location":"","description":"It\u2019s - our job to #GoThere & tell the most difficult stories. Join us! For more breaking - news updates follow @CNNBRK & Download our app https:\/\/t.co\/UCHG9M367J","url":"http:\/\/t.co\/IaghNW8Xm2","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/IaghNW8Xm2","expanded_url":"http:\/\/www.cnn.com","display_url":"cnn.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UCHG9M367J","expanded_url":"http:\/\/cnn.com\/apps","display_url":"cnn.com\/apps","indices":[135,158]}]}},"protected":false,"followers_count":45355788,"friends_count":1107,"listed_count":142694,"created_at":"Fri - Feb 09 00:35:02 +0000 2007","favourites_count":1432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":289638,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"323232","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508960761826131968\/LnvhR8ED_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508960761826131968\/LnvhR8ED_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/759251\/1564637377","profile_link_color":"004287","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EEEEEE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1576,"favorite_count":5728,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235232217363816449,"quoted_status_id_str":"1235232217363816449","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693949616128,"id_str":"1235246693949616128","text":"RT - @CittadinidiTwtt: Le emergenze al tempo dei virus: la app AllertaLOM si aggiorna - per il #coronavirus https:\/\/t.co\/sMpRr72Mpq @RegLombard\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[91,103]}],"symbols":[],"user_mentions":[{"screen_name":"CittadinidiTwtt","name":"Nuova - Comunicazione","id":1878651816,"id_str":"1878651816","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/sMpRr72Mpq","expanded_url":"https:\/\/www.cittadiniditwitter.it\/news\/le-emergenze-al-tempo-dei-virus-la-app-allertalom-si-aggiorna-per-il-coronavirus\/","display_url":"cittadiniditwitter.it\/news\/le-emerge\u2026","indices":[104,127]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185722558,"id_str":"185722558","name":"OssMeteoGeoRaffaelli - dal 1883","screen_name":"Ossmeteobargone","location":"Bargone di Casarza Lig, - Italia","description":"Osservatorio Meteorologico,Agrario,Geologico Prof. - Don Gian Carlo Raffaelli Fondato nel 1883 a Bargone Casarza Ligure GE osservatorioraffaelli1883@gmail.com","url":"https:\/\/t.co\/yFSRihqpI1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yFSRihqpI1","expanded_url":"http:\/\/www.osservatorioraffaelli.com","display_url":"osservatorioraffaelli.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3999,"friends_count":4991,"listed_count":239,"created_at":"Wed - Sep 01 17:43:40 +0000 2010","favourites_count":245931,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":378967,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709685","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\/1022735128450228229\/08RSSSsV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022735128450228229\/08RSSSsV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185722558\/1446124573","profile_link_color":"000DFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:02:09 +0000 2020","id":1235234081564176386,"id_str":"1235234081564176386","text":"Le - emergenze al tempo dei virus: la app AllertaLOM si aggiorna per il #coronavirus - https:\/\/t.co\/sMpRr72Mpq @RegLombardia","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[70,82]}],"symbols":[],"user_mentions":[{"screen_name":"RegLombardia","name":"Regione - Lombardia","id":56674519,"id_str":"56674519","indices":[107,120]}],"urls":[{"url":"https:\/\/t.co\/sMpRr72Mpq","expanded_url":"https:\/\/www.cittadiniditwitter.it\/news\/le-emergenze-al-tempo-dei-virus-la-app-allertalom-si-aggiorna-per-il-coronavirus\/","display_url":"cittadiniditwitter.it\/news\/le-emerge\u2026","indices":[83,106]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1878651816,"id_str":"1878651816","name":"Nuova - Comunicazione","screen_name":"CittadinidiTwtt","location":"Firenze","description":"Prima - testata giornalistica dedicata alla nuova comunicazione. Direttore @fdicos10. - Partner #PASocial. Telegram https:\/\/t.co\/6dnymXHj56","url":"https:\/\/t.co\/22puXS5og0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/22puXS5og0","expanded_url":"http:\/\/www.cittadiniditwitter.it","display_url":"cittadiniditwitter.it","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/6dnymXHj56","expanded_url":"https:\/\/telegram.me\/cittadiniditwitter","display_url":"telegram.me\/cittadiniditwi\u2026","indices":[112,135]}]}},"protected":false,"followers_count":11869,"friends_count":2440,"listed_count":715,"created_at":"Wed - Sep 18 08:48:51 +0000 2013","favourites_count":59154,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":168722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D3DABD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214913917706817539\/E4B_tvTp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214913917706817539\/E4B_tvTp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1878651816\/1559899236","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"},"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":"it"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693857275907,"id_str":"1235246693857275907","text":"RT - @amnesty: Coronavirus is not an excuse for racism & hate crimes.\n\nNothing - is. \nNothing is. \nNothing is.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"amnesty","name":"Amnesty - International","id":18213483,"id_str":"18213483","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4916183519,"id_str":"4916183519","name":"china\u2019s - nuclear weapon for ww3 (chernobyl beware)","screen_name":"yanshimei_","location":"","description":"\ud83c\udde8\ud83c\uddf3\ud83c\uddf5\ud83c\uddf9 stupid - idiot fat bitch ugly whore","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":537,"listed_count":0,"created_at":"Mon - Feb 15 22:44:28 +0000 2016","favourites_count":12316,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1766,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223334692369371136\/6qXdOwbK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223334692369371136\/6qXdOwbK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4916183519\/1581971552","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:48:08 +0000 2020","id":1235200357095141376,"id_str":"1235200357095141376","text":"Coronavirus - is not an excuse for racism & hate crimes.\n\nNothing is. \nNothing is. - \nNothing is.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18213483,"id_str":"18213483","name":"Amnesty - International","screen_name":"amnesty","location":"Global","description":"Freedom. - Justice. Equality. Let''s get to work.","url":"https:\/\/t.co\/THguzYDRqC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/THguzYDRqC","expanded_url":"http:\/\/amnesty.org","display_url":"amnesty.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1538242,"friends_count":3873,"listed_count":9626,"created_at":"Thu - Dec 18 11:54:20 +0000 2008","favourites_count":1064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":20583,"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\/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\/1103357372410617856\/0V1h5QGq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1103357372410617856\/0V1h5QGq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18213483\/1579020418","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFF00","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1392,"favorite_count":3505,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1392,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693790167040,"id_str":"1235246693790167040","text":"RT - @India_Policy: Soccer coach is asked about coronavirus, gives fantastic response.\n\nHere - actors lecture the space scientists on how to la\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"India_Policy","name":"\u0939\u092e - \u092d\u093e\u0930\u0924 \u0915\u0947 \u0932\u094b\u0917","id":21186231,"id_str":"21186231","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":575926000,"id_str":"575926000","name":"INDIA - FIRST","screen_name":"reetugreen","location":"","description":"Only Indian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":172,"friends_count":399,"listed_count":10,"created_at":"Thu - May 10 04:21:53 +0000 2012","favourites_count":1061,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":104750,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468829321721683969\/_IKftqHJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468829321721683969\/_IKftqHJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/575926000\/1505282325","profile_link_color":"21A656","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:30:33 +0000 2020","id":1235241231015219200,"id_str":"1235241231015219200","text":"Soccer - coach is asked about coronavirus, gives fantastic response.\n\nHere actors - lecture the space scientists on how\u2026 https:\/\/t.co\/oYsBme2LNd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oYsBme2LNd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235241231015219200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":21186231,"id_str":"21186231","name":"\u0939\u092e - \u092d\u093e\u0930\u0924 \u0915\u0947 \u0932\u094b\u0917","screen_name":"India_Policy","location":"Srinagar, - Kashmir","description":"I tweet on #PublicPolicy #Governance #BasicWelfare - #Education #Agriculture #FreeTrade #Politics #SmallerStates #PoliceReforms - and #Federalism.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100595,"friends_count":595,"listed_count":499,"created_at":"Wed - Feb 18 11:00:56 +0000 2009","favourites_count":17564,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":112351,"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\/1188840701708001281\/0DJ-y_km_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188840701708001281\/0DJ-y_km_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21186231\/1565318441","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":203,"favorite_count":367,"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"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693769187328,"id_str":"1235246693769187328","text":"RT - @RyutaroUchiyama: I''m stunned by the depth of #coronavirus information being - released in #Singapore. On this website you can see every k\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[49,61]},{"text":"Singapore","indices":[92,102]}],"symbols":[],"user_mentions":[{"screen_name":"RyutaroUchiyama","name":"\ud83d\udcce - \u00ae \u00a5 \u00a8 \u2020 \u00e5 \u00ae \u00f8","id":1080275878771388416,"id_str":"1080275878771388416","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":301919872,"id_str":"301919872","name":"Nagz","screen_name":"Nagzz_","location":"","description":"Bristbowlian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":899,"friends_count":876,"listed_count":4,"created_at":"Fri - May 20 09:00:34 +0000 2011","favourites_count":7614,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1058844033081073664\/pnrAVJD8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1058844033081073664\/pnrAVJD8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301919872\/1460021672","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 23:08:59 +0000 2020","id":1234616723615166465,"id_str":"1234616723615166465","text":"I''m - stunned by the depth of #coronavirus information being released in #Singapore. - On this website you can see ever\u2026 https:\/\/t.co\/cPgcd7BRFm","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]},{"text":"Singapore","indices":[71,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cPgcd7BRFm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234616723615166465","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1080275878771388416,"id_str":"1080275878771388416","name":"\ud83d\udcce - \u00ae \u00a5 \u00a8 \u2020 \u00e5 \u00ae \u00f8","screen_name":"RyutaroUchiyama","location":"London, - England","description":"\u02da \u02d9\u5185\u5c71\u9686\u592a\u90ce\u3067\u3059 - \u02da\ud83d\udcce Computational cultural psychology & cognitive evolution - \u00ba \u301c \u02da PhD candidate at the London School of Economics \u00ba\u02da\u00a8\ud83d\udcce - Japanese sense of reality \u2022 \u2248","url":"https:\/\/t.co\/jAffbNH909","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jAffbNH909","expanded_url":"http:\/\/uchiyamaryutaro.com","display_url":"uchiyamaryutaro.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":621,"friends_count":164,"listed_count":5,"created_at":"Wed - Jan 02 01:33:34 +0000 2019","favourites_count":57,"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":"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\/1208543072273010689\/CWpHKcTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208543072273010689\/CWpHKcTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1080275878771388416\/1576974442","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9726,"favorite_count":19702,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9726,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693714735105,"id_str":"1235246693714735105","text":"RT - @narendramodi: Experts across the world have advised to reduce mass gatherings - to avoid the spread of COVID-19 Novel Coronavirus. Hence,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"narendramodi","name":"Narendra - Modi","id":18839785,"id_str":"18839785","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1050675250315255811,"id_str":"1050675250315255811","name":"Akash - Chavan","screen_name":"AkashCh04114783","location":"Aurangabad, India","description":"Medical - Student","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":639,"listed_count":0,"created_at":"Fri - Oct 12 09:11:15 +0000 2018","favourites_count":5507,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12668,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165858675023654912\/aYDU3vbM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165858675023654912\/aYDU3vbM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050675250315255811\/1548076065","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:03:14 +0000 2020","id":1235083359501430789,"id_str":"1235083359501430789","text":"Experts - across the world have advised to reduce mass gatherings to avoid the spread - of COVID-19 Novel Coronavirus.\u2026 https:\/\/t.co\/ItCl1V8NlZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ItCl1V8NlZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235083359501430789","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18839785,"id_str":"18839785","name":"Narendra - Modi","screen_name":"narendramodi","location":"India","description":"Prime - Minister of India","url":"https:\/\/t.co\/zzYhUUfq6i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zzYhUUfq6i","expanded_url":"http:\/\/www.narendramodi.in","display_url":"narendramodi.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53459875,"friends_count":2371,"listed_count":25198,"created_at":"Sat - Jan 10 17:18:56 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":25997,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F4EDD4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1134082549041393672\/QbihPzrL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134082549041393672\/QbihPzrL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18839785\/1559221352","profile_link_color":"4E7096","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D5DFED","profile_text_color":"233863","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18472,"favorite_count":101733,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18472,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693551157248,"id_str":"1235246693551157248","text":"RT - @TrumpWarRoom: Health and Human Services Secretary Alex Azar on the Coronavirus:\n\n\"The - risk to average Americans remains low. We are wor\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TrumpWarRoom","name":"Trump - War Room - Text EMPOWER to 88022","id":1108472017144201216,"id_str":"1108472017144201216","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":778229897500225536,"id_str":"778229897500225536","name":"Brigitte - Herbert","screen_name":"hebert061","location":"","description":"#MAGA #2A - #Trump #Constitution #termlimits on Twitter to follow DJT RT are not endors - #ProLife #ProIsrael Trolls will be \ud83d\udeab NO List https:\/\/t.co\/CRCDD4edDY - DM, @Parler.com","url":"https:\/\/t.co\/6xPr3fS8r0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6xPr3fS8r0","expanded_url":"http:\/\/GAB.ai\/@gunnmar","display_url":"GAB.ai\/@gunnmar","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/CRCDD4edDY","expanded_url":"http:\/\/Pls.No","display_url":"Pls.No","indices":[131,154]}]}},"protected":false,"followers_count":4271,"friends_count":3900,"listed_count":23,"created_at":"Tue - Sep 20 13:50:41 +0000 2016","favourites_count":77389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71247,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/944403654811049989\/OvoCNiKc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/944403654811049989\/OvoCNiKc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/778229897500225536\/1518893391","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 19:24:20 +0000 2020","id":1234197800608501761,"id_str":"1234197800608501761","text":"Health - and Human Services Secretary Alex Azar on the Coronavirus:\n\n\"The risk to - average Americans remains low. We a\u2026 https:\/\/t.co\/YPkagvLA7A","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YPkagvLA7A","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234197800608501761","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1108472017144201216,"id_str":"1108472017144201216","name":"Trump - War Room - Text EMPOWER to 88022","screen_name":"TrumpWarRoom","location":"MAGA - Country","description":"Highlighting @realDonaldTrump''s #PromisesKept, fighting - #FakeNews. This account punches back 10x harder. Managed by the #TeamTrump - 2020 campaign. #MAGA","url":"https:\/\/t.co\/mVHOxzYUNT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mVHOxzYUNT","expanded_url":"https:\/\/www.donaldjtrump.com\/","display_url":"donaldjtrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":515145,"friends_count":194,"listed_count":1772,"created_at":"Wed - Mar 20 20:54:58 +0000 2019","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7897,"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\/1109170568950095879\/Q5nCWHLB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1109170568950095879\/Q5nCWHLB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1108472017144201216\/1565806661","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7292,"favorite_count":24850,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7292,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693479862273,"id_str":"1235246693479862273","text":"RT - @44mmvvpp: McConnell is blocking a bipartisan coronavirus bill, \nbecause - it limits how much Big Pharma can charge for a vaccine!\ud83d\ude44\n\n... - b\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"44mmvvpp","name":"4mvp","id":4451570595,"id_str":"4451570595","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":803023520997535744,"id_str":"803023520997535744","name":"Barbara - Barrett","screen_name":"bhbarret1","location":"","description":"Confused American - wondering what happened to her beloved country. Trying whatever way I can - to understand. #Resist. no lists please","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1552,"friends_count":3385,"listed_count":1,"created_at":"Sun - Nov 27 23:51:41 +0000 2016","favourites_count":23717,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8787,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1041511737416081409\/d1upfUIe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041511737416081409\/d1upfUIe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 01:13:45 +0000 2020","id":1235010508023050248,"id_str":"1235010508023050248","text":"McConnell - is blocking a bipartisan coronavirus bill, \nbecause it limits how much Big - Pharma can charge for a vaccin\u2026 https:\/\/t.co\/6BUWgib8Ag","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6BUWgib8Ag","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235010508023050248","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4451570595,"id_str":"4451570595","name":"4mvp","screen_name":"44mmvvpp","location":"Badger - Country!","description":"\u201cI''m the one that''s got to die, when it''s - time for me to die\n ... so let me live my life ... the way I want to\u201d - - Jimi \n #VoteBlueNoMatterWho #FuckTrump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14874,"friends_count":13910,"listed_count":16,"created_at":"Fri - Dec 11 19:41:49 +0000 2015","favourites_count":108808,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20928,"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\/773556635985850368\/QAB6-ViU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/773556635985850368\/QAB6-ViU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4451570595\/1532815355","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4977,"favorite_count":9893,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4977,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693362302981,"id_str":"1235246693362302981","text":"RT - @JIMINSENPAl: entre les gr\u00e8ves de d\u00e9cembre\/janvier et mtn le stade - 3 du coronavirus c le parcours du combattant pour finir cette ann\u00e9e s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JIMINSENPAl","name":"\u82b1\u6a23\u5e74\u83ef - \u2077","id":1924021789,"id_str":"1924021789","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785873754308182017,"id_str":"785873754308182017","name":"Mwinda - Mannequin\ud83d\udc7c\ud83c\udffd","screen_name":"yankeeneder","location":"KNVB - Campus","description":"\ud83e\udde1@knvb\ud83e\udde1 \ud83e\udd1d \ud83e\udd88@mancity\ud83e\udd88","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":572,"friends_count":446,"listed_count":1,"created_at":"Tue - Oct 11 16:04:38 +0000 2016","favourites_count":47252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":49725,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235680899024515072\/yNRipCw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235680899024515072\/yNRipCw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785873754308182017\/1583092407","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 17:03:54 +0000 2020","id":1234524848610738183,"id_str":"1234524848610738183","text":"entre - les gr\u00e8ves de d\u00e9cembre\/janvier et mtn le stade 3 du coronavirus - c le parcours du combattant pour finir cette ann\u00e9e scolaire l\u00e0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1924021789,"id_str":"1924021789","name":"\u82b1\u6a23\u5e74\u83ef - \u2077","screen_name":"JIMINSENPAl","location":"","description":"i study the - internet\u2800 \u2800 \u2800\u2800\u2800\u2800\u2800 \u2800\u2800\u2800\u2800\u2800 - \u2800\u2800\u2800\u2800\u2800 \u2800\u2800\u2800\u2800\u2800","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4059,"friends_count":939,"listed_count":94,"created_at":"Tue - Oct 01 16:52:51 +0000 2013","favourites_count":50570,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":85561,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232346625500119041\/4toCEmnI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232346625500119041\/4toCEmnI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1924021789\/1572272559","profile_link_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6327,"favorite_count":16842,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":6327,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246693182050304,"id_str":"1235246693182050304","text":"RT - @SultanAlQassemi: I highly recommend that the UAE now re-visits its ban on - VOIP video calls in light of the spread of Coronavirus. If we\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SultanAlQassemi","name":"\u0633\u0644\u0637\u0627\u0646 - \u0633\u0639\u0648\u062f \u0627\u0644\u0642\u0627\u0633\u0645\u064a","id":46744791,"id_str":"46744791","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2426060540,"id_str":"2426060540","name":"Fatma - Al Mansouri","screen_name":"iwantbaconnn","location":"Dubai, United Arab Emirates","description":"Instagram - : fatmaamans \/ facesbyfatma","url":"https:\/\/t.co\/lyM5iLUaoQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lyM5iLUaoQ","expanded_url":"http:\/\/drinkswithmatty.tumblr.com","display_url":"drinkswithmatty.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":164,"listed_count":0,"created_at":"Thu - Apr 03 19:04:16 +0000 2014","favourites_count":1457,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3920,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1201086519131492352\/gnm1Zs7t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1201086519131492352\/gnm1Zs7t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2426060540\/1575196376","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:06:48 +0000 2020","id":1235084256704999431,"id_str":"1235084256704999431","text":"I - highly recommend that the UAE now re-visits its ban on VOIP video calls in - light of the spread of Coronavirus. If\u2026 https:\/\/t.co\/RNNPw4RH3H","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RNNPw4RH3H","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235084256704999431","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46744791,"id_str":"46744791","name":"\u0633\u0644\u0637\u0627\u0646 - \u0633\u0639\u0648\u062f \u0627\u0644\u0642\u0627\u0633\u0645\u064a","screen_name":"SultanAlQassemi","location":"Greater - Cambridge, MA","description":"Columnist, art & architecture enthusiast. Visiting - Instructor, Islamic Civilization & Societies program at @BostonCollege. On - Instagram & FB: sultanalqassemi","url":"https:\/\/t.co\/ax0aj3enxr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ax0aj3enxr","expanded_url":"http:\/\/sultanalqassemi.com","display_url":"sultanalqassemi.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":490151,"friends_count":5714,"listed_count":5501,"created_at":"Fri - Jun 12 20:47:01 +0000 2009","favourites_count":6336,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":111375,"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\/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\/1158655495579820032\/ei8PsD76_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158655495579820032\/ei8PsD76_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46744791\/1402920308","profile_link_color":"4286C2","profile_sidebar_border_color":"000000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":951,"favorite_count":1900,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":951,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:16 +0000 2020","id":1235246692863299584,"id_str":"1235246692863299584","text":"RT - @spectatorindex: BREAKING: Iran coronavirus death toll rises to 92","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"spectatorindex","name":"The - Spectator Index","id":1626294277,"id_str":"1626294277","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210954755,"id_str":"210954755","name":"\u2744 - Big Time Heart \u2744","screen_name":"MarfanSyndrome1","location":"","description":"I - have Marfan syndrome, a rare genetic disorder of the connective tissue. Follow - me on Twitter, and learn more about Marfan syndrome.","url":"https:\/\/t.co\/YT5PjlZue5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YT5PjlZue5","expanded_url":"http:\/\/marfan.org","display_url":"marfan.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9493,"friends_count":10334,"listed_count":209,"created_at":"Mon - Nov 01 22:04:46 +0000 2010","favourites_count":15463,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":252128,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203339077\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203339077\/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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 10:51:37 +0000 2020","id":1235155934134947840,"id_str":"1235155934134947840","text":"BREAKING: - Iran coronavirus death toll rises to 92","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1626294277,"id_str":"1626294277","name":"The - Spectator Index","screen_name":"spectatorindex","location":"Global","description":"Watching - the world. Focused on politics, economics, science and sports. Message us - for business inquiries.","url":"https:\/\/t.co\/JKoXedtrxE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JKoXedtrxE","expanded_url":"http:\/\/spectatorindex.com","display_url":"spectatorindex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":712923,"friends_count":0,"listed_count":10919,"created_at":"Sat - Jul 27 20:42:27 +0000 2013","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40730,"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\/1145865652533547008\/XBahoZmX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145865652533547008\/XBahoZmX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1626294277\/1430626667","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":581,"favorite_count":1566,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":581,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692745781248,"id_str":"1235246692745781248","text":"RT - @airnewsalerts: Union Health Ministry issues a school advisory in the wake - of novel #CoronaVirus. \n\nSchools have been advised to avoid a\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[87,99]}],"symbols":[],"user_mentions":[{"screen_name":"airnewsalerts","name":"All - India Radio News","id":1056850669,"id_str":"1056850669","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1394965429,"id_str":"1394965429","name":"rohit - jain","screen_name":"A6tReJo","location":"\u092d\u093e\u0930\u0924","description":"Fighting - for my own space\/entrepreneur\/former banker. Adventure, sports, walking, - places and long drive excites me","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2272,"friends_count":3434,"listed_count":1,"created_at":"Wed - May 01 15:58:01 +0000 2013","favourites_count":34102,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42658,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214942570700312579\/IruN7fxw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214942570700312579\/IruN7fxw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1394965429\/1577174202","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:48:18 +0000 2020","id":1235245697764446210,"id_str":"1235245697764446210","text":"Union - Health Ministry issues a school advisory in the wake of novel #CoronaVirus. - \n\nSchools have been advised to av\u2026 https:\/\/t.co\/GoAWwUEbRO","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[68,80]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GoAWwUEbRO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245697764446210","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1056850669,"id_str":"1056850669","name":"All - India Radio News","screen_name":"airnewsalerts","location":"New Delhi, India","description":"Official - account of News Services Division, All India Radio.\n\n\u0939\u093f\u0902\u0926\u0940 - \u0915\u0947 \u0938\u092e\u093e\u091a\u093e\u0930\u094b\u0902 \u0915\u0947 - \u0932\u093f\u090f @AIRNewsHindi \u0915\u094b \u092b\u0949\u0932\u094b \u0915\u0930\u0947\u0902!\nFollow - @AIRNewsUrdu for news updates in Urdu","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2232567,"friends_count":13,"listed_count":2702,"created_at":"Thu - Jan 03 04:15:45 +0000 2013","favourites_count":605,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":259326,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"666655","profile_background_image_url":"http:\/\/abs.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\/894885297543983104\/JNdQwD8p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/894885297543983104\/JNdQwD8p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1056850669\/1572580529","profile_link_color":"467895","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":82,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":47,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.119,"max_id":1235246699532169215,"max_id_str":"1235246699532169215","next_results":"?max_id=1235246692745781247&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1235246699532169215&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bay%20Area&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:05 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1157282667223605249/2lPAgaZV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146265' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:05 GMT - Last-Modified: - - Fri, 02 Aug 2019 13:29:03 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1157282667223605249 - X-Cache: - - MISS - X-Connection-Hash: - - 18224cc7b83a1ed78394d3fbe6628890 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bay%20Area&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:05 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1169765629181779969/aHhbYX9C_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146265' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:05 GMT - Last-Modified: - - Fri, 06 Sep 2019 00:11:53 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1169765629181779969 - X-Cache: - - MISS - X-Connection-Hash: - - f1db20f3ff486c13c50502ed51a89ddf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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AQACAgIBAwUAAwAAAAAAAAEAESExQVFhcZHBEIGhsfDR4fH/2gAIAQEAAT8QoisulW1Rx6RnjyS6q/25mhcTiDg3tY8csyA2JfX2V6/CXVAagPZfdZ2czKzR3VzSzEIwzCXwOzzFhNLKILtmVgWvBCmYVUc/HGSemEiBkF4VcyqjKvAJTJrWfaG6Zg4byVMnlIOyXtxRhTtHtU5okDXmVIuy4clw0RCvOS6+rDYALFUWUYQAUAcFem5Xx7wLWic5Ub30JzuKJsQFRQtVza3eMShNY+tINugGkdWwniVA/wB4y7e20Dr+8wjbS28bPxLKhdLvO5TqLCMFORoN8fafwYWirByClfPgojfU1XAfEQsAFKjWNkYk9HVLgMEBaoDpAJwWDj4PDE4dyN0xVVPERyANS7KoqfmfynxNcYcMVlnHMbBSq9gfYwnzCHvcFApugdIA/EbICZBZtaue6GwYCygyxKiCilXjcGtHqmvTSIQvBa7YIL33P+Zg4cihLRR9axMPmGO/r0HvLrXzR7StiIMunxLZeUDP54JZ08LRZdcbJmTN0PrW6hozxtBOW9z+3/mCGs4bFuCCbCoHFFVK37UKsdHiCa7VYgRoQ30kfTQK9L7uYZ2sGW20asszMLIcooA0AVehPF8z+N+ItY3NlT1DAbWj5dQsDygF4SlrSNReUoyRRnF2Tt67PtAvCAFrtbEBRTcIOiFsJq0CgL981GXjJdbddS7Y4OvpoAkZwGnI8ca5lxwh0B0zBpdL4h+5QrYX0Yup6skfdNSniAB0sWQ1SDPXETPBhiXKM2dXsmyS8EMoFYrgUQmBoWUuuLCwcdSkfy+voLfmf39X5N+J+ub+o/U2+sz/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Entre%20R%C3%ADos,%20Argentina&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:06 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1184888203590979585/o878L3lF_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146266' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:06 GMT - Last-Modified: - - Thu, 17 Oct 2019 17:43:36 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1184888203590979585 - X-Cache: - - MISS - X-Connection-Hash: - - 2fdb409de0ffbdc8762a9d7500ba55ab - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Entre%20R%C3%ADos,%20Argentina&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%F0%9D%92%9A%F0%9D%92%90%F0%9D%92%96%F0%9D%92%93%20%F0%9D%92%89%F0%9D%92%86%F0%9D%92%82%F0%9D%92%93%F0%9D%92%95%EA%A8%84&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1231367982913400832/GZGI2XG5_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '199439' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:07 GMT - Last-Modified: - - Sat, 22 Feb 2020 23:57:39 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1231367982913400832 - X-Cache: - - MISS - X-Connection-Hash: - - 7956dce3922e82bb4c87339599b45e3f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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MqT5g6aePXOyihBHmtzgYQoE3uzUkvphNPSdQxuDO4x0SQFlOQd8YtdIVENQL0c7bFUkIIEq8HGWKpMkr4e2QSrlUmJQAJDe04QfEZBfiBBllRGyyfGVFcSrNqBIWok+2O0ySJdmwyDjErZbgngwzfiTTMtcZ4fZjelkTCPZaxYTnAnMV15cQgEDMQSFer6Y8mGFGyv+jOQGbjYEP9McgsjHPbtiSAEqeoh7ZGq+BZnx83kR1oAgQz/LYrY+9mAI4TFjGy3UAxEOyXGJIXADiWvXAcxEi5PKMCWiICVRSfYxucBQMlbHc8bMUpRMxO5GfXE81liwS/Uz/R/rAkFoEkylU7wRhJqlH4O2QgWDBAbHsz6YilOHCTx3wv2y2l0O8v8AzDTQlCgt+SeTFMQECEco4l+0YahDXEj99PqY1Q5zbWfHP7wyL0KBEeHC1QWTE91yjajjQr+eHKObAWx0nfaMEwjD7l+slCalYtI7tkl9sNksSTAgcLOKsOwIPsGDbY2v6NASPc0BtXsF5C+yREHZGAgsbKSQ6yznCUMtZEbAVFWYXm8bKhimJ9zKbQR0AlfgqTFb0OQcNhSm+0KbDJKjgMAS2JCveMaLaWGdj74QxaVZdt6jrjRwVBCzhorjAVVKms9IFVehxAp4mobJJd0kszvNAuhKln/XKCWCwGlOKwPDcTtnE8/SsTTJAYSIm+caqkRDuqMn+DBlpDYlHOFFmjjoVYUnUknCc45M88ChFyBNFIhyYmJmV1ISI6VchiuSG37wsxKAWlcdYveCPNKghyXTlemQKdSTIyAEY+cz5Xcz57o+lb43fNPn8fobR5c2+OjHXz9P/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%F0%9D%92%9A%F0%9D%92%90%F0%9D%92%96%F0%9D%92%93%20%F0%9D%92%89%F0%9D%92%86%F0%9D%92%82%F0%9D%92%93%F0%9D%92%95%EA%A8%84&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1094789647773904896/h0915nlc_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '171050' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:07 GMT - Last-Modified: - - Mon, 11 Feb 2019 02:44:06 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1094789647773904896 - X-Cache: - - MISS - X-Connection-Hash: - - 03cbc66f3c6b55a1e4a5fc9320c81e74 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=NYC%20/%20CT%20/%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1177657873742082048/fg4LyO0r_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '39753' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:08 GMT - Last-Modified: - - Fri, 27 Sep 2019 18:52:51 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1177657873742082048 - X-Cache: - - MISS - X-Connection-Hash: - - 25756e60134210c178c0f92d8a256533 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=NYC%20/%20CT%20/%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:08 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235227277740462080.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b943b793c831429d27b7b35ca60ab6be", - oauth_signature="SWzfgxxiNxjalUvo9naYSMWd%2Fkw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487008", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2638' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:08 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:08 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348700873569846; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:08 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_Stk7sD7ewgf/MQ+3nkzpQw=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:08 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 96ddab886f8db620bf37d88ae8a5e911 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '889' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '222' - X-Transaction: - - 00af2a8e00c4ff21 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 15:35:07 +0000 2020","id":1235227277740462080,"id_str":"1235227277740462080","text":"Things - Bloomberg could have done with $500 million instead of running for President...GO!","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,"user":{"id":23103351,"id_str":"23103351","name":"Karen - Hunter","screen_name":"karenhunter","location":"Global","description":"@EbonyMag''s - #Power100 @Essence''s #Woke100. Pulitzer. Prof. Publisher. The Architect! - #KarenRebels: @SXMUrbanView. https:\/\/t.co\/wc3dJiXklV","url":"https:\/\/t.co\/VYOOYgj5hj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VYOOYgj5hj","expanded_url":"http:\/\/www.karenhuntershow.com","display_url":"karenhuntershow.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/wc3dJiXklV","expanded_url":"https:\/\/art19.com\/shows\/this-is-karen-hunter","display_url":"art19.com\/shows\/this-is-\u2026","indices":[114,137]}]}},"protected":false,"followers_count":81631,"friends_count":1365,"listed_count":753,"created_at":"Fri - Mar 06 19:05:21 +0000 2009","favourites_count":89941,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":104487,"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\/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\/992885987117170688\/yKF4R_AQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992885987117170688\/yKF4R_AQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23103351\/1565920229","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":240,"favorite_count":1692,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Global&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=0 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:09 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/992885987117170688/yKF4R_AQ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '113557' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:09 GMT - Last-Modified: - - Sat, 05 May 2018 21:55:20 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/992885987117170688 - X-Cache: - - MISS - X-Connection-Hash: - - 3c4064408cc011672a81702be80e3491 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Global&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:10 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:10 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1179749135991201793/psOsxpYS_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:10 GMT - Last-Modified: - - Thu, 03 Oct 2019 13:22:47 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1179749135991201793 - X-Cache: - - MISS - X-Connection-Hash: - - 6a328e85c3b380709f17158a7dc76224 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:10 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:10 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:10 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dublin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:10 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:10 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1081147519332159488/-44QdAwK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '209522' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:10 GMT - Last-Modified: - - Fri, 04 Jan 2019 11:15:10 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1081147519332159488 - X-Cache: - - MISS - X-Connection-Hash: - - dc7494cd2270f1247a8daf667df19b7d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:10 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dublin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:11 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:11 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1102282877033742336/vcLbu799_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '349912' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Fri, 06 Mar 2020 09:30:11 GMT - Last-Modified: - - Sun, 03 Mar 2019 18:59:31 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1102282877033742336 - X-Cache: - - MISS - X-Connection-Hash: - - a337229594615214702b67b41ddeb42f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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NkZIKBBml66CY+MLkwoEN2Nwxxu3MxNsdyhBgvBJIkRixHC/+Sbw+OPG61nbow3rc7ltmSVj7nAT0vhZBvNQNpIE1rfC3WpccWWyyu8ErxVXU3ITMnF5ToMGRq2YCbD8QpRBeqyIjCSBVQW5m/aJJ4x0SflW7nEb1r5pd2iQWXpp0SLUXgbJscMdkgixRfLGuKv2sceAjz4y51ZDGinsjoLL5FzG6tHDnNOZcBwupTbukSSw2isOlvsTaa+4xk9EYtztqsV1uxkzgOHDzbn12S7CfZIEVlHnrpF584AXX9SVg19JghNYjXKdOmbX//33h3bR8nCZHEH5kUSwa05MVJAVA4YMK1aYcydk2dV02DCzgHDlleacUsV7XFKt4lC+JAnsb5olkbQ0s0eSkJUV61DsqsVNXPwN9zARJFZILmdEhySBdWJMa156CXjqKVMiIUSlrKrFLcyUHHou5lzlZHcuheiSRNhVkPsCGFsxxrLuvOVCJxcXuLeRORcRBdUqDtEnyQprkMf/gDz6qPl/7a23Gulh1Gy/LwaILUmENb6iJDF5vuKKULQutimGiD1JAmvIUNx5DOEdkgQcTpRtTmnwxquywmMEEd4jyYOoIMkBKkhygAqSHOB/cG/lsadLT8cAAAAASUVORK5CYIIgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:11 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:11 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1188257645196529666/SH8mor3e_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '223880' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:11 GMT - Last-Modified: - - Sun, 27 Oct 2019 00:52:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1188257645196529666 - X-Cache: - - HIT - X-Connection-Hash: - - ba41a6c5a7fb9aa6700d2bfc002ab701 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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AAICAQQBBQAAAAAAAAAAAAERACExQVFxgfBhkaGxwf/aAAgBAgEBPxA3zRcwm6j6QAs0vyKgD53E0MqG80oLwfa4LP0QAILPUrgorsniGyAE62l8GVI6TFCCjCV7wmQl3aqEsRN0PEBTCEWMnjcZ86hBQTArao8GCImIhNmFVT//xAAmEAEAAgICAQQDAAMBAAAAAAABABEhMUFRYXGBofAQkbHB0fHh/9oACAEBAAE/EHXO2ThOwDeJu9dKY6TavryxgVerZWw871GgmQanu6gH3iVPfjjxaYHtzLQhLQLwjYPiGsTFbhIdeNYl9wSzwQjWKPPiUXz0ysatGTk49J/1v+4yJWTav8PiMRirAxfrbupXqsEHDofJLgOhQoNIv6/+RfRVWAd5p14uFK6AZGyhaxb5gCYla3LYjhDq2GZrC30ZHtB3NmOOwa3meZ+/SXS5pez9uEN2CLg8GNtQ1dKx2psurfFMxXIp6Nxy3+oCb0F0XjW4NUK03dvceDqtwmctaheEdlKLUTdfuVdlpavNhQL3jc8P69YaWDXBvw8RR3UU6irb3cLIbq3PsMGVsZJbo1bb7wI8FpSWlA5dB3UIIlRwLvBi4smylz06940DzAUnT0inaa7qcnouCxaWuBLFePx3fKy9S47R94+DfE2IC297ysevEwEbAaLmrxcEK7Jp8C03j/EtpKFSlIdOplNsgs7xQf2XHIZS8lVetVGjNgdxo6GNcwuDJqFcByUjP4/tDHYnd0f2J3cGWChRug0EAWnWMxlTcQzMvKsFVDqDgCAeTFMJdcIwwi0QQbILz1LgpFN5v2gFqyABKHYcfG59r/xAi0pgShsOfFRxKSumR4lb7IDRafdDLqWpieK2epKeRUmOzdFEZsAVuUsazSe0DF8m2som1DruYsOCUOFLWd/E/wC5hWZ1uo9jereHEHcIozDUtNGab44ZwwW5kL3IWWq+YPBhzLLr0L4joNvqruE9PIpzHXJdsBZPax8pxCc6Bo1Dnzm55H36yn1eLau0XLrBFO/ZxAzDxXFd5PuZVvkGp69MEXWl29QiVVEXoUYNwuSMCIGnTYU53M1wFGKmOxB5m2fldrVXv+AfDl8hPtep9Lzmj73D+H8mz65Z84/ifO/j/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:11 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235245317110534144.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b6920e55adb0d66fb7890c1a3398fb2e", - oauth_signature="LViMyqrZGIUlJgOZUAD%2FW5eRSbE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487011", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2632' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:12 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:12 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348701243555887; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:12 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_wqy3EjRmEhJ+cYkI9KWNlg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:12 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 1432ce55f1a796f776b22142a6b3fca6 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '888' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '131' - X-Transaction: - - 00372fe7007aaae8 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:46:48 +0000 2020","id":1235245317110534144,"id_str":"1235245317110534144","text":"Bach - says his confidence regarding the Games going ahead as planned is based on - guidance from the World Health Organisation.","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":1235244772874506242,"in_reply_to_status_id_str":"1235244772874506242","in_reply_to_user_id":18981645,"in_reply_to_user_id_str":"18981645","in_reply_to_screen_name":"stevescott_itv","user":{"id":18981645,"id_str":"18981645","name":"Steve - Scott","screen_name":"stevescott_itv","location":"","description":"Sports - Editor and News Presenter ITV News. https:\/\/t.co\/dQ20Gu4JXA","url":"https:\/\/t.co\/5a9MnUldj9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5a9MnUldj9","expanded_url":"http:\/\/Instagram.com\/itvsteve","display_url":"Instagram.com\/itvsteve","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/dQ20Gu4JXA","expanded_url":"http:\/\/www.itv.com\/stevescott","display_url":"itv.com\/stevescott","indices":[43,66]}]}},"protected":false,"followers_count":5685,"friends_count":1946,"listed_count":106,"created_at":"Wed - Jan 14 16:24:34 +0000 2009","favourites_count":1469,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5373,"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\/1188257645196529666\/SH8mor3e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188257645196529666\/SH8mor3e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18981645\/1517752580","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:12 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1188257645196529666/SH8mor3e_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '223881' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:12 GMT - Last-Modified: - - Sun, 27 Oct 2019 00:52:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1188257645196529666 - X-Cache: - - HIT - X-Connection-Hash: - - ba41a6c5a7fb9aa6700d2bfc002ab701 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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AAICAQQBBQAAAAAAAAAAAAERACExQVFxgfBhkaGxwf/aAAgBAgEBPxA3zRcwm6j6QAs0vyKgD53E0MqG80oLwfa4LP0QAILPUrgorsniGyAE62l8GVI6TFCCjCV7wmQl3aqEsRN0PEBTCEWMnjcZ86hBQTArao8GCImIhNmFVT//xAAmEAEAAgICAQQDAAMBAAAAAAABABEhMUFRYXGBofAQkbHB0fHh/9oACAEBAAE/EHXO2ThOwDeJu9dKY6TavryxgVerZWw871GgmQanu6gH3iVPfjjxaYHtzLQhLQLwjYPiGsTFbhIdeNYl9wSzwQjWKPPiUXz0ysatGTk49J/1v+4yJWTav8PiMRirAxfrbupXqsEHDofJLgOhQoNIv6/+RfRVWAd5p14uFK6AZGyhaxb5gCYla3LYjhDq2GZrC30ZHtB3NmOOwa3meZ+/SXS5pez9uEN2CLg8GNtQ1dKx2psurfFMxXIp6Nxy3+oCb0F0XjW4NUK03dvceDqtwmctaheEdlKLUTdfuVdlpavNhQL3jc8P69YaWDXBvw8RR3UU6irb3cLIbq3PsMGVsZJbo1bb7wI8FpSWlA5dB3UIIlRwLvBi4smylz06940DzAUnT0inaa7qcnouCxaWuBLFePx3fKy9S47R94+DfE2IC297ysevEwEbAaLmrxcEK7Jp8C03j/EtpKFSlIdOplNsgs7xQf2XHIZS8lVetVGjNgdxo6GNcwuDJqFcByUjP4/tDHYnd0f2J3cGWChRug0EAWnWMxlTcQzMvKsFVDqDgCAeTFMJdcIwwi0QQbILz1LgpFN5v2gFqyABKHYcfG59r/xAi0pgShsOfFRxKSumR4lb7IDRafdDLqWpieK2epKeRUmOzdFEZsAVuUsazSe0DF8m2som1DruYsOCUOFLWd/E/wC5hWZ1uo9jereHEHcIozDUtNGab44ZwwW5kL3IWWq+YPBhzLLr0L4joNvqruE9PIpzHXJdsBZPax8pxCc6Bo1Dnzm55H36yn1eLau0XLrBFO/ZxAzDxXFd5PuZVvkGp69MEXWl29QiVVEXoUYNwuSMCIGnTYU53M1wFGKmOxB5m2fldrVXv+AfDl8hPtep9Lzmj73D+H8mz65Z84/ifO/j/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:12 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235244772874506242.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b6af60f2c022fe5fdb30f4db14297b98", - oauth_signature="lLL42Chd48YoFK80hMHB9KXjjdY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487012", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2892' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:13 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:13 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348701339494547; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:13 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_ltpzYi4H2IfYDzLjJqXgxg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:13 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 993ef1025f3a22f9a332644900a2f6e9 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '887' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '147' - X-Transaction: - - 00f4f5f600941b1b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:44:38 +0000 2020","id":1235244772874506242,"id_str":"1235244772874506242","text":"Back - on #CoronaOutbreak Bach did admit there had been \u201cchallenges\u201d regarding - qualifying competitions because of cor\u2026 https:\/\/t.co\/Z2sSyRA8ks","truncated":true,"entities":{"hashtags":[{"text":"CoronaOutbreak","indices":[8,23]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Z2sSyRA8ks","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235244772874506242","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235241871288520704,"in_reply_to_status_id_str":"1235241871288520704","in_reply_to_user_id":18981645,"in_reply_to_user_id_str":"18981645","in_reply_to_screen_name":"stevescott_itv","user":{"id":18981645,"id_str":"18981645","name":"Steve - Scott","screen_name":"stevescott_itv","location":"","description":"Sports - Editor and News Presenter ITV News. https:\/\/t.co\/dQ20Gu4JXA","url":"https:\/\/t.co\/5a9MnUldj9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5a9MnUldj9","expanded_url":"http:\/\/Instagram.com\/itvsteve","display_url":"Instagram.com\/itvsteve","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/dQ20Gu4JXA","expanded_url":"http:\/\/www.itv.com\/stevescott","display_url":"itv.com\/stevescott","indices":[43,66]}]}},"protected":false,"followers_count":5685,"friends_count":1946,"listed_count":106,"created_at":"Wed - Jan 14 16:24:34 +0000 2009","favourites_count":1469,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5373,"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\/1188257645196529666\/SH8mor3e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188257645196529666\/SH8mor3e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18981645\/1517752580","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:14 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1188257645196529666/SH8mor3e_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '223883' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:14 GMT - Last-Modified: - - Sun, 27 Oct 2019 00:52:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1188257645196529666 - X-Cache: - - HIT - X-Connection-Hash: - - ba41a6c5a7fb9aa6700d2bfc002ab701 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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AAICAQQBBQAAAAAAAAAAAAERACExQVFxgfBhkaGxwf/aAAgBAgEBPxA3zRcwm6j6QAs0vyKgD53E0MqG80oLwfa4LP0QAILPUrgorsniGyAE62l8GVI6TFCCjCV7wmQl3aqEsRN0PEBTCEWMnjcZ86hBQTArao8GCImIhNmFVT//xAAmEAEAAgICAQQDAAMBAAAAAAABABEhMUFRYXGBofAQkbHB0fHh/9oACAEBAAE/EHXO2ThOwDeJu9dKY6TavryxgVerZWw871GgmQanu6gH3iVPfjjxaYHtzLQhLQLwjYPiGsTFbhIdeNYl9wSzwQjWKPPiUXz0ysatGTk49J/1v+4yJWTav8PiMRirAxfrbupXqsEHDofJLgOhQoNIv6/+RfRVWAd5p14uFK6AZGyhaxb5gCYla3LYjhDq2GZrC30ZHtB3NmOOwa3meZ+/SXS5pez9uEN2CLg8GNtQ1dKx2psurfFMxXIp6Nxy3+oCb0F0XjW4NUK03dvceDqtwmctaheEdlKLUTdfuVdlpavNhQL3jc8P69YaWDXBvw8RR3UU6irb3cLIbq3PsMGVsZJbo1bb7wI8FpSWlA5dB3UIIlRwLvBi4smylz06940DzAUnT0inaa7qcnouCxaWuBLFePx3fKy9S47R94+DfE2IC297ysevEwEbAaLmrxcEK7Jp8C03j/EtpKFSlIdOplNsgs7xQf2XHIZS8lVetVGjNgdxo6GNcwuDJqFcByUjP4/tDHYnd0f2J3cGWChRug0EAWnWMxlTcQzMvKsFVDqDgCAeTFMJdcIwwi0QQbILz1LgpFN5v2gFqyABKHYcfG59r/xAi0pgShsOfFRxKSumR4lb7IDRafdDLqWpieK2epKeRUmOzdFEZsAVuUsazSe0DF8m2som1DruYsOCUOFLWd/E/wC5hWZ1uo9jereHEHcIozDUtNGab44ZwwW5kL3IWWq+YPBhzLLr0L4joNvqruE9PIpzHXJdsBZPax8pxCc6Bo1Dnzm55H36yn1eLau0XLrBFO/ZxAzDxXFd5PuZVvkGp69MEXWl29QiVVEXoUYNwuSMCIGnTYU53M1wFGKmOxB5m2fldrVXv+AfDl8hPtep9Lzmj73D+H8mz65Z84/ifO/j/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:14 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235241871288520704.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f9f164d3779c77d17e08160d771babe9", - oauth_signature="OkFiLzqRBXGG3zY1Jej%2FVog5ddM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487014", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2826' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:14 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:14 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348701469848146; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:14 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_jiqHcYtJpasvi920iYZ2Pw=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:14 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 38a539041d82f6c14fe18c93ae3161c9 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '886' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '139' - X-Transaction: - - '008a5407003c539b' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:33:06 +0000 2020","id":1235241871288520704,"id_str":"1235241871288520704","text":"Away - from #Coronavirus Olympics boss Thomas Bach revealed today that two athletes - will be allowed to carry their co\u2026 https:\/\/t.co\/wEhlSM9KA5","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[10,22]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wEhlSM9KA5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235241871288520704","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18981645,"id_str":"18981645","name":"Steve - Scott","screen_name":"stevescott_itv","location":"","description":"Sports - Editor and News Presenter ITV News. https:\/\/t.co\/dQ20Gu4JXA","url":"https:\/\/t.co\/5a9MnUldj9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5a9MnUldj9","expanded_url":"http:\/\/Instagram.com\/itvsteve","display_url":"Instagram.com\/itvsteve","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/dQ20Gu4JXA","expanded_url":"http:\/\/www.itv.com\/stevescott","display_url":"itv.com\/stevescott","indices":[43,66]}]}},"protected":false,"followers_count":5685,"friends_count":1946,"listed_count":106,"created_at":"Wed - Jan 14 16:24:34 +0000 2009","favourites_count":1469,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5373,"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\/1188257645196529666\/SH8mor3e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188257645196529666\/SH8mor3e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18981645\/1517752580","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:14 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1188257645196529666/SH8mor3e_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '223883' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:14 GMT - Last-Modified: - - Sun, 27 Oct 2019 00:52:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1188257645196529666 - X-Cache: - - HIT - X-Connection-Hash: - - ba41a6c5a7fb9aa6700d2bfc002ab701 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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AAICAQQBBQAAAAAAAAAAAAERACExQVFxgfBhkaGxwf/aAAgBAgEBPxA3zRcwm6j6QAs0vyKgD53E0MqG80oLwfa4LP0QAILPUrgorsniGyAE62l8GVI6TFCCjCV7wmQl3aqEsRN0PEBTCEWMnjcZ86hBQTArao8GCImIhNmFVT//xAAmEAEAAgICAQQDAAMBAAAAAAABABEhMUFRYXGBofAQkbHB0fHh/9oACAEBAAE/EHXO2ThOwDeJu9dKY6TavryxgVerZWw871GgmQanu6gH3iVPfjjxaYHtzLQhLQLwjYPiGsTFbhIdeNYl9wSzwQjWKPPiUXz0ysatGTk49J/1v+4yJWTav8PiMRirAxfrbupXqsEHDofJLgOhQoNIv6/+RfRVWAd5p14uFK6AZGyhaxb5gCYla3LYjhDq2GZrC30ZHtB3NmOOwa3meZ+/SXS5pez9uEN2CLg8GNtQ1dKx2psurfFMxXIp6Nxy3+oCb0F0XjW4NUK03dvceDqtwmctaheEdlKLUTdfuVdlpavNhQL3jc8P69YaWDXBvw8RR3UU6irb3cLIbq3PsMGVsZJbo1bb7wI8FpSWlA5dB3UIIlRwLvBi4smylz06940DzAUnT0inaa7qcnouCxaWuBLFePx3fKy9S47R94+DfE2IC297ysevEwEbAaLmrxcEK7Jp8C03j/EtpKFSlIdOplNsgs7xQf2XHIZS8lVetVGjNgdxo6GNcwuDJqFcByUjP4/tDHYnd0f2J3cGWChRug0EAWnWMxlTcQzMvKsFVDqDgCAeTFMJdcIwwi0QQbILz1LgpFN5v2gFqyABKHYcfG59r/xAi0pgShsOfFRxKSumR4lb7IDRafdDLqWpieK2epKeRUmOzdFEZsAVuUsazSe0DF8m2som1DruYsOCUOFLWd/E/wC5hWZ1uo9jereHEHcIozDUtNGab44ZwwW5kL3IWWq+YPBhzLLr0L4joNvqruE9PIpzHXJdsBZPax8pxCc6Bo1Dnzm55H36yn1eLau0XLrBFO/ZxAzDxXFd5PuZVvkGp69MEXWl29QiVVEXoUYNwuSMCIGnTYU53M1wFGKmOxB5m2fldrVXv+AfDl8hPtep9Lzmj73D+H8mz65Z84/ifO/j/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:15 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234249145084452873/bC8greR0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '243189' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:15 GMT - Last-Modified: - - Sun, 01 Mar 2020 22:46:22 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1234249145084452873 - X-Cache: - - MISS - X-Connection-Hash: - - 04ea6e5f93303c582e5c5a89f22544fc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=University%20of%20Oregon&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:15 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/872118272686145536/KfDjiD5S_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146276' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:16 GMT - Last-Modified: - - Tue, 06 Jun 2017 15:47:34 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/872118272686145536 - X-Cache: - - MISS - X-Connection-Hash: - - 7ad5d4c294779a3dd4f5adb05f423468 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '133' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4QAGAAYADwAxACNhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAgMBAAAAAAAAAAAAAAAFBwAEAgMGAf/EABoBAAIDAQEAAAAAAAAAAAAAAAQFAQIGAAP/2gAMAwEAAhADEAAAAWKOKisIyRhOMPWZ/iKI5uVlRvtIu4EuzJM443jCYxgOoO5VvSaBLzbZ4TZEj3ShH2ETZkmdcbxhMYwHR228W2ec5vw5j3AXomnKgZ2ZJm3G+ra0HeK9neDmQPKTp87RyjC83Ala5ngtL30rsM8RWROXqO8JSJF2Lk7pjlPO/wD/xAAlEAABBAECBgMBAAAAAAAAAAADAAECBAUQEwYSFBY0NREVQTD/2gAIAQEAAQUCWU9aqlG3aX1Vjmt0rVVflXxdPhZT12KBGzkOJiSr4xYCb2sRkAtXuVfF1yvrcGSIcpxbF3x64Xi8cVlSRNkKvi65X1qrZiyMPVY/muZe1YF+VfF1yvrRwnJmEV1tFTjmyLCcY1fF1yvraY2kJqsdxhSeMa8Ny/CLDq+LrbFv1e2SLtki7aIu2SLtmaHDkFrIo4ksEHssAsWdixkSJdmMxwi0oyTtqasI04UK8Y9EBxxpV4roq66CsgVggdfH8//EACYRAAEDAgQGAwAAAAAAAAAAAAEAAgMQEQQFEjETITJBUaEUIlL/2gAIAQMBAT8BkP0Kgw4cwyO2CgijnOkcissFnuFJOkqCdoidE7usNIzDu1k3WWu1PeaSdBQZdaFlgs51HWtzRwkI2b7Xxofz7UMMcXTQgHdcNvhcNvhBjR2p/8QAKBEAAQMCAwcFAAAAAAAAAAAAAgABAwQRBRAhEzEyQVFxoRIUUsHh/9oACAECAQE/AYgdpB7qqrCjlGEN7qrqJaQWN9WWNkxRxk2UXGyq6QynCePlyVbFLVg0bDbvb6WND6IoxbllFxtnjvCGQ3vdkNdUO2peF7yo+fj8VTPLO1pE7WTE46stsfVbU+qeU33urL//xAAyEAABAgMDCwMDBQAAAAAAAAABAAIDERIEITEQEyAiMjRRcnOSsTNBYSNSgRUwQsHw/9oACAEBAAY/AlaOmck4EFzh92AVOcs1f254TX14LmDj7ZIXIPGhaOmVBgv2Sb02HB1A51N3DJTaPqCZYZ+4UaCMGOIChcg8aFp6RUB7zITkmOA2Yl+SZuqeSFaIjTNpcZKFyDxoWnpHJmIrWWiFKUnqr9Mv4Z4yWZbTBhYUsyQuQeNC09IrVh1L0F6GK9FTdDpChcg8aFp6RUK9xrjUukdgXX/7goEnxHVOhzIdxnemUl5JiCHKoiQ4qibi3NtfXPE8P6TXseXNcXSmbx8FQuQeNCLBnKtpbNb43sW+jsW+jsW+t7FvjexMZjS0DQENzwHETl8JwzzW1CQdNXWtoBu83LfmYTw/ig029vuCU1lbbhLFXOB/OhW8GdNOPspSJ+ZoMeKtYu/JTpM2hI3o6mON62D3ImGyRIl+7//EACgQAAIBAwIGAgIDAAAAAAAAAAERACExUUHwIGFxkaHRELHB4TCB8f/aAAgBAQABPyGbPiC0C8yX2GPSexIOQ8F/cIbuk3fD5OMEh+8SsNT8gBn6hQFS0pSUJTEE6RcKLOEHJcGNJu+HBtOIExVydGFC6CAdDBHwIhRkxb8SuWMyLTd8ODacQWmnkDqsOACB5niqLCtRqmHiG7pN3w4NpxBC7KHXF4QADMoXv3lAGwARQ1BtrAQJBEgC+ttZUIGAc0m74cG04h5szXQ/KamkWISJWqFjkesIAmRgaOQBNMUMMFdAA08AD3Ia0mJx91MGhHmk3fDgIAfTDTEALd77n+r9zX8r3NDyfcKz9/3KuMxyguA/Colhcwpln0AkUM1ioFwqkJL1HmAhWdNqD+4qwzR2Whpg/cscj+gfow8QaFwGU1h8jpYSoS5/cDCPQDH3jgQF6nctDRGFAa2xAOgxYAKsopvUufuILQVbj4TH8f8A/9oADAMBAAIAAwAAABC4gN39eb7X9fyFf8J26LxEHJBD/8QAIxEBAAIABQMFAAAAAAAAAAAAAQARECExYaFBcfBRgZGx0f/aAAgBAwEBPxAHsv1E/fQNVjsmizOz3yIrWp+uHCZlomh1p3+IksqoAebCMj1z5cOAyoOChbGFiNDGqs8bzKc/jvGVNLrncGyG0LgfRNlFLBBSf//EACMRAQACAgAGAgMAAAAAAAAAAAEAESExEEFRkaGxcYFhwdH/2gAIAQIBAT8Qsbo9wjx57oPg3p5kWMvpKpzzG07zSg2n2HDzz3KMlxU1ZnT1y7lObYquToJvxD0Cx2A4eee5cuec/rhWdpntLJT9P5MhjmAJLDWA9Ed0xi2mKtr7z8/vCUVPmIdz/8QAJhABAQACAQMEAgIDAAAAAAAAAREAITFBUWEgcYGREPChsTDB8f/aAAgBAQABPxDP2/fnB7Ztt80V+Ifi4bHrqt2nfIyhdAd7bi+M/mv69AQnemSN/wB+Gw0yZUD5I+cq4e4YyXAwNdMg4H1goBe6aiuYMvOjHeBPLrr4T0hP3vflYrLQrKvapjnDmHARfmHz+H2I7Qda9qvrBVQXwGie89IT9b35we2O0arn2Xae45WVVs1/R4uKZftVMpb06EM/mP69IT9b35F7boqwMQbifeCLREGysPLT9ODCKl6EIjsUTKVahVTSTkjTvgErQbFtCrdI/PpCfre/DI6wiUFOFF6BfDJbdHw0mjVK7S4ojwFC7TcQpC26YmDqsGBE1otGuKY0rreMHhVaoABHY9AQw5A4WFnXBEHSM2nbMHheP9OdzspF3vjIAAAaBG9/PFg0R5zvApAJoVPj0LHQmPArwB3c0UI7GCg626/jJHlk8SgtKCtnkQQDQQ7ypqCDpe+lxyYKKciHkJ0kPTG8QApeTa9NbHthH1EpVxZxcl2Ov5tFSqFCIeA3xhBIwRUOAaHa664I5LRFTU0kYHQMozUklIuumx9YlEkAgiJfkH7wJKgBUqihW7RW3CvNETBU58r+PG/x/wD/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=University%20of%20Oregon&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Comodoro%20Rivadavia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:16 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1214595734332477440/klKvUHm5_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146279' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:16 GMT - Last-Modified: - - Tue, 07 Jan 2020 17:10:43 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1214595734332477440 - X-Cache: - - MISS - X-Connection-Hash: - - 3a58a0606da1df4ef2530946614dd0f6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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ADAKFRYTXusWskoCCuhzNzzHlBZ2YxALyGLehuXgFuXTrz/WNogBIvuz8c6xD0iJo+/9wBjX01jY0D6M0xgNIsgtPtOCTfOsslJJMSFrSEA66ZtgZBFF5wQOefbK2RUUT4hvKgBoY/zH8YSLC+QIjtBd9mBUxQDUCtUS73BzSdCMbSr2e7kZQsImCHvO/vByXBaWCSJRAL394PYWJg2JxwYNRVXYxB0pC8a9ZWOb8ZCiRLl8fifn+nA/wuTk0laiOvreHrLpCX+rGb6VQRM3qBQDlxDZwrvBpvj3FoQlxuFsrZnrg7jJAFC22g+sHYOYJkfuU8qGmZX3LRWkAGRF5tmGxRIDEJ0oI3kX3IztXrCfc7Z1txothqUIg8OcOH5HSr5g836PMNp5r+ZlaLenWbWiqOJRlOh+/uFseRAonig0+YoKwpERfKspt1X3P6zBt4A3U446+sN8bsZY1K3YcdMNhFwAqkkJTOGJbgZRyCOk6G9SMrbM0o/jYI7kZFVVvRhNLazRDVaUaF25MvhEbKbMnSB1EZgivmscdbQEctTnAwbzcM+9/Gc0WOhwYIKDye4r3IXtAEQqbh9CF6S4O+pRUaC7A3uJqK9yjBEABXsDlE8IunwqXK4CMT7+T93wMhIKPJecPiToGTWIiVWq/q//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Comodoro%20Rivadavia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:16 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232752478791356416/zuISSZ4e_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '119267' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:17 GMT - Last-Modified: - - Wed, 26 Feb 2020 19:39:09 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1232752478791356416 - X-Cache: - - MISS - X-Connection-Hash: - - 6e235346e1a012c8f66503cee47a1847 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:17 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bel%C3%A9m%20-%20PA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:17 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:17 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/674231593683148800/v6zYT42b_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '66458' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:17 GMT - Last-Modified: - - Tue, 08 Dec 2015 14:16:33 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/674231593683148800 - X-Cache: - - MISS - X-Connection-Hash: - - 41a781cb56e789c175bb7bad0866f653 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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p1Fbr5QFXAJwfcqLaW5LamIrvkuFPKIseibX3+XDFZk06SH0uy0ogNvEgLd1abgX425jfEnIk46CpYzQO18gSlJE33lXiLFv8ycQ/FH9WrHaChSHJYae1qEVZui4t5k4gd+5+uX+9hB0hTnEHpMPLUKFEjtLqsJ2Z4ZS0tGM4kEFViCSCQRb0uMc8w0vLL9UMx1dZityXXFu6mO80Xvawsbi9h13xRab+MH9c8Xeke6j9mP+2DcgR0liC03a90sQKOY68rVeYupvyWWTHci6EuBfEFVh+lYW53w6KHmSXUo0diE822unN92EFYQpolR1Abj9K5JwtqrxpH+L0/HfL/8AaPN/aOfzqxVwnUeB2FB9VYJGGVunAXflNXPTAzVk7xr7gNQiuFBeA8y06Cq6vpFOlQvzFsZwrtQWwNCiFG+w62w+3fzJH/aO/wC3jN2Yvz058ce5X6LTxTvp0xy42Pk7AonzS5w5j7gkLOsqCbghQGn1sRuPTBWfOVMRGamOLnaQdCHlJioR5bXCuJ2HDAKN7qv65YsmePyemfA/yDEUkuslVHABwFIGuoBx+Q85Fio/BFsJbQVFRJB68ONz8MB9Y+iP9PElr8pP1/ZjxgNctphtDS//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:17 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Bel%C3%A9m%20-%20PA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:17 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:17 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1235246692745781247&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="d41d51d24d400a857b99178b666e3c2b", - oauth_signature="Ya22ol%2FisBnz6814ghujJOn9kWY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487017", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '537840' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:18 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:18 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348701850790222; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:18 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_lyoU9WOxPyny3d+VLDIf+Q=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:18 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3b267e6db24f91102008f054f41c82ac - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '176' - X-Rate-Limit-Reset: - - '1583487846' - X-Response-Time: - - '347' - X-Transaction: - - 0064c29a00719fe2 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Wed Mar 04 16:52:15 +0000 2020","id":1235246692733030401,"id_str":"1235246692733030401","text":"This - tweet from Flu trackers is saying that there are three strains in Italy. The - article imbedded is in Italian th\u2026 https:\/\/t.co\/T0NdLbm1wZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T0NdLbm1wZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246692733030401","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":868137108766052352,"id_str":"868137108766052352","name":"OneO''ClockDrop - \ud83c\uddfa\ud83c\uddf8","screen_name":"OCDrises","location":"","description":"Monitoring - #SARSCoV2 daily. #COVID19, the resulting respiratory disease, is more dangerous - than China ever told us. Please prepare before the panic buyers","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2572,"friends_count":272,"listed_count":38,"created_at":"Fri - May 26 16:09:50 +0000 2017","favourites_count":35584,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8474,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223017922861268992\/Fgqte7wL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223017922861268992\/Fgqte7wL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/868137108766052352\/1495821868","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235239710370476032,"quoted_status_id_str":"1235239710370476032","quoted_status":{"created_at":"Wed - Mar 04 16:24:31 +0000 2020","id":1235239710370476032,"id_str":"1235239710370476032","text":"Italy - - Media report: There are 3 isolated strains in Italy The complete genetic - map of the #SarsCoV2 #coronavirus\u2026 https:\/\/t.co\/2jlRXUbJ7g","truncated":true,"entities":{"hashtags":[{"text":"SarsCoV2","indices":[92,101]},{"text":"coronavirus","indices":[102,114]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2jlRXUbJ7g","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235239710370476032","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19087092,"id_str":"19087092","name":"FluTrackers.com","screen_name":"FluTrackers","location":"International - Website","description":"Est. 2006- We are a 503(c)(3)non profit charity of - volunteers from many countries who document disease & human rights. Following - does not imply endorsement.","url":"http:\/\/t.co\/M4OYQbiiIP","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/M4OYQbiiIP","expanded_url":"http:\/\/www.flutrackers.com\/forum\/index.php","display_url":"flutrackers.com\/forum\/index.php","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":17073,"friends_count":507,"listed_count":985,"created_at":"Fri - Jan 16 21:48:44 +0000 2009","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":93412,"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\/71518489\/GlobeOnly_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/71518489\/GlobeOnly_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19087092\/1398476139","profile_link_color":"0015B9","profile_sidebar_border_color":"2D5052","profile_sidebar_fill_color":"D0D6D7","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692687130625,"id_str":"1235246692687130625","text":"RT - @ArthurSchwartz: \u201cU.S. private payrolls increased more than expected - in February, pointing to labor market strength before a recent esca\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ArthurSchwartz","name":"Arthur - Schwartz","id":21149655,"id_str":"21149655","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528120186,"id_str":"528120186","name":"Ed - K","screen_name":"EdK6723","location":"North Carolina USA","description":"IT - Guy, Biomedical Engineer, Photographer, Railfan, Minority Owner Green Bay - Packers and life long Yankees fan. \r\n Momma, they took my Kodachrome - away..,,","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":1301,"listed_count":8,"created_at":"Sun - Mar 18 03:52:54 +0000 2012","favourites_count":105,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13518,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1905261184\/Ed_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1905261184\/Ed_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:45:38 +0000 2020","id":1235214825841713152,"id_str":"1235214825841713152","text":"\u201cU.S. - private payrolls increased more than expected in February, pointing to labor - market strength before a recent\u2026 https:\/\/t.co\/8lRTLdn64i","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8lRTLdn64i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235214825841713152","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21149655,"id_str":"21149655","name":"Arthur - Schwartz","screen_name":"ArthurSchwartz","location":"Washington, DC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82736,"friends_count":158,"listed_count":649,"created_at":"Wed - Feb 18 00:09:13 +0000 2009","favourites_count":5985,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":7598,"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\/1068507063364567042\/td_R9AWw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1068507063364567042\/td_R9AWw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21149655\/1556199664","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":761,"favorite_count":2239,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":761,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692607447040,"id_str":"1235246692607447040","text":"@RepMattGaetz - Then why did your fuhrer appoint pray-the-gay-away-Pence (who is censoring - all communications related\u2026 https:\/\/t.co\/sxnEnU7WVa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepMattGaetz","name":"Rep. - Matt Gaetz","id":818948638890217473,"id_str":"818948638890217473","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/sxnEnU7WVa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246692607447040","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1235241370073300992,"in_reply_to_status_id_str":"1235241370073300992","in_reply_to_user_id":818948638890217473,"in_reply_to_user_id_str":"818948638890217473","in_reply_to_screen_name":"RepMattGaetz","user":{"id":130160544,"id_str":"130160544","name":"Steve","screen_name":"Steven_Glickman","location":"New - Jersey, USA","description":"Strong believer in the separation of church and - state and lover of mac & cheese. #VoteBlue","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":133,"listed_count":0,"created_at":"Tue - Apr 06 14:00:54 +0000 2010","favourites_count":7063,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4481,"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\/1130106801523970048\/6IdB8p5n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1130106801523970048\/6IdB8p5n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130160544\/1558273434","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692603174917,"id_str":"1235246692603174917","text":"RT - @RonaldBruceBar3: LET''S MAKE ONE THING PERFECTLY CLEAR!\n\nIF PRESIDENT TRUMP - IS INCORRECT ABOUT THE CORONAVIRUS, I''M VOTING FOR TRUMP AN\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonaldBruceBar3","name":"Ronald - Bruce Barton","id":742891346910924800,"id_str":"742891346910924800","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":331728214,"id_str":"331728214","name":"Jo - Ann \ud83c\uddfa\ud83c\uddf8","screen_name":"3172jam","location":"Ohio","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":967,"friends_count":1040,"listed_count":51,"created_at":"Fri - Jul 08 16:44:12 +0000 2011","favourites_count":66948,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":108725,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/772178809999196160\/GB1ee5Ga_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772178809999196160\/GB1ee5Ga_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/331728214\/1498733475","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 21:52:02 +0000 2020","id":1234959747767558146,"id_str":"1234959747767558146","text":"LET''S - MAKE ONE THING PERFECTLY CLEAR!\n\nIF PRESIDENT TRUMP IS INCORRECT ABOUT THE - CORONAVIRUS, I''M VOTING FOR TRUMP\u2026 https:\/\/t.co\/Lh4nWz0YtY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Lh4nWz0YtY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234959747767558146","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":742891346910924800,"id_str":"742891346910924800","name":"Ronald - Bruce Barton","screen_name":"RonaldBruceBar3","location":"USA","description":"NO - MORE DEPLOMACY !BAD TO THE BONE! PRO-CONSTITUTION, Pro-2nd ! Anti-abortion, PRO-TRUMP, - \nBORN AGAIN ! Saved by the grace of GOD!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9325,"friends_count":10250,"listed_count":4,"created_at":"Wed - Jun 15 01:27:54 +0000 2016","favourites_count":69187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":79469,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1023612843944488961\/Y2s_yoMH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1023612843944488961\/Y2s_yoMH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":230,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":120,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692536127488,"id_str":"1235246692536127488","text":"Los - especuladores aprovechan todo: Por el coronavirus, se duplicaron la demanda - y los precios de los barbijos y el\u2026 https:\/\/t.co\/gvwJFOIXvK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gvwJFOIXvK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246692536127488","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.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,"user":{"id":1131725414110507008,"id_str":"1131725414110507008","name":"Fernando - Lagar","screen_name":"lagar_fernando","location":"Santiago del Estero, Argentina","description":"Periodista - \/ Peri\u00f3dico El Urbano Peri\u00f3dico Cuartopoder Revista InfoSantiago","url":"https:\/\/t.co\/Z2AOPUoLB9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z2AOPUoLB9","expanded_url":"http:\/\/www.elurbanoweb.com","display_url":"elurbanoweb.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":40,"listed_count":0,"created_at":"Fri - May 24 00:55:39 +0000 2019","favourites_count":160,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3322,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131726460736167936\/O5z2yLD4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131726460736167936\/O5z2yLD4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692485734400,"id_str":"1235246692485734400","text":"RT - @JeffoConDobleF: Primer caso de coronavirus en Argentina y subieron mucho - de precio las m\u00e1scaras anticontagio.\n\nAhora son mas-carillas.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JeffoConDobleF","name":"9z - Jeffo","id":362163276,"id_str":"362163276","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2738305919,"id_str":"2738305919","name":"luka - con k","screen_name":"LukaDz26","location":"Santa Cruz, Argentina","description":"paso - por problemas econ\u00f3micos y a\u00fan as\u00ed estoy twitteando pelotudeces","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":168,"friends_count":199,"listed_count":0,"created_at":"Sat - Aug 09 17:52:31 +0000 2014","favourites_count":15877,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3988,"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\/1216502150618124288\/OwSHzmCp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216502150618124288\/OwSHzmCp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2738305919\/1578714113","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:17:35 +0000 2020","id":1235207769046867969,"id_str":"1235207769046867969","text":"Primer - caso de coronavirus en Argentina y subieron mucho de precio las m\u00e1scaras - anticontagio.\n\nAhora son mas-carillas.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":362163276,"id_str":"362163276","name":"9z - Jeffo","screen_name":"JeffoConDobleF","location":"Capital Federal","description":"Twitch - Partner | Streamer N\u00b0 1 de Mortal Kombat Shaolin Monks y FIFA Street - 2.\nhttps:\/\/t.co\/pqi9bvi2TT","url":"https:\/\/t.co\/vq0i7L7typ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vq0i7L7typ","expanded_url":"http:\/\/www.instagram.com\/JeffoConDobleF","display_url":"instagram.com\/JeffoConDobleF","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pqi9bvi2TT","expanded_url":"http:\/\/twitch.tv\/Jeffocondoblef","display_url":"twitch.tv\/Jeffocondoblef","indices":[79,102]}]}},"protected":false,"followers_count":55550,"friends_count":196,"listed_count":35,"created_at":"Thu - Aug 25 23:26:51 +0000 2011","favourites_count":31316,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16358,"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\/1229903458943238147\/uhPar3ze_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229903458943238147\/uhPar3ze_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/362163276\/1570031092","profile_link_color":"00A100","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2927,"favorite_count":36849,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":2927,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692456378368,"id_str":"1235246692456378368","text":"RT - @MiliViado: Primer caso de coronavirus en la Argentina.. saben a quien le - agarro? A mi vecino, SI MI VECINO, EL QUE VIVE EN LA CASA DE A\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MiliViado","name":"Mili","id":1070161518,"id_str":"1070161518","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":480793730,"id_str":"480793730","name":"$h\u03b9\u028d\u03b9\u2077 - \u2765","screen_name":"hohobihoseoki","location":"","description":"\u2765 - Taekuka","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1343,"friends_count":1251,"listed_count":9,"created_at":"Wed - Feb 01 22:29:17 +0000 2012","favourites_count":24064,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8307,"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\/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\/1234689954892177408\/yTzhLFYv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234689954892177408\/yTzhLFYv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480793730\/1583282245","profile_link_color":"7FDBB6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:53:39 +0000 2020","id":1234914854839947268,"id_str":"1234914854839947268","text":"Primer - caso de coronavirus en la Argentina.. saben a quien le agarro? A mi vecino, - SI MI VECINO, EL QUE VIVE EN LA\u2026 https:\/\/t.co\/ckMobvcznp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ckMobvcznp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234914854839947268","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1070161518,"id_str":"1070161518","name":"Mili","screen_name":"MiliViado","location":"","description":"Le - voy a dar la vuelta al mundo. \n Instagram - @Miliviado \n Trajes de Ba\u00f1o @reikaok","url":"https:\/\/t.co\/iTeUucpLfk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iTeUucpLfk","expanded_url":"http:\/\/instagram.com\/miliviado","display_url":"instagram.com\/miliviado","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3356,"friends_count":422,"listed_count":6,"created_at":"Tue - Jan 08 06:44:12 +0000 2013","favourites_count":4428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12146,"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\/972971176287928324\/NY81P_4a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/972971176287928324\/NY81P_4a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1070161518\/1568586805","profile_link_color":"11F2AB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8983,"favorite_count":154725,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":8983,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692372447232,"id_str":"1235246692372447232","text":"RT - @Yusuf_Ahmed92: Anti-Coronavirus protocol:\n\n- wash hands up to wrist\n- - take water in your hand and bring to nose, breathe water in (clea\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Yusuf_Ahmed92","name":"Yusuf - Ahmed","id":2504949828,"id_str":"2504949828","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":856811886653976576,"id_str":"856811886653976576","name":"Tashreeq","screen_name":"doublesonly","location":"Cape - Town, South Africa","description":"A silent but violent one \ud83d\ude2a","url":"https:\/\/t.co\/ueTCtXN8vQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ueTCtXN8vQ","expanded_url":"http:\/\/Lawyered.com","display_url":"Lawyered.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":280,"listed_count":0,"created_at":"Tue - Apr 25 10:07:27 +0000 2017","favourites_count":4631,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1774,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1100463060328812544\/HMSNdKCC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1100463060328812544\/HMSNdKCC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/856811886653976576\/1567669415","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:24:31 +0000 2020","id":1234983018684485632,"id_str":"1234983018684485632","text":"Anti-Coronavirus - protocol:\n\n- wash hands up to wrist\n- take water in your hand and bring - to nose, breathe water in\u2026 https:\/\/t.co\/y0yzeKNt2F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/y0yzeKNt2F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234983018684485632","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2504949828,"id_str":"2504949828","name":"Yusuf - Ahmed","screen_name":"Yusuf_Ahmed92","location":"Toronto, Canada","description":"Interested - in: Physical Training \ud83c\udfcb\ufe0f\u200d\u2640\ufe0f | History \ud83d\udcdc| - Storytelling \ud83d\udcdd","url":"https:\/\/t.co\/q1F7GOgDJj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/q1F7GOgDJj","expanded_url":"https:\/\/yusufahmedwriting.us14.list-manage.com\/subscribe?id=a34179a785&u=d8a5678fa43441e1b50626128","display_url":"yusufahmedwriting.us14.list-manage.com\/subscribe?id=a\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":75,"listed_count":12,"created_at":"Sun - May 18 16:49:59 +0000 2014","favourites_count":2356,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2042,"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\/1200499818122153984\/iQfVRBJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1200499818122153984\/iQfVRBJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2504949828\/1575056438","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21651,"favorite_count":50848,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":21651,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692234076160,"id_str":"1235246692234076160","text":"RT - @Channel4News: \u201cIt\u2019s not important what famous people say... My - opinion about corona, it''s not important.\"\n\nLiverpool manager J\u00fcrgen - Klo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Channel4News","name":"Channel - 4 News","id":14569869,"id_str":"14569869","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19904351,"id_str":"19904351","name":"Graham - Muz Muspratt","screen_name":"GrahamMuz","location":"South Bucks","description":"Just - Muz, Southern Railway modeller & historian! Trustee\/Director of SR Merchant - Navy 35011. Views are personal, RTs are not endorsements. Live life on the - edge","url":"https:\/\/t.co\/FqoWqdkioz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FqoWqdkioz","expanded_url":"http:\/\/grahammuz.com","display_url":"grahammuz.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":904,"friends_count":1959,"listed_count":22,"created_at":"Mon - Feb 02 12:38:16 +0000 2009","favourites_count":13424,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13253,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/740551108767154176\/OBFURdXh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/740551108767154176\/OBFURdXh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19904351\/1391949521","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:19:49 +0000 2020","id":1235178131880841216,"id_str":"1235178131880841216","text":"\u201cIt\u2019s - not important what famous people say... My opinion about corona, it''s not - important.\"\n\nLiverpool manager J\u00fcrg\u2026 https:\/\/t.co\/UvxfcXrp9L","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UvxfcXrp9L","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235178131880841216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14569869,"id_str":"14569869","name":"Channel - 4 News","screen_name":"Channel4News","location":"United Kingdom","description":"Stories - that reveal and inspire, challenging expectations. \n\nWeekdays 7-8pm on Channel - 4.","url":"https:\/\/t.co\/LBhZvqcoKL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LBhZvqcoKL","expanded_url":"http:\/\/www.channel4.com\/news","display_url":"channel4.com\/news","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2279327,"friends_count":4527,"listed_count":10295,"created_at":"Mon - Apr 28 14:29:37 +0000 2008","favourites_count":521,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":100860,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2C1C36","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875404558528393216\/cTknVhwm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875404558528393216\/cTknVhwm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14569869\/1578925574","profile_link_color":"421174","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAF0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1918,"favorite_count":8190,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1918,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692162772993,"id_str":"1235246692162772993","text":"Cuantos - casos de coronavirus habr\u00e1n ya en Venezuelq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4907844196,"id_str":"4907844196","name":"Cristhian","screen_name":"crismontilla_","location":"Puerto - la cruz ","description":"inteligente, gracioso, cool, bello, atleta y para - nada narcisista.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":201,"friends_count":481,"listed_count":0,"created_at":"Sun - Feb 14 05:44:26 +0000 2016","favourites_count":5829,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7425,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"76FF04","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235398865110683648\/TLzx95BH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235398865110683648\/TLzx95BH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4907844196\/1560061307","profile_link_color":"9056CA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692104056832,"id_str":"1235246692104056832","text":"RT - @flightcrew: Reporters Ask President Trump a Question About The Stock Market - Today, But Trump Replied That All of His Energy & Focus Wer\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"flightcrew","name":"Flightcrew - \ud83c\uddfa\ud83c\uddf8","id":18664754,"id_str":"18664754","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3122540334,"id_str":"3122540334","name":"GeezLouise","screen_name":"Oh_Geez_Louise","location":"Researching","description":"Believer, - Wife, Mom, Patriot, Collector of Random Facts, Reader, TruthSeeker, Dot Connector, - #MAGA, #KAG, #2A, #TERMLIMITS, #TRUMP2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4265,"friends_count":4995,"listed_count":3,"created_at":"Wed - Apr 01 02:34:22 +0000 2015","favourites_count":3645,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1142785611687964672\/KxGn_v_d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1142785611687964672\/KxGn_v_d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3122540334\/1560911745","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 05:51:05 +0000 2020","id":1235080302256480259,"id_str":"1235080302256480259","text":"Reporters - Ask President Trump a Question About The Stock Market Today, But Trump Replied - That All of His Energy & F\u2026 https:\/\/t.co\/0vJLI9mbQC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0vJLI9mbQC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235080302256480259","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18664754,"id_str":"18664754","name":"Flightcrew - \ud83c\uddfa\ud83c\uddf8","screen_name":"flightcrew","location":"Washington - DC (The Swamp)","description":"I support PRESIDENT Donald Trump!","url":"https:\/\/t.co\/NgUd6eRpNj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NgUd6eRpNj","expanded_url":"http:\/\/whitehouse.gov","display_url":"whitehouse.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20087,"friends_count":6365,"listed_count":26,"created_at":"Tue - Jan 06 06:07:44 +0000 2009","favourites_count":182119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14487,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/837708761255055360\/Zat8gU23_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/837708761255055360\/Zat8gU23_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18664754\/1502572032","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":149,"favorite_count":253,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":149,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692087336962,"id_str":"1235246692087336962","text":"RT - @santidepresivos: El coronavirus no puede hacer m\u00e1s da\u00f1o a este - pa\u00eds de lo que hizo Robbie Williams.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"santidepresivos","name":"santidepresivos","id":309324452,"id_str":"309324452","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":808040379933200385,"id_str":"808040379933200385","name":"Clari\u2763","screen_name":"claralb12","location":"Arroyo - Seco, Argentina","description":"Este amor no descender\u00e1 jam\u00e1s","url":"https:\/\/t.co\/LrjGeUQUMK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LrjGeUQUMK","expanded_url":"https:\/\/www.instagram.com\/ledesmacla_\/","display_url":"instagram.com\/ledesmacla_\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":184,"friends_count":107,"listed_count":0,"created_at":"Sun - Dec 11 20:06:54 +0000 2016","favourites_count":14915,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3830,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234650396150419462\/buLdP1CR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234650396150419462\/buLdP1CR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/808040379933200385\/1581639795","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 20:20:30 +0000 2020","id":1234936708786946050,"id_str":"1234936708786946050","text":"El - coronavirus no puede hacer m\u00e1s da\u00f1o a este pa\u00eds de lo que hizo - Robbie Williams.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":309324452,"id_str":"309324452","name":"santidepresivos","screen_name":"santidepresivos","location":"Santa - F\u00e9, Argentina","description":"melancol\u00eda, uranismo y filosof\u00eda.","url":"https:\/\/t.co\/HAjIRfPSha","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HAjIRfPSha","expanded_url":"https:\/\/curiouscat.me\/santi_zeta","display_url":"curiouscat.me\/santi_zeta","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4434,"friends_count":679,"listed_count":3,"created_at":"Wed - Jun 01 22:22:42 +0000 2011","favourites_count":30518,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7821,"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\/1209278548369977344\/vANvBQ2W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209278548369977344\/vANvBQ2W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309324452\/1574401419","profile_link_color":"C77389","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11678,"favorite_count":55755,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":11678,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246692078845952,"id_str":"1235246692078845952","text":"RT - @kibudi: El coronavirus mata a los mayores de 80 a\u00f1os.\nPeligra la base - electoral de Cambiemos.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kibudi","name":"Kibudi","id":72425570,"id_str":"72425570","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188113979,"id_str":"188113979","name":"S\u0454\u00f1\u03c3\u044f\u03b9\u0442\u03b1 - C\u03b1\u03b7\u0454\u2113\u03b1 \ud83c\udf08","screen_name":"IdentidadmariKa","location":"La - Plata, Argentina","description":"Mejor trolo empoderado que gay heteronormado - \ud83d\udc9a\n\nhttps:\/\/t.co\/cNpW2g04Rc","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/cNpW2g04Rc","expanded_url":"https:\/\/www.instagram.com\/naza93c?r=nametag","display_url":"instagram.com\/naza93c?r=name\u2026","indices":[48,71]}]}},"protected":false,"followers_count":352,"friends_count":352,"listed_count":1,"created_at":"Tue - Sep 07 23:31:50 +0000 2010","favourites_count":13257,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9222,"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\/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\/1235248871422545921\/KO7QiAM2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235248871422545921\/KO7QiAM2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188113979\/1554479250","profile_link_color":"FF0000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 00:27:16 +0000 2020","id":1234998812382359553,"id_str":"1234998812382359553","text":"El - coronavirus mata a los mayores de 80 a\u00f1os.\nPeligra la base electoral - de Cambiemos.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72425570,"id_str":"72425570","name":"Kibudi","screen_name":"kibudi","location":"BAJO - FLORES. BURUNDI.","description":"hacerse el boludo tambien es politico. \n\nchistes - por dinero.\nstand up a la gorra.\nIGmarcelokibudi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8563,"friends_count":8738,"listed_count":12,"created_at":"Tue - Sep 08 00:27:12 +0000 2009","favourites_count":37787,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8014,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114256077879685122\/spAuIJ2A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114256077879685122\/spAuIJ2A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72425570\/1502378936","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1405,"favorite_count":13357,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1405,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691902803975,"id_str":"1235246691902803975","text":"RT - @tprincedelamour: \ud83c\udd98Criminel: Agn\u00e8s #Buzyn, qui disait que - les #masques ne servent \u00e0 rien, a envoy\u00e9 \u00e0 la Chine tout le - stock strat\u00e9gique\u2026","truncated":false,"entities":{"hashtags":[{"text":"Buzyn","indices":[38,44]},{"text":"masques","indices":[65,73]}],"symbols":[],"user_mentions":[{"screen_name":"tprincedelamour","name":"Napol\u00e9on","id":572122341,"id_str":"572122341","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2367508482,"id_str":"2367508482","name":"Alain - P \/4811\/","screen_name":"Alain0pich","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":324,"listed_count":5,"created_at":"Sat - Mar 01 19:25:40 +0000 2014","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14820,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638258466956673024\/CD-vW9PE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638258466956673024\/CD-vW9PE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 07:04:30 +0000 2020","id":1235098779608592384,"id_str":"1235098779608592384","text":"\ud83c\udd98Criminel: - Agn\u00e8s #Buzyn, qui disait que les #masques ne servent \u00e0 rien, a envoy\u00e9 - \u00e0 la Chine tout le stock strat\u00e9giq\u2026 https:\/\/t.co\/6qRkfhrJUO","truncated":true,"entities":{"hashtags":[{"text":"Buzyn","indices":[17,23]},{"text":"masques","indices":[44,52]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6qRkfhrJUO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235098779608592384","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":572122341,"id_str":"572122341","name":"Napol\u00e9on","screen_name":"tprincedelamour","location":"France","description":"J''\u0152uvre - au Rassemblement des Fran\u00e7ais pour sauver le pays!","url":"https:\/\/t.co\/auefwHpKIx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/auefwHpKIx","expanded_url":"https:\/\/youtu.be\/NTVvmCAEg3A?t=7","display_url":"youtu.be\/NTVvmCAEg3A?t=7","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":26646,"friends_count":1051,"listed_count":287,"created_at":"Sat - May 05 20:18:07 +0000 2012","favourites_count":32354,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13973,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"13278A","profile_background_image_url":"http:\/\/abs.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\/671366592995983360\/-UuSvM-o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671366592995983360\/-UuSvM-o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/572122341\/1483455456","profile_link_color":"75072C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":527,"favorite_count":580,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":527,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691818692610,"id_str":"1235246691818692610","text":"\u201cN\u00e3o - sei em que a minha opini\u00e3o sobre o Coronav\u00edrus \u00e9 relevante, - considerando que n\u00e3o sou especialista no tema. S\u00f3\u2026 https:\/\/t.co\/bFRCv33xt6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bFRCv33xt6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246691818692610","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887489515501342721,"id_str":"887489515501342721","name":"Futmais","screen_name":"futtmais","location":"Brasil","description":"Nossa - loja: @Futmais_Store | Resultados, estat\u00edsticas, transfer\u00eancias, - n\u00fameros, especula\u00e7\u00f5es, frases, curiosidades e resenha!","url":"https:\/\/t.co\/Qqt1LChxv3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qqt1LChxv3","expanded_url":"http:\/\/www.futmais.store","display_url":"futmais.store","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":157035,"friends_count":410,"listed_count":851,"created_at":"Wed - Jul 19 01:49:24 +0000 2017","favourites_count":3158,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":62801,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212502954948710400\/VR_JkACd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212502954948710400\/VR_JkACd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887489515501342721\/1566850051","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":569,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691743301632,"id_str":"1235246691743301632","text":"RT - @StayWonked: Italy: Quarantined cities\n\nIran: Stopped all travel & religious - observances. \n\nAustralia: Release worst case scenario plan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StayWonked","name":"Not - Bill Murray","id":21950364,"id_str":"21950364","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41562368,"id_str":"41562368","name":"Suzanne - Hall","screen_name":"shall3991","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":383,"listed_count":54,"created_at":"Thu - May 21 10:21:36 +0000 2009","favourites_count":20521,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27672,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/763498520657682432\/HNJGJx1L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/763498520657682432\/HNJGJx1L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41562368\/1470867205","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 03:35:27 +0000 2020","id":1233596619351904257,"id_str":"1233596619351904257","text":"Italy: - Quarantined cities\n\nIran: Stopped all travel & religious observances. - \n\nAustralia: Release worst case scenar\u2026 https:\/\/t.co\/Vt3AVP54B8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Vt3AVP54B8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233596619351904257","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21950364,"id_str":"21950364","name":"Not - Bill Murray","screen_name":"StayWonked","location":"Washington, DC","description":"My - hobbies include: Golf. Groundhogs. Ghostbusting. Government. Not THE Bill - Murray. Inquiries, scoops, collabs: StayWonked@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33157,"friends_count":790,"listed_count":126,"created_at":"Thu - Feb 26 01:10:20 +0000 2009","favourites_count":285,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11038,"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\/832008419833999361\/AgjM7_Mt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832008419833999361\/AgjM7_Mt_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4672,"favorite_count":9147,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4672,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691676229632,"id_str":"1235246691676229632","text":"RT - @propublica: American hospitals, overall, are so bad at preventing infections - that hospital-acquired infections are considered a leading\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"propublica","name":"ProPublica","id":14606079,"id_str":"14606079","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474138446,"id_str":"474138446","name":"mayan - andrew","screen_name":"andrew_mayan","location":"nairobi","description":"cool,down-to-earth - dude whose main business is minding his own business.lover of life,good music - and @arsenal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":131,"friends_count":505,"listed_count":0,"created_at":"Wed - Jan 25 17:54:16 +0000 2012","favourites_count":156,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":844,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2711439631\/6042c5c54282f76f00fc4c163d760e9a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2711439631\/6042c5c54282f76f00fc4c163d760e9a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474138446\/1403013224","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:30:45 +0000 2020","id":1235241279858110466,"id_str":"1235241279858110466","text":"American - hospitals, overall, are so bad at preventing infections that hospital-acquired - infections are considered a\u2026 https:\/\/t.co\/zwJpnkwrLE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zwJpnkwrLE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235241279858110466","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14606079,"id_str":"14606079","name":"ProPublica","screen_name":"propublica","location":"New - York, NY","description":"Pursuing stories with moral force. Send us things: - https:\/\/t.co\/ujWrcRGO73. Newsletter: https:\/\/t.co\/h8cUdnAGcF. Also follow - @ProPublicaIL. We''re there, too.","url":"http:\/\/t.co\/Fqv83dHVfq","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Fqv83dHVfq","expanded_url":"http:\/\/www.propublica.org\/","display_url":"propublica.org","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ujWrcRGO73","expanded_url":"http:\/\/propub.li\/2hoDS2G","display_url":"propub.li\/2hoDS2G","indices":[51,74]},{"url":"https:\/\/t.co\/h8cUdnAGcF","expanded_url":"https:\/\/propub.li\/2LdoRh6","display_url":"propub.li\/2LdoRh6","indices":[88,111]}]}},"protected":false,"followers_count":837574,"friends_count":475,"listed_count":17708,"created_at":"Wed - Apr 30 21:17:15 +0000 2008","favourites_count":4572,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":71006,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DFE9F3","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\/902174720040292354\/rLSBbM4r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/902174720040292354\/rLSBbM4r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14606079\/1503930270","profile_link_color":"5287B5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"030303","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":136,"favorite_count":200,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":136,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691642748928,"id_str":"1235246691642748928","text":"RT - @gtp1032: Al final el coronavirus es una garcha, ni una semana de suspensi\u00f3n - de clases, aguante la gripe A y el dengue forro","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gtp1032","name":"Gonzi\ud83d\udc99\ud83d\udc9b\ud83d\udc99","id":1382758596,"id_str":"1382758596","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":556356633,"id_str":"556356633","name":"Una - birra por favor \ud83c\udf7b","screen_name":"ChaveVazquez","location":"","description":"Profe - de Educaci\u00f3n F\u00edsica...\ud83d\udc9c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":621,"friends_count":1035,"listed_count":2,"created_at":"Tue - Apr 17 20:52:53 +0000 2012","favourites_count":5430,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18255,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/abs.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\/1232477948705431552\/wyyA8nyW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232477948705431552\/wyyA8nyW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/556356633\/1581092189","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:49:40 +0000 2020","id":1235246041408188416,"id_str":"1235246041408188416","text":"Al - final el coronavirus es una garcha, ni una semana de suspensi\u00f3n de clases, - aguante la gripe A y el dengue forro","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1382758596,"id_str":"1382758596","name":"Gonzi\ud83d\udc99\ud83d\udc9b\ud83d\udc99","screen_name":"gtp1032","location":"De - ing.luiggi La pampa ","description":"C.A.B.J\ud83d\udc99\ud83d\udc9b\ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":512,"friends_count":379,"listed_count":6,"created_at":"Fri - Apr 26 20:09:22 +0000 2013","favourites_count":21577,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":55495,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6F2E42","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204200926770274305\/9Egz_uTM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204200926770274305\/9Egz_uTM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1382758596\/1412583099","profile_link_color":"FF8731","profile_sidebar_border_color":"A4C898","profile_sidebar_fill_color":"F7C77B","profile_text_color":"FDB36C","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691621711874,"id_str":"1235246691621711874","text":"RT - @guardiannews: Coronavirus: doctors and nurses in Iran filmed dancing in bid - to boost morale \u2013 video https:\/\/t.co\/bzCGVrxhak","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"guardiannews","name":"Guardian - news","id":788524,"id_str":"788524","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/bzCGVrxhak","expanded_url":"https:\/\/www.theguardian.com\/world\/video\/2020\/mar\/04\/coronavirus-doctors-and-nurses-in-iran-filmed-dancing-in-bid-to-boost-morale-video?utm_term=Autofeed&CMP=twt_b-gdnnews&utm_medium=Social&utm_source=Twitter#Echobox=1583339610","display_url":"theguardian.com\/world\/video\/20\u2026","indices":[104,127]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3327602098,"id_str":"3327602098","name":"Bankir-\u0424\u0456\u043b\u043e\u0441\u043e\u0444","screen_name":"kniga555","location":"","description":"\u041b\u0438\u0448\u0435 - \u0412\u0456\u043b\u044c\u043d\u0430 \u0435\u043a\u043e\u043d\u043e\u043c\u0456\u043a\u0430 - \u0441\u043f\u0440\u043e\u043c\u043e\u0436\u043d\u0430 \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0438\u0442\u0438 - \u043f\u0440\u043e\u0446\u0432\u0456\u0442\u0430\u043d\u043d\u044f \u0434\u0435\u0440\u0436\u0430\u0432\u0438","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1809,"friends_count":2060,"listed_count":30,"created_at":"Mon - Jun 15 17:41:04 +0000 2015","favourites_count":1513,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":272839,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822624350419480578\/HHNAicO1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822624350419480578\/HHNAicO1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3327602098\/1484989114","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:44:13 +0000 2020","id":1235244668922859520,"id_str":"1235244668922859520","text":"Coronavirus: - doctors and nurses in Iran filmed dancing in bid to boost morale \u2013 video - https:\/\/t.co\/bzCGVrxhak","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bzCGVrxhak","expanded_url":"https:\/\/www.theguardian.com\/world\/video\/2020\/mar\/04\/coronavirus-doctors-and-nurses-in-iran-filmed-dancing-in-bid-to-boost-morale-video?utm_term=Autofeed&CMP=twt_b-gdnnews&utm_medium=Social&utm_source=Twitter#Echobox=1583339610","display_url":"theguardian.com\/world\/video\/20\u2026","indices":[86,109]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":788524,"id_str":"788524","name":"Guardian - news","screen_name":"guardiannews","location":"","description":"The need for - independent journalism has never been greater. Become a Guardian supporter: - https:\/\/t.co\/KXycIPGfHd","url":"https:\/\/t.co\/PJxUC0RWyr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PJxUC0RWyr","expanded_url":"http:\/\/www.theguardian.com","display_url":"theguardian.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/KXycIPGfHd","expanded_url":"http:\/\/gu.com\/supporter\/guardiannews","display_url":"gu.com\/supporter\/guar\u2026","indices":[89,112]}]}},"protected":false,"followers_count":3063259,"friends_count":1254,"listed_count":32779,"created_at":"Thu - Feb 22 12:32:47 +0000 2007","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":223525,"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\/1061915596328263680\/EcBjYl5z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1061915596328263680\/EcBjYl5z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/788524\/1542015319","profile_link_color":"005789","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CAE3F3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":44,"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"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691466596353,"id_str":"1235246691466596353","text":"#CV19\nWheeling - in hospital beds https:\/\/t.co\/6NNXpdjsUg","truncated":false,"entities":{"hashtags":[{"text":"CV19","indices":[0,5]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6NNXpdjsUg","expanded_url":"https:\/\/www.washingtonpost.com\/world\/europe\/coronavirus-in-italy-fills-hospital-beds-and-turns-doctors-into-patients\/2020\/03\/03\/60a723a2-5c9e-11ea-ac50-18701e14e06d_story.html#click=https:\/\/t.co\/vFzb8nfPwp","display_url":"washingtonpost.com\/world\/europe\/c\u2026","indices":[33,56]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211681345,"id_str":"211681345","name":"Annette - Mooney","screen_name":"annette_mooney","location":"Dublin City, Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":626,"friends_count":764,"listed_count":35,"created_at":"Wed - Nov 03 23:17:31 +0000 2010","favourites_count":107,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":901,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/745243559310278657\/CH9n3kCO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/745243559310278657\/CH9n3kCO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211681345\/1580475643","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691453980674,"id_str":"1235246691453980674","text":"RT - @regionetoscana: #coronarvirusitalia #covid19 \nUlteriori iniziative della - task-force regionale:\n\u25aa\ufe0f controlli a tappeto a tutti gli ingre\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronarvirusitalia","indices":[20,39]},{"text":"covid19","indices":[40,48]}],"symbols":[],"user_mentions":[{"screen_name":"regionetoscana","name":"Regione - Toscana","id":781790534553702400,"id_str":"781790534553702400","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1116288276,"id_str":"1116288276","name":"Anci - Toscana","screen_name":"AnciToscana","location":"Firenze","description":"","url":"http:\/\/t.co\/I9hkOMMY","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/I9hkOMMY","expanded_url":"http:\/\/www.ancitoscana.it","display_url":"ancitoscana.it","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":3614,"friends_count":566,"listed_count":42,"created_at":"Thu - Jan 24 08:52:22 +0000 2013","favourites_count":135,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E7E7E7","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\/907541305630367744\/yGn45J_e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907541305630367744\/yGn45J_e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1116288276\/1462871936","profile_link_color":"009999","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:43:24 +0000 2020","id":1235244465322971136,"id_str":"1235244465322971136","text":"#coronarvirusitalia - #covid19 \nUlteriori iniziative della task-force regionale:\n\u25aa\ufe0f - controlli a tappeto a tutti gli i\u2026 https:\/\/t.co\/xSmIwKyjZV","truncated":true,"entities":{"hashtags":[{"text":"coronarvirusitalia","indices":[0,19]},{"text":"covid19","indices":[20,28]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xSmIwKyjZV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235244465322971136","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":781790534553702400,"id_str":"781790534553702400","name":"Regione - Toscana","screen_name":"regionetoscana","location":"Firenze, Toscana","description":"Account - ufficiale della Regione Toscana - Giunta regionale - Presidente @rossipresidente. - Comunicazione istituzionale a cura della Redazione web social","url":"https:\/\/t.co\/f0HkuAw6eU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/f0HkuAw6eU","expanded_url":"http:\/\/www.regione.toscana.it","display_url":"regione.toscana.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9654,"friends_count":572,"listed_count":98,"created_at":"Fri - Sep 30 09:39:23 +0000 2016","favourites_count":8239,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8796,"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\/782693556700020736\/RUXVWvvg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/782693556700020736\/RUXVWvvg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/781790534553702400\/1580816413","profile_link_color":"E2001A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":38,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691437236228,"id_str":"1235246691437236228","text":"https:\/\/t.co\/HylN5HZdci","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HylN5HZdci","expanded_url":"https:\/\/www.ccn.com\/hiv-ebola-like-mutations-suggest-coronavirus-leaked-from-a-lab\/","display_url":"ccn.com\/hiv-ebola-like\u2026","indices":[0,23]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184088924,"id_str":"184088924","name":"Susan - Lynch #Vote Blue 2020","screen_name":"skyred1970","location":"Northeast Florida","description":"Love - being a Social Democrat. Trump is destroying America from within,with the - help of Putin. I am not here to date. #Vote Blue No Matter Who","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7806,"friends_count":7943,"listed_count":13,"created_at":"Sat - Aug 28 17:23:46 +0000 2010","favourites_count":132824,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94347,"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\/978496937228840960\/2Be4b1IB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/978496937228840960\/2Be4b1IB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184088924\/1486918062","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691424628739,"id_str":"1235246691424628739","text":"RT - @paige_leier: Just a friendly reminder that more people die of the flu (which - has a seasonal vaccine available) than the coronavirus \ud83d\ude2c t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"paige_leier","name":"paige","id":318222453,"id_str":"318222453","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1297304707,"id_str":"1297304707","name":"Teah - Poyner","screen_name":"TeahRay","location":"Insta\/snap:@trpoyner","description":"\ud835\udd3c\ud835\udd67\ud835\udd56\ud835\udd63\ud835\udd6a\ud835\udd65\ud835\udd59\ud835\udd5a\ud835\udd5f\ud835\udd58 - \u210d\ud835\udd52\ud835\udd61\ud835\udd61\ud835\udd56\ud835\udd5f\ud835\udd64 - \ud835\udd3d\ud835\udd60\ud835\udd63 \ud835\udd38 \u211d\ud835\udd56\ud835\udd52\ud835\udd64\ud835\udd60\ud835\udd5f - \u2022Instructor\/Dancer\u2022EvoFit Athlete \u2022NASM Student\u2022\ud835\ude79\ud835\ude98\ud835\ude91\ud835\ude97 - \ud835\udff7\ud835\udff9.\ud835\udffd\u2022","url":"https:\/\/t.co\/fHdDyZwzH8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fHdDyZwzH8","expanded_url":"https:\/\/www.youtube.com\/channel\/UCdOLPwA4sg1va8jUOAOCGtQ","display_url":"youtube.com\/channel\/UCdOLP\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":422,"friends_count":411,"listed_count":1,"created_at":"Mon - Mar 25 01:52:26 +0000 2013","favourites_count":11180,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222432190438551553\/ETD4ni4i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222432190438551553\/ETD4ni4i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1297304707\/1557218043","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 02:47:24 +0000 2020","id":1235034077817954304,"id_str":"1235034077817954304","text":"Just - a friendly reminder that more people die of the flu (which has a seasonal - vaccine available) than the coronavi\u2026 https:\/\/t.co\/HvMXQw0fvp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HvMXQw0fvp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235034077817954304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318222453,"id_str":"318222453","name":"paige","screen_name":"paige_leier","location":"\ud83e\udda0","description":"infectious - disease + prevention enthusiasts","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":361,"listed_count":0,"created_at":"Thu - Jun 16 04:28:33 +0000 2011","favourites_count":14221,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6524,"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\/1229515805924216838\/jl8nA2Gn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229515805924216838\/jl8nA2Gn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318222453\/1581974454","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":16,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691353341953,"id_str":"1235246691353341953","text":"RT - @Timainas_: murcia siendo la \u00fanica comunidad sin coronavirus https:\/\/t.co\/mwVr2KX4Dp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Timainas_","name":"Isomaeru","id":742348395747106816,"id_str":"742348395747106816","indices":[3,13]}],"urls":[],"media":[{"id":1196878509827928064,"id_str":"1196878509827928064","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1196878509827928064\/pu\/img\/tLIxZKHrIaMtU7rY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1196878509827928064\/pu\/img\/tLIxZKHrIaMtU7rY.jpg","url":"https:\/\/t.co\/mwVr2KX4Dp","display_url":"pic.twitter.com\/mwVr2KX4Dp","expanded_url":"https:\/\/twitter.com\/Timainas_\/status\/1196878697627881473\/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":1196878697627881473,"source_status_id_str":"1196878697627881473","source_user_id":742348395747106816,"source_user_id_str":"742348395747106816"}]},"extended_entities":{"media":[{"id":1196878509827928064,"id_str":"1196878509827928064","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1196878509827928064\/pu\/img\/tLIxZKHrIaMtU7rY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1196878509827928064\/pu\/img\/tLIxZKHrIaMtU7rY.jpg","url":"https:\/\/t.co\/mwVr2KX4Dp","display_url":"pic.twitter.com\/mwVr2KX4Dp","expanded_url":"https:\/\/twitter.com\/Timainas_\/status\/1196878697627881473\/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":1196878697627881473,"source_status_id_str":"1196878697627881473","source_user_id":742348395747106816,"source_user_id_str":"742348395747106816","video_info":{"aspect_ratio":[16,9],"duration_millis":19467,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1196878509827928064\/pu\/vid\/480x270\/TXrqGRjPSHiMdUAH.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1196878509827928064\/pu\/pl\/7yp9gu3RVBjHIrYM.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1196878509827928064\/pu\/vid\/640x360\/aCmWRR1e_p-krKni.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":742348395747106816,"id_str":"742348395747106816","name":"Isomaeru","screen_name":"Timainas_","location":"C\u00e1diz","description":"dua - lipa stan account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8394,"friends_count":84,"listed_count":113,"created_at":"Mon - Jun 13 13:30:24 +0000 2016","favourites_count":7120,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14146,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234285120116404229\/WW7dEXEf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234285120116404229\/WW7dEXEf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/742348395747106816\/1513095710","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":776876397558136832,"id_str":"776876397558136832","name":"Carla","screen_name":"cargarg98","location":"","description":"\ud83d\udccdValencia","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":101,"listed_count":0,"created_at":"Fri - Sep 16 20:12:21 +0000 2016","favourites_count":2698,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2240,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159243796661641218\/fOKKWJXL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159243796661641218\/fOKKWJXL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/776876397558136832\/1569637300","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 10:15:15 +0000 2020","id":1235146781622751234,"id_str":"1235146781622751234","text":"murcia - siendo la \u00fanica comunidad sin coronavirus https:\/\/t.co\/mwVr2KX4Dp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1196878509827928064,"id_str":"1196878509827928064","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1196878509827928064\/pu\/img\/tLIxZKHrIaMtU7rY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1196878509827928064\/pu\/img\/tLIxZKHrIaMtU7rY.jpg","url":"https:\/\/t.co\/mwVr2KX4Dp","display_url":"pic.twitter.com\/mwVr2KX4Dp","expanded_url":"https:\/\/twitter.com\/Timainas_\/status\/1196878697627881473\/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":1196878697627881473,"source_status_id_str":"1196878697627881473","source_user_id":742348395747106816,"source_user_id_str":"742348395747106816"}]},"extended_entities":{"media":[{"id":1196878509827928064,"id_str":"1196878509827928064","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1196878509827928064\/pu\/img\/tLIxZKHrIaMtU7rY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1196878509827928064\/pu\/img\/tLIxZKHrIaMtU7rY.jpg","url":"https:\/\/t.co\/mwVr2KX4Dp","display_url":"pic.twitter.com\/mwVr2KX4Dp","expanded_url":"https:\/\/twitter.com\/Timainas_\/status\/1196878697627881473\/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":1196878697627881473,"source_status_id_str":"1196878697627881473","source_user_id":742348395747106816,"source_user_id_str":"742348395747106816","video_info":{"aspect_ratio":[16,9],"duration_millis":19467,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1196878509827928064\/pu\/vid\/480x270\/TXrqGRjPSHiMdUAH.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1196878509827928064\/pu\/pl\/7yp9gu3RVBjHIrYM.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1196878509827928064\/pu\/vid\/640x360\/aCmWRR1e_p-krKni.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":742348395747106816,"id_str":"742348395747106816","name":"Isomaeru","screen_name":"Timainas_","location":"C\u00e1diz","description":"dua - lipa stan account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8394,"friends_count":84,"listed_count":113,"created_at":"Mon - Jun 13 13:30:24 +0000 2016","favourites_count":7120,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14146,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234285120116404229\/WW7dEXEf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234285120116404229\/WW7dEXEf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/742348395747106816\/1513095710","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":742348395747106816,"id_str":"742348395747106816","name":"Isomaeru","screen_name":"Timainas_","location":"C\u00e1diz","description":"dua - lipa stan account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8394,"friends_count":84,"listed_count":113,"created_at":"Mon - Jun 13 13:30:24 +0000 2016","favourites_count":7120,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14146,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234285120116404229\/WW7dEXEf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234285120116404229\/WW7dEXEf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/742348395747106816\/1513095710","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2398,"favorite_count":8818,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":2398,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691348959234,"id_str":"1235246691348959234","text":"Either - travel to history to an area with known outbreak or came in contact with someone - who had #coronavirus. No kn\u2026 https:\/\/t.co\/cl61pRwrzV","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[96,108]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cl61pRwrzV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246691348959234","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235243679142400003,"in_reply_to_status_id_str":"1235243679142400003","in_reply_to_user_id":228474571,"in_reply_to_user_id_str":"228474571","in_reply_to_screen_name":"AlexMillerNews","user":{"id":228474571,"id_str":"228474571","name":"Alex - Miller","screen_name":"AlexMillerNews","location":"Washington, DC","description":"That - girl standing in heels on an apple box. Political Reporter @Newsy & @ewscrippsCo, - Adjunct Professor @merrillcollege\ud83d\udc22 former Paul Miller fellow @natpress","url":"https:\/\/t.co\/eiLiaC5e5y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eiLiaC5e5y","expanded_url":"https:\/\/www.newsy.com\/team\/alexandra-miller\/","display_url":"newsy.com\/team\/alexandra\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2490,"friends_count":963,"listed_count":64,"created_at":"Sun - Dec 19 20:46:16 +0000 2010","favourites_count":3125,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6575,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F00C1F","profile_background_image_url":"http:\/\/abs.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\/890316246960549888\/XleSlW7M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890316246960549888\/XleSlW7M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228474571\/1581029956","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"380C2A","profile_text_color":"699462","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691319676929,"id_str":"1235246691319676929","text":"RT - @morenojuanma19: Coronavirus avisa qu\u00e9 onda, dejamos la facultad o no?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"morenojuanma19","name":"Juanma\ud83c\udf85\ud83c\udfff","id":2351946938,"id_str":"2351946938","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":969967850675941377,"id_str":"969967850675941377","name":"Noelia - \u2764\ufe0f","screen_name":"BerrendoNoelia","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":20,"listed_count":0,"created_at":"Sat - Mar 03 16:08:51 +0000 2018","favourites_count":2265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227431433498746885\/qasJBH5y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227431433498746885\/qasJBH5y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/969967850675941377\/1582145083","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:04:44 +0000 2020","id":1234902542204776449,"id_str":"1234902542204776449","text":"Coronavirus - avisa qu\u00e9 onda, dejamos la facultad o no?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2351946938,"id_str":"2351946938","name":"Juanma\ud83c\udf85\ud83c\udfff","screen_name":"morenojuanma19","location":"","description":"Instagram: - moreno.juanma \ud83d\udc7b: moreno.juanma9","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":844,"friends_count":895,"listed_count":2,"created_at":"Wed - Feb 19 16:36:27 +0000 2014","favourites_count":20415,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7153,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1093158363964289024\/2zhc8-5-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1093158363964289024\/2zhc8-5-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2351946938\/1466106243","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8325,"favorite_count":29060,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":8325,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691214860288,"id_str":"1235246691214860288","text":"RT - @MilagrosDwarf: Tengo m\u00e1s posibilidades de morirme por ser mujer que - por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MilagrosDwarf","name":"Milagros.","id":976869942,"id_str":"976869942","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":989903205579591682,"id_str":"989903205579591682","name":"Reborn\u2728","screen_name":"Alejand57900858","location":"Lima, - Peru","description":"19 \ud83c\udf89 \u25aa\ufe0fPUCP \ud83d\udcda\u25aa\ufe0fPiscis - \u2653","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":148,"listed_count":0,"created_at":"Fri - Apr 27 16:24:50 +0000 2018","favourites_count":1934,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2297,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181815438960943104\/ahZQ8GuZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181815438960943104\/ahZQ8GuZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/989903205579591682\/1542158291","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:16:11 +0000 2020","id":1234905423574118401,"id_str":"1234905423574118401","text":"Tengo - m\u00e1s posibilidades de morirme por ser mujer que por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":976869942,"id_str":"976869942","name":"Milagros.","screen_name":"MilagrosDwarf","location":"Por - el oeste de baires.","description":"Para verme feliz buscame en alg\u00fan - recital. Trabajo Social (UNLaM).","url":"https:\/\/t.co\/XccD9S7kPe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XccD9S7kPe","expanded_url":"http:\/\/instagram.com\/Milagrosdwarf","display_url":"instagram.com\/Milagrosdwarf","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11021,"friends_count":3230,"listed_count":199,"created_at":"Wed - Nov 28 20:13:25 +0000 2012","favourites_count":18088,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"070A09","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\/882409103896846337\/W3k0lJR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882409103896846337\/W3k0lJR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/976869942\/1471396693","profile_link_color":"F5ABB5","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54481,"favorite_count":116911,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":54481,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691160330240,"id_str":"1235246691160330240","text":"Iran - temporarily frees 54,000 prisoners to combat spread of #coronavirus\n-\nSenior - Iranian officials also have the v\u2026 https:\/\/t.co\/IYuwp2TEim","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[60,72]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IYuwp2TEim","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246691160330240","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1172871984,"id_str":"1172871984","name":"SM - Radio \u0633\u0645\u06cc\u0631\u0627","screen_name":"SMohyeddin","location":"Toronto - \/ Tehranto","description":"\ud83d\udcfbProducer @cbcradio * MA Gender & Mideast - history @UofT Genocide @ZoryanInstitute Theatre \ud83c\udfad @Amdaofficial - \/ From the shrivelled vineyards of Shiraz\ud83c\udf77 Iran","url":"https:\/\/t.co\/uauzHIr3ri","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uauzHIr3ri","expanded_url":"https:\/\/www.cbc.ca\/radio\/thecurrent","display_url":"cbc.ca\/radio\/thecurre\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4829,"friends_count":2377,"listed_count":98,"created_at":"Tue - Feb 12 19:33:58 +0000 2013","favourites_count":6874,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11489,"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\/924814958914953217\/w37Iw9Of_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924814958914953217\/w37Iw9Of_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1172871984\/1579559156","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246691021815808,"id_str":"1235246691021815808","text":"RT - @JuddLegum: Trump blames his administration''s failure to conduct testing - for the coronavirus (less than 500 tests as of last Friday) on\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JuddLegum","name":"Judd - Legum","id":15464697,"id_str":"15464697","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30687343,"id_str":"30687343","name":"Beth - Crispin","screen_name":"iyamiyam","location":"","description":"Opinionated.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2802,"friends_count":2158,"listed_count":221,"created_at":"Sun - Apr 12 17:44:31 +0000 2009","favourites_count":15918,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":155636,"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\/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\/417029778772729856\/_cRED5Px_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417029778772729856\/_cRED5Px_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30687343\/1403736257","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:46:42 +0000 2020","id":1235245295707066375,"id_str":"1235245295707066375","text":"Trump - blames his administration''s failure to conduct testing for the coronavirus - (less than 500 tests as of last Fr\u2026 https:\/\/t.co\/MQZs1lU13l","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MQZs1lU13l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245295707066375","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15464697,"id_str":"15464697","name":"Judd - Legum","screen_name":"JuddLegum","location":"Washington, DC","description":"I - write Popular Information, a newsletter about politics and power. \n\nSend - tips: DMs open | judd@popular.info | jlegum@protonmail.com","url":"https:\/\/t.co\/7lEYXJGXf5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7lEYXJGXf5","expanded_url":"http:\/\/Popular.info","display_url":"Popular.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":404917,"friends_count":1305,"listed_count":6205,"created_at":"Thu - Jul 17 05:37:26 +0000 2008","favourites_count":4347,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":56740,"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\/636336373453053952\/yv-YqI5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636336373453053952\/yv-YqI5w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15464697\/1533728641","profile_link_color":"202037","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235243899674939392,"quoted_status_id_str":"1235243899674939392","quoted_status":{"created_at":"Wed - Mar 04 16:41:10 +0000 2020","id":1235243899674939392,"id_str":"1235243899674939392","text":"Trump - on coronavirus testing: \"The Obama administration made a decision on testing - that turned out to be very detri\u2026 https:\/\/t.co\/dC3optnUmF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dC3optnUmF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243899674939392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":288277167,"id_str":"288277167","name":"Aaron - Rupar","screen_name":"atrupar","location":"","description":"journalist @voxdotcom","url":"https:\/\/t.co\/RnqX4a5AQt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RnqX4a5AQt","expanded_url":"http:\/\/vox.com","display_url":"vox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247705,"friends_count":999,"listed_count":2854,"created_at":"Tue - Apr 26 15:22:47 +0000 2011","favourites_count":96174,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":70554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288277167\/1469538346","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3556,"favorite_count":12531,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3770,"favorite_count":9844,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235243899674939392,"quoted_status_id_str":"1235243899674939392","retweet_count":3770,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690988417025,"id_str":"1235246690988417025","text":"RT - @AmitShah: Coronavirus \u0915\u0947 \u092a\u094d\u0930\u0924\u093f \u092d\u093e\u0930\u0924 - \u0928\u0947 \u0939\u0930 \u0938\u0902\u092d\u0935 \u090f\u0939\u0924\u093f\u092f\u093e\u0924\u0940 - \u0915\u0926\u092e \u0909\u0920\u093e\u092f\u0947 \u0939\u0948\u0902\u0964 - \u092e\u0948\u0902 \u0938\u092d\u0940 \u0938\u0947 \u0905\u0928\u0941\u0930\u094b\u0927 - \u0915\u0930\u0924\u093e \u0939\u0942\u0902 \u0915\u093f \u0907\u0938\u0938\u0947 - \u092c\u091a\u093e\u0935 \u0915\u0947 \u0932\u093f\u090f \u0906\u092a \u092c\u0924\u093e\u092f\u0947 - \u0917\u092f\u0947 \u0938\u092d\u0940\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmitShah","name":"Amit - Shah","id":1447949844,"id_str":"1447949844","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153091312,"id_str":"153091312","name":"Gaurev - Saxsena","screen_name":"GaurevSaxsena","location":"","description":"Bharatiya; - Shaiv.\nHerbalist, Mushroomie.\nAstrology is my Passion, Desh-Dharm Sarvopari. - RT:Appreciation\/Sarcasm\/Appreciation etc. follow back genuine people.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":620,"friends_count":412,"listed_count":10,"created_at":"Mon - Jun 07 17:21:26 +0000 2010","favourites_count":13470,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26012,"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\/870543222170198016\/BZDP_qBp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/870543222170198016\/BZDP_qBp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153091312\/1581918483","profile_link_color":"94D487","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 08:10:21 +0000 2020","id":1235115348661112832,"id_str":"1235115348661112832","text":"Coronavirus - \u0915\u0947 \u092a\u094d\u0930\u0924\u093f \u092d\u093e\u0930\u0924 \u0928\u0947 - \u0939\u0930 \u0938\u0902\u092d\u0935 \u090f\u0939\u0924\u093f\u092f\u093e\u0924\u0940 - \u0915\u0926\u092e \u0909\u0920\u093e\u092f\u0947 \u0939\u0948\u0902\u0964 - \u092e\u0948\u0902 \u0938\u092d\u0940 \u0938\u0947 \u0905\u0928\u0941\u0930\u094b\u0927 - \u0915\u0930\u0924\u093e \u0939\u0942\u0902 \u0915\u093f \u0907\u0938\u0938\u0947 - \u092c\u091a\u093e\u0935 \u0915\u0947 \u0932\u093f\u090f \u0906\u092a \u092c\u0924\u093e\u2026 - https:\/\/t.co\/t1UwBFPA4e","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/t1UwBFPA4e","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235115348661112832","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1447949844,"id_str":"1447949844","name":"Amit - Shah","screen_name":"AmitShah","location":"","description":"Union Home Minister, - Government of India | MP, Gandhinagar Lok Sabha.","url":"https:\/\/t.co\/T8qyKz0gq5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/T8qyKz0gq5","expanded_url":"http:\/\/www.amitshah.co.in","display_url":"amitshah.co.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17655689,"friends_count":295,"listed_count":3239,"created_at":"Wed - May 22 04:43:54 +0000 2013","favourites_count":123,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10637,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1180491411172413440\/AunoqDQW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180491411172413440\/AunoqDQW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447949844\/1483460817","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3213,"favorite_count":11946,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"hi"},"is_quote_status":false,"retweet_count":3213,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690900340737,"id_str":"1235246690900340737","text":"RT - @DHSCgovuk: CORONAVIRUS INFORMATION:\n\nWash your hands more often than usual, - for 20 seconds each time with soap and water, or use hand s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DHSCgovuk","name":"Department - of Health and Social Care","id":37963496,"id_str":"37963496","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2444083580,"id_str":"2444083580","name":"The - PCS Group","screen_name":"ThePCSGroup","location":"London, United Kingdom","description":"A - long established company, an integrated facilities services provider and manager - of all types of commercial, industrial and institutional property.","url":"http:\/\/t.co\/JnrxQdgAUv","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JnrxQdgAUv","expanded_url":"http:\/\/www.thepcsgroup.co.uk\/","display_url":"thepcsgroup.co.uk","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":225,"friends_count":609,"listed_count":7,"created_at":"Mon - Apr 14 15:45:15 +0000 2014","favourites_count":133,"utc_offset":null,"time_zone":null,"geo_enabled":true,"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\/529669613391323137\/Od3Lji-T_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529669613391323137\/Od3Lji-T_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2444083580\/1567005384","profile_link_color":"EBA328","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:55:00 +0000 2020","id":1235096386506350592,"id_str":"1235096386506350592","text":"CORONAVIRUS - INFORMATION:\n\nWash your hands more often than usual, for 20 seconds each - time with soap and water, or u\u2026 https:\/\/t.co\/N9Xt3Mg2XG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/N9Xt3Mg2XG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235096386506350592","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":37963496,"id_str":"37963496","name":"Department - of Health and Social Care","screen_name":"DHSCgovuk","location":"England","description":"We - support ministers in leading the nation\u2019s health and social care to help - people live more independent, healthier lives for longer.","url":"https:\/\/t.co\/huTVx4oOR0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/huTVx4oOR0","expanded_url":"http:\/\/www.gov.uk\/dhsc","display_url":"gov.uk\/dhsc","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":331202,"friends_count":804,"listed_count":3113,"created_at":"Tue - May 05 16:49:31 +0000 2009","favourites_count":1951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10985,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"009781","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195323035483553792\/dQNaMFyN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195323035483553792\/dQNaMFyN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37963496\/1583394346","profile_link_color":"18828E","profile_sidebar_border_color":"99D5CD","profile_sidebar_fill_color":"EDFEFC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2339,"favorite_count":2250,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2339,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690636115969,"id_str":"1235246690636115969","text":"RT - @ABC7NY: Breaking News: The wife, 20-year-old son, 14-year-old daughter and - neighbor of a Westchester man who tested positive for the no\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ABC7NY","name":"Eyewitness - News","id":16715398,"id_str":"16715398","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116936744,"id_str":"116936744","name":"Pedro - Correa","screen_name":"pcorrea7","location":"Washington, DC","description":"Freelancer - videographer\/editor news and Documentaries, @Telemundo @Univision @Caracol - @CNNE","url":"https:\/\/t.co\/yIWwHQCuOd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yIWwHQCuOd","expanded_url":"https:\/\/www.youtube.com\/channel\/UCSGDsFrOX1H07Ctc3QViMtQ","display_url":"youtube.com\/channel\/UCSGDs\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1575,"friends_count":1693,"listed_count":31,"created_at":"Wed - Feb 24 01:32:58 +0000 2010","favourites_count":108,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":80219,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671359395096215553\/FoBmNgEK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671359395096215553\/FoBmNgEK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116936744\/1444625936","profile_link_color":"3B94D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:00:04 +0000 2020","id":1235218458108997633,"id_str":"1235218458108997633","text":"Breaking - News: The wife, 20-year-old son, 14-year-old daughter and neighbor of a Westchester - man who tested positiv\u2026 https:\/\/t.co\/C01EZdudoG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C01EZdudoG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235218458108997633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":16715398,"id_str":"16715398","name":"Eyewitness - News","screen_name":"ABC7NY","location":"New York City","description":"New - York''s #1 news, Channel 7 Eyewitness News. WABC-TV. Comments & photos shared - here or using #abc7NY could be used on any ABC platforms.","url":"https:\/\/t.co\/jfhEMrUXM9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jfhEMrUXM9","expanded_url":"http:\/\/abc7ny.com","display_url":"abc7ny.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":675584,"friends_count":30823,"listed_count":3922,"created_at":"Mon - Oct 13 02:33:46 +0000 2008","favourites_count":7931,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":292583,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910523413705510913\/8qZNWUOQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910523413705510913\/8qZNWUOQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16715398\/1502890618","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":73,"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"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690589908992,"id_str":"1235246690589908992","text":"RT - @C_MoralesD: Grandes Ligas emite recomendaciones por coronavirus.\n\nLa liga - pidi\u00f3 a los peloteros...\u00bfevitar dar aut\u00f3grafos? \ud83d\ude31\n\nAqu\u00ed - los d\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"C_MoralesD","name":"Carlos - Morales","id":236266311,"id_str":"236266311","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150122646,"id_str":"150122646","name":"Alex - Tapia","screen_name":"alextapia_","location":"Veracruz, M\u00e9xico","description":"Maratonista - x2 Finisher Marat\u00f3n Lala 2018; Finisher Chicago Marathon 2019. Doy los - deportes en radio \ud83d\udcfb y me gusta el americano \ud83c\udfc8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3779,"friends_count":884,"listed_count":34,"created_at":"Mon - May 31 04:13:07 +0000 2010","favourites_count":7646,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54684,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981150769058426880\/aL0sSyjR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981150769058426880\/aL0sSyjR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150122646\/1468844317","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:34:14 +0000 2020","id":1235242155414884352,"id_str":"1235242155414884352","text":"Grandes - Ligas emite recomendaciones por coronavirus.\n\nLa liga pidi\u00f3 a los peloteros...\u00bfevitar - dar aut\u00f3grafos? \ud83d\ude31\n\nAq\u2026 https:\/\/t.co\/IqHoHmdZ2t","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IqHoHmdZ2t","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242155414884352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":236266311,"id_str":"236266311","name":"Carlos - Morales","screen_name":"C_MoralesD","location":"CDMX","description":"#Team643 - \ud83d\udc49\ud83c\udffb @643Network \u26be\ufe0f","url":"https:\/\/t.co\/4rf2ZMQnpX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4rf2ZMQnpX","expanded_url":"http:\/\/www.643network.com","display_url":"643network.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1627,"friends_count":3395,"listed_count":36,"created_at":"Mon - Jan 10 05:34:44 +0000 2011","favourites_count":10599,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":69509,"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\/1219690447280525313\/hgLEETgH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219690447280525313\/hgLEETgH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/236266311\/1573984457","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690568937472,"id_str":"1235246690568937472","text":"RT - @GDTGuardiaCivil: #NiCaso a este mensaje que circula por #Whatsapp. Suplantan - al Ministerio de Sanidad @sanidadgob para dar supuestas \u201cr\u2026","truncated":false,"entities":{"hashtags":[{"text":"NiCaso","indices":[21,28]},{"text":"Whatsapp","indices":[60,69]}],"symbols":[],"user_mentions":[{"screen_name":"GDTGuardiaCivil","name":"GDT - Guardia Civil","id":188683472,"id_str":"188683472","indices":[3,19]},{"screen_name":"sanidadgob","name":"Ministerio - de Sanidad","id":232124120,"id_str":"232124120","indices":[106,117]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":999992019043913729,"id_str":"999992019043913729","name":"\u24bb\u24d0\u24e1\u24d5\u24d0\u24db\u24db\u24d4\ud83e\udd8b\ud83e\udd8b - \u24dd\u24d4\u24db\u2764 \u24d2\u24e4\u24de\u24e1\u24d4\ud83c\udfcd\ud83d\udca8\ud83c\uddea\ud83c\uddf8\ud83d\udc95\ud83c\uddee\ud83c\uddf9","screen_name":"FarfalleNelCuor","location":"Aqu\u00ed.. - ..d\u00f3nde va a ser si no!","description":"Abreeee que soy yoo\ud83d\udda4\n~AVISO - Bloqueo cuentas obscenas que me sigan o mencionen ~ Cuatro ruedas mueven el - cuerpo, dos ruedas mueven el alma \ud83c\udfcd\ufe0f\ud83d\udca8\n\n \ud83d\udc31\ud83d\udc31\ud83d\udc95\ud83c\udfb6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":422,"listed_count":0,"created_at":"Fri - May 25 12:34:11 +0000 2018","favourites_count":3782,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2503,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233884869836656640\/GMbcynyB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233884869836656640\/GMbcynyB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/999992019043913729\/1557747627","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 18:52:21 +0000 2020","id":1234189752699621377,"id_str":"1234189752699621377","text":"#NiCaso - a este mensaje que circula por #Whatsapp. Suplantan al Ministerio de Sanidad - @sanidadgob para dar supuestas\u2026 https:\/\/t.co\/95WYcsOZ3W","truncated":true,"entities":{"hashtags":[{"text":"NiCaso","indices":[0,7]},{"text":"Whatsapp","indices":[39,48]}],"symbols":[],"user_mentions":[{"screen_name":"sanidadgob","name":"Ministerio - de Sanidad","id":232124120,"id_str":"232124120","indices":[85,96]}],"urls":[{"url":"https:\/\/t.co\/95WYcsOZ3W","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234189752699621377","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188683472,"id_str":"188683472","name":"GDT - Guardia Civil","screen_name":"GDTGuardiaCivil","location":"Espa\u00f1a","description":"El - Grupo de Delitos Telem\u00e1ticos de la Guardia Civil (GDT), fue creado en - 1996, y tiene la misi\u00f3n de investigar los delitos inform\u00e1ticos.","url":"https:\/\/t.co\/naxcsT3Fkq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/naxcsT3Fkq","expanded_url":"https:\/\/www.gdt.guardiacivil.es","display_url":"gdt.guardiacivil.es","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":226218,"friends_count":102,"listed_count":2005,"created_at":"Thu - Sep 09 10:03:32 +0000 2010","favourites_count":88,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":4793,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"064502","profile_background_image_url":"http:\/\/abs.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\/943757534166503425\/61EyyXT4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/943757534166503425\/61EyyXT4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188683472\/1390234970","profile_link_color":"064502","profile_sidebar_border_color":"0F0D0F","profile_sidebar_fill_color":"09946A","profile_text_color":"0A090A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":379,"favorite_count":300,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":379,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690522869761,"id_str":"1235246690522869761","text":"RT - @linadearmas: No hay casos sospechosos de CORONAVIRUS en Valledupar ni en - Colombia.\nPor favor no repliquemos mentiras! https:\/\/t.co\/pqYB\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"linadearmas","name":"Lina - De Armas","id":590050651,"id_str":"590050651","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231082263,"id_str":"2231082263","name":"Nina - Herrera","screen_name":"Ninamariahc","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":152,"friends_count":314,"listed_count":0,"created_at":"Wed - Dec 18 03:35:24 +0000 2013","favourites_count":1370,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1634,"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\/1194439058438656000\/VNyS9zNj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194439058438656000\/VNyS9zNj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231082263\/1570931220","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:47:29 +0000 2020","id":1235245492776337409,"id_str":"1235245492776337409","text":"No - hay casos sospechosos de CORONAVIRUS en Valledupar ni en Colombia.\nPor favor - no repliquemos mentiras! https:\/\/t.co\/pqYB4c8lzo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235245490779942913,"id_str":"1235245490779942913","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR5OrBXcAE-ofB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR5OrBXcAE-ofB.jpg","url":"https:\/\/t.co\/pqYB4c8lzo","display_url":"pic.twitter.com\/pqYB4c8lzo","expanded_url":"https:\/\/twitter.com\/linadearmas\/status\/1235245492776337409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":587,"h":265,"resize":"fit"},"small":{"w":587,"h":265,"resize":"fit"},"large":{"w":587,"h":265,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235245490779942913,"id_str":"1235245490779942913","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR5OrBXcAE-ofB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR5OrBXcAE-ofB.jpg","url":"https:\/\/t.co\/pqYB4c8lzo","display_url":"pic.twitter.com\/pqYB4c8lzo","expanded_url":"https:\/\/twitter.com\/linadearmas\/status\/1235245492776337409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":587,"h":265,"resize":"fit"},"small":{"w":587,"h":265,"resize":"fit"},"large":{"w":587,"h":265,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":590050651,"id_str":"590050651","name":"Lina - De Armas","screen_name":"linadearmas","location":"Valledupar, Colombia","description":"Ciudadana - libre sin color pol\u00edtico en la b\u00fasqueda del bien com\u00fan. Secretaria - Local de Salud del Municipio de Valledupar","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6848,"friends_count":1151,"listed_count":6,"created_at":"Fri - May 25 14:44:19 +0000 2012","favourites_count":9935,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4048,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228915488836771841\/NAZJHYJr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228915488836771841\/NAZJHYJr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/590050651\/1583438989","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":117,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":78,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690468270082,"id_str":"1235246690468270082","text":"RT - @nanothompson: Reci\u00e9n vi al coronavirus usando la tarjeta alimentaria - en el Coto, esto votaste cumpa?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nanothompson","name":"Nano","id":181762544,"id_str":"181762544","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2357464614,"id_str":"2357464614","name":"Jooel","screen_name":"Petiiton_OK","location":"Santo - Tome - Santa Fe","description":"FHUC-UNL\nEx- Presidente del Centro de Estudiantes - Esc. T\u00e9c. Profesional N\u00b0 614. 2017\/18\nEx-Vicepresidente del mismo. - 2018\/19\nPadrino de Mia\nSocialista\nSabalero","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":567,"friends_count":678,"listed_count":5,"created_at":"Sun - Feb 23 05:06:40 +0000 2014","favourites_count":6962,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40508,"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\/1201351375805960192\/NR3Glx9R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1201351375805960192\/NR3Glx9R_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 21:16:57 +0000 2020","id":1234950916530475008,"id_str":"1234950916530475008","text":"Reci\u00e9n - vi al coronavirus usando la tarjeta alimentaria en el Coto, esto votaste cumpa?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":181762544,"id_str":"181762544","name":"Nano","screen_name":"nanothompson","location":"Ciudad - Aut\u00f3noma de Buenos Aires, Argentina","description":"Polit\u00f3logo #fsoc - UBA","url":"https:\/\/t.co\/PAboGO82lH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PAboGO82lH","expanded_url":"http:\/\/www.instagram.com\/nanothompson","display_url":"instagram.com\/nanothompson","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":40257,"friends_count":992,"listed_count":327,"created_at":"Mon - Aug 23 00:31:51 +0000 2010","favourites_count":54196,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65732,"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\/1090670175068794880\/WHT1f32G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1090670175068794880\/WHT1f32G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/181762544\/1543500514","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1071,"favorite_count":8012,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1071,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690405429256,"id_str":"1235246690405429256","text":"RT - @El_Hunto: I read somewhere that coronavirus has so far killed 3120 people - but about 21000 people die everyday from hunger but the world\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"El_Hunto","name":"Hunt","id":1074470340108140544,"id_str":"1074470340108140544","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333372439,"id_str":"2333372439","name":"enby","screen_name":"dzaddywannabe","location":"South - Africa","description":"random musings of a Black queer. A non-binary ace bbz - (they\/them).","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":408,"friends_count":149,"listed_count":7,"created_at":"Sun - Feb 09 09:01:11 +0000 2014","favourites_count":19942,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":105026,"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\/1170648108402786306\/QItShp2X_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170648108402786306\/QItShp2X_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333372439\/1572679767","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 14:28:57 +0000 2020","id":1234848238563450882,"id_str":"1234848238563450882","text":"I - read somewhere that coronavirus has so far killed 3120 people but about 21000 - people die everyday from hunger but\u2026 https:\/\/t.co\/EkB1IiCmYC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EkB1IiCmYC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234848238563450882","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1074470340108140544,"id_str":"1074470340108140544","name":"Hunt","screen_name":"El_Hunto","location":"","description":"\u200f\u200f\u0627\u0634\u0652\u0647\u064e\u062f\u064f - \u0627\u0646\u0652 \u0644\u0651\u0622 \u0627\u0650\u0644\u0647\u064e \u0627\u0650\u0644\u064e\u0651\u0627 - \u0627\u0644\u0644\u0651\u0647\u064f \u0648\u064e \u0627\u064e\u0634\u0652\u0647\u064e\u062f\u064f - \u0627\u064e\u0646\u064e\u0651 \u0645\u064f\u062d\u064e\u0645\u064e\u0651\u062f\u064b - \u0627\u0639\u064e\u0628\u0652\u062f\u064f\u0647 \u0648\u064e\u0631\u064e\u0633\u064f\u0648\u0644\u064f\u0647","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3815,"friends_count":151,"listed_count":15,"created_at":"Mon - Dec 17 01:04:26 +0000 2018","favourites_count":28064,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23225,"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\/1235602801885134849\/NaGhfz0q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235602801885134849\/NaGhfz0q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1074470340108140544\/1583057830","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2432,"favorite_count":6863,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2432,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690312933376,"id_str":"1235246690312933376","text":"RT - @LiberalMantri: Are there grounds for filing cases against people in power - making misleading, ignorant and outright incorrect statements\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LiberalMantri","name":"Liberal - Mantri","id":983484289231851523,"id_str":"983484289231851523","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":838084501553221634,"id_str":"838084501553221634","name":"sposho","screen_name":"satyapr00079311","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":685,"friends_count":154,"listed_count":0,"created_at":"Sat - Mar 04 17:51:30 +0000 2017","favourites_count":166122,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83650,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 11:46:21 +0000 2020","id":1235169707520598016,"id_str":"1235169707520598016","text":"Are - there grounds for filing cases against people in power making misleading, - ignorant and outright incorrect state\u2026 https:\/\/t.co\/RaGeFR63vL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RaGeFR63vL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235169707520598016","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":983484289231851523,"id_str":"983484289231851523","name":"Liberal - Mantri","screen_name":"LiberalMantri","location":"","description":"Nehruvian - - Liberal Socialism - UPA Supporter - She\/Her - #SaveAarey #EndJnKBlockade - #NoCAA #NoNRC #NoNPR #StandWithJNUAMUJMI #FreeAkhilGogoi #BanRSS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9086,"friends_count":3683,"listed_count":25,"created_at":"Mon - Apr 09 23:18:21 +0000 2018","favourites_count":37396,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57941,"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\/1195072971699867649\/SnEjiQho_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195072971699867649\/SnEjiQho_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/983484289231851523\/1571123836","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690279534592,"id_str":"1235246690279534592","text":"RT - @antoaurigemma: Un''aula vuota, seduta #sospesa. Il #coronavirus non \u00e8 - abbastanza per avere il Presidente @nzingaretti\n\nE come se non bas\u2026","truncated":false,"entities":{"hashtags":[{"text":"sospesa","indices":[41,49]},{"text":"coronavirus","indices":[54,66]}],"symbols":[],"user_mentions":[{"screen_name":"antoaurigemma","name":"antonello - aurigemma","id":3356663781,"id_str":"3356663781","indices":[3,17]},{"screen_name":"nzingaretti","name":"Nicola - Zingaretti","id":403544693,"id_str":"403544693","indices":[108,120]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1053632622465818624,"id_str":"1053632622465818624","name":"Efisio - Scalas\ud83c\uddee\ud83c\uddf9","screen_name":"Efisio31251859","location":"","description":"Disoccupato - con tanto tempo da perdere! E facilmente irascibile!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":807,"friends_count":41,"listed_count":1,"created_at":"Sat - Oct 20 13:02:47 +0000 2018","favourites_count":209381,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":99451,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1053636778647797760\/o9N3svBE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053636778647797760\/o9N3svBE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:02:36 +0000 2020","id":1235173797696806912,"id_str":"1235173797696806912","text":"Un''aula - vuota, seduta #sospesa. Il #coronavirus non \u00e8 abbastanza per avere il - Presidente @nzingaretti\n\nE come se no\u2026 https:\/\/t.co\/08nNW0Lh1b","truncated":true,"entities":{"hashtags":[{"text":"sospesa","indices":[22,30]},{"text":"coronavirus","indices":[35,47]}],"symbols":[],"user_mentions":[{"screen_name":"nzingaretti","name":"Nicola - Zingaretti","id":403544693,"id_str":"403544693","indices":[89,101]}],"urls":[{"url":"https:\/\/t.co\/08nNW0Lh1b","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235173797696806912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3356663781,"id_str":"3356663781","name":"antonello - aurigemma","screen_name":"antoaurigemma","location":"Roma, Lazio","description":"","url":"https:\/\/t.co\/FuSzOHpcGY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FuSzOHpcGY","expanded_url":"http:\/\/www.antonelloaurigemma.it","display_url":"antonelloaurigemma.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1201,"friends_count":1436,"listed_count":5,"created_at":"Fri - Jul 03 12:31:43 +0000 2015","favourites_count":362,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1502,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016676738187882496\/o14-_PXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016676738187882496\/o14-_PXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3356663781\/1572963830","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"it"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690258612225,"id_str":"1235246690258612225","text":"RT - @Blayofficial: And on today\u2019s episode of Londoners battling Coronavirus.. - https:\/\/t.co\/8mKlgjtKc9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Blayofficial","name":"Baby - Goat\ud83d\udc10 #NoDaysOff","id":467547816,"id_str":"467547816","indices":[3,16]}],"urls":[],"media":[{"id":1235220669702574080,"id_str":"1235220669702574080","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"}]},"extended_entities":{"media":[{"id":1235220669702574080,"id_str":"1235220669702574080","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"},{"id":1235220669740265474,"id_str":"1235220669740265474","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5cWsAIUHDs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5cWsAIUHDs.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":312,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":550,"h":1200,"resize":"fit"},"large":{"w":640,"h":1396,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"},{"id":1235220669790646274,"id_str":"1235220669790646274","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5oXcAInpvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5oXcAInpvd.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":1222,"resize":"fit"},"small":{"w":445,"h":680,"resize":"fit"},"medium":{"w":786,"h":1200,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"},{"id":1235220669840973824,"id_str":"1235220669840973824","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip50XYAAhf-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip50XYAAhf-C.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"large":{"w":690,"h":960,"resize":"fit"},"small":{"w":489,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":690,"h":960,"resize":"fit"}},"source_status_id":1235220694671204357,"source_status_id_str":"1235220694671204357","source_user_id":467547816,"source_user_id_str":"467547816"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312136294,"id_str":"312136294","name":"Ez\ud83e\udd88","screen_name":"erixnjackson","location":"Newcastle - Upon Tyne, England","description":"prettyy baaby","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":432,"friends_count":535,"listed_count":1,"created_at":"Mon - Jun 06 16:54:14 +0000 2011","favourites_count":12653,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5552,"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\/1219339627745742848\/BdgO-Kp-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219339627745742848\/BdgO-Kp-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312136294\/1583175050","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:08:57 +0000 2020","id":1235220694671204357,"id_str":"1235220694671204357","text":"And - on today\u2019s episode of Londoners battling Coronavirus.. https:\/\/t.co\/8mKlgjtKc9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235220669702574080,"id_str":"1235220669702574080","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235220669702574080,"id_str":"1235220669702574080","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5TXkAAG3Oq.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}},{"id":1235220669740265474,"id_str":"1235220669740265474","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5cWsAIUHDs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5cWsAIUHDs.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"small":{"w":312,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":550,"h":1200,"resize":"fit"},"large":{"w":640,"h":1396,"resize":"fit"}}},{"id":1235220669790646274,"id_str":"1235220669790646274","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip5oXcAInpvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip5oXcAInpvd.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":1222,"resize":"fit"},"small":{"w":445,"h":680,"resize":"fit"},"medium":{"w":786,"h":1200,"resize":"fit"}}},{"id":1235220669840973824,"id_str":"1235220669840973824","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRip50XYAAhf-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRip50XYAAhf-C.jpg","url":"https:\/\/t.co\/8mKlgjtKc9","display_url":"pic.twitter.com\/8mKlgjtKc9","expanded_url":"https:\/\/twitter.com\/Blayofficial\/status\/1235220694671204357\/photo\/1","type":"photo","sizes":{"large":{"w":690,"h":960,"resize":"fit"},"small":{"w":489,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":690,"h":960,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":467547816,"id_str":"467547816","name":"Baby - Goat\ud83d\udc10 #NoDaysOff\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded","screen_name":"Blayofficial","location":"London, - England","description":"I am a songwriter. A poet. I Rap. I create\/post random - content. I promote those who I feel got potential but don\u2019t have a platform - to show \ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff","url":"https:\/\/t.co\/1KBNQ2eJvG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1KBNQ2eJvG","expanded_url":"https:\/\/curiouscat.me\/Blayofficial","display_url":"curiouscat.me\/Blayofficial","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21991,"friends_count":8926,"listed_count":275,"created_at":"Wed - Jan 18 15:52:24 +0000 2012","favourites_count":52923,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":99751,"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\/1202042685940477954\/EwQz1AsU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202042685940477954\/EwQz1AsU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/467547816\/1579133896","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":48000,"favorite_count":194715,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":48000,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690116005893,"id_str":"1235246690116005893","text":"RT - @Mov5Stelle: Prorogata al 30 settembre la scadenza per la dichiarazione dei - redditi a seguito dell''emergenza #coronavirus. \n\nIn questo m\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[112,124]}],"symbols":[],"user_mentions":[{"screen_name":"Mov5Stelle","name":"Movimento - 5 Stelle","id":289400495,"id_str":"289400495","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1489965936,"id_str":"1489965936","name":"Francesco - Argento 5\u2b50","screen_name":"argento62","location":"","description":"smart - and cute, M5S inside! \u2b50\u2b50\u2b50\u2b50\u2b50","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1102,"friends_count":1972,"listed_count":14,"created_at":"Fri - Jun 07 09:42:03 +0000 2013","favourites_count":21745,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22013,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/673193089280942080\/hDi4PLIk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/673193089280942080\/hDi4PLIk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1489965936\/1374342742","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 11:30:00 +0000 2020","id":1235165593038274562,"id_str":"1235165593038274562","text":"Prorogata - al 30 settembre la scadenza per la dichiarazione dei redditi a seguito dell''emergenza - #coronavirus. \n\nIn\u2026 https:\/\/t.co\/0RJHHJpgYL","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[96,108]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0RJHHJpgYL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235165593038274562","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":289400495,"id_str":"289400495","name":"Movimento - 5 Stelle","screen_name":"Mov5Stelle","location":"Italia","description":"Account - twitter ufficiale del Movimento 5 Stelle. Pagina Facebook: https:\/\/t.co\/TiklhNM78k","url":"https:\/\/t.co\/qcDqjZcym8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qcDqjZcym8","expanded_url":"http:\/\/www.ilblogdellestelle.it","display_url":"ilblogdellestelle.it","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/TiklhNM78k","expanded_url":"https:\/\/www.facebook.com\/movimentocinquestelle\/","display_url":"facebook.com\/movimentocinqu\u2026","indices":[67,90]}]}},"protected":false,"followers_count":689877,"friends_count":297,"listed_count":1971,"created_at":"Thu - Apr 28 15:46:29 +0000 2011","favourites_count":1101,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29793,"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\/954286232900657152\/8Npd5hqG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/954286232900657152\/8Npd5hqG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289400495\/1583422746","profile_link_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":59,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":35,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246690078281728,"id_str":"1235246690078281728","text":"RT - @matthewstoller: Just spoke with ER doc who say he''s seeing cases he''s 99% - sure are #coronavirus. Negative for flu, recent travel, work\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[87,99]}],"symbols":[],"user_mentions":[{"screen_name":"matthewstoller","name":"Matt - Stoller","id":2030711,"id_str":"2030711","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1130920868798980098,"id_str":"1130920868798980098","name":"sasha","screen_name":"sushirollhere","location":"","description":"they\/them - lesbian \u2022 19","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":516,"listed_count":0,"created_at":"Tue - May 21 19:38:41 +0000 2019","favourites_count":112778,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8657,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1202057459264839681\/sE_2I3oz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202057459264839681\/sE_2I3oz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1130920868798980098\/1558467778","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:22:08 +0000 2020","id":1235239113298759680,"id_str":"1235239113298759680","text":"Just - spoke with ER doc who say he''s seeing cases he''s 99% sure are #coronavirus. - Negative for flu, recent travel, w\u2026 https:\/\/t.co\/CZW3Q11r3Z","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[67,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CZW3Q11r3Z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235239113298759680","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2030711,"id_str":"2030711","name":"Matt - Stoller","screen_name":"matthewstoller","location":"Washington, DC","description":"Author, - \"Goliath: The Hundred Year War Between Monopoly Power and Democracy,\" Research - Director at American Economic Liberties Project (@econliberties)","url":"https:\/\/t.co\/F15IvFj79S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/F15IvFj79S","expanded_url":"http:\/\/mattstoller.com","display_url":"mattstoller.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":84026,"friends_count":2501,"listed_count":2009,"created_at":"Fri - Mar 23 17:05:29 +0000 2007","favourites_count":3642,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":82985,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180516130340970498\/xkpgVSP__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180516130340970498\/xkpgVSP__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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5982,"favorite_count":14143,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5982,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689885335552,"id_str":"1235246689885335552","text":"@gustinicchi - La Spagna ha confermato che la prima morte da coronavirus \u00e8 un uomo deceduto - lo scorso 13 febbraio, 8\u2026 https:\/\/t.co\/eSFSJWU2XT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gustinicchi","name":"maurizio - gustinicchi","id":761787475,"id_str":"761787475","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/eSFSJWU2XT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246689885335552","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235235941712875527,"in_reply_to_status_id_str":"1235235941712875527","in_reply_to_user_id":761787475,"in_reply_to_user_id_str":"761787475","in_reply_to_screen_name":"gustinicchi","user":{"id":917015985617502208,"id_str":"917015985617502208","name":"\u042f\u043e\u0437\u0435\u044f\u0442\u043e - G. \ud83c\udff4\u200d\u2620\ufe0f","screen_name":"piave79","location":"Roma, - Lazio","description":"Italiano vero #hastatoputin lo si capisce anche dai - caratteri del mio nome - Fortemente Medievale, taglio reti","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1292,"friends_count":1652,"listed_count":5,"created_at":"Sun - Oct 08 13:17:03 +0000 2017","favourites_count":34217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28098,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/917018115762020357\/BYYGMeh9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/917018115762020357\/BYYGMeh9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/917015985617502208\/1572980975","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689881141251,"id_str":"1235246689881141251","text":"RT - @markknoller: Airline executives report to Pres Trump about their efforts - to keep planes clean, share information with other airlines an\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"markknoller","name":"Mark - Knoller","id":31127446,"id_str":"31127446","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2413913117,"id_str":"2413913117","name":"Jennifer - Tromans","screen_name":"JenTromans","location":"","description":"I am a photographer. - Not your typical Mom! I''m a Trekkie, a Scaper, a Browncoat, a Roswellian - and a Democrat #TheResistance United We Stand Divided We Fall","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4492,"friends_count":4965,"listed_count":185,"created_at":"Sat - Mar 15 23:40:10 +0000 2014","favourites_count":85599,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":471442,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464047922443583489\/mkQ3oijX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464047922443583489\/mkQ3oijX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2413913117\/1399471751","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:38:25 +0000 2020","id":1235243207958712328,"id_str":"1235243207958712328","text":"Airline - executives report to Pres Trump about their efforts to keep planes clean, - share information with other airl\u2026 https:\/\/t.co\/5WaDUYtQBu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5WaDUYtQBu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243207958712328","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31127446,"id_str":"31127446","name":"Mark - Knoller","screen_name":"markknoller","location":"Washington, D.C.","description":"CBS - News White House Correspondent","url":"http:\/\/t.co\/BCxDdZjO0a","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/BCxDdZjO0a","expanded_url":"http:\/\/cbsnews.com","display_url":"cbsnews.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":326622,"friends_count":2254,"listed_count":9408,"created_at":"Tue - Apr 14 14:01:03 +0000 2009","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":137206,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0B0F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/137394623\/knoller_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/137394623\/knoller_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31127446\/1358276248","profile_link_color":"DD4020","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EAEDF0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":73,"favorite_count":123,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":73,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689855967239,"id_str":"1235246689855967239","text":"RT - @AndreasPrause: Nach Informationen des Gesundheitsministeriums gibt es in - #Polen einen best\u00e4tigten #Coronavirus-Fall. \n\nWegen eines Verd\u2026","truncated":false,"entities":{"hashtags":[{"text":"Polen","indices":[77,83]},{"text":"Coronavirus","indices":[102,114]}],"symbols":[],"user_mentions":[{"screen_name":"AndreasPrause","name":"Andreas - Prause","id":20530107,"id_str":"20530107","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1361415758,"id_str":"1361415758","name":"frischer_fischer","screen_name":"frisch_fish","location":"Berlin","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1863,"friends_count":4999,"listed_count":296,"created_at":"Thu - Apr 18 08:53:39 +0000 2013","favourites_count":107215,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":280670,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/491217423396134913\/ygdCi_0u_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/491217423396134913\/ygdCi_0u_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1361415758\/1425022413","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:40:47 +0000 2020","id":1235243806800449537,"id_str":"1235243806800449537","text":"Nach - Informationen des Gesundheitsministeriums gibt es in #Polen einen best\u00e4tigten - #Coronavirus-Fall. \n\nWegen eines\u2026 https:\/\/t.co\/URY4cP7kjL","truncated":true,"entities":{"hashtags":[{"text":"Polen","indices":[58,64]},{"text":"Coronavirus","indices":[83,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/URY4cP7kjL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243806800449537","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1235231850878193664,"in_reply_to_status_id_str":"1235231850878193664","in_reply_to_user_id":20530107,"in_reply_to_user_id_str":"20530107","in_reply_to_screen_name":"AndreasPrause","user":{"id":20530107,"id_str":"20530107","name":"Andreas - Prause","screen_name":"AndreasPrause","location":"Che\u0142mno nad Wis\u0142\u0105","description":"Tweets - aus Che\u0142mno nad Wis\u0142\u0105 | Retweet bedeutet nicht unbedingt Zustimmung. - | \n\ud83d\udcc4 \u00dcbersichten zur \"Justizreform\" in Polen \u27a1\ufe0f - https:\/\/t.co\/jsPlztT3A4","url":"http:\/\/t.co\/K68lIRv5KP","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/K68lIRv5KP","expanded_url":"http:\/\/www.chelmno.info","display_url":"chelmno.info","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jsPlztT3A4","expanded_url":"http:\/\/sites.google.com\/view\/aprause\/","display_url":"sites.google.com\/view\/aprause\/","indices":[125,148]}]}},"protected":false,"followers_count":869,"friends_count":465,"listed_count":41,"created_at":"Tue - Feb 10 17:54:36 +0000 2009","favourites_count":2644,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43596,"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\/1184664537\/aptwitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184664537\/aptwitter_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20530107\/1453535367","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"D2CCFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235243103470133250,"quoted_status_id_str":"1235243103470133250","quoted_status":{"created_at":"Wed - Mar 04 16:38:00 +0000 2020","id":1235243103470133250,"id_str":"1235243103470133250","text":"65 - os\u00f3b w Polsce jest hospitalizowanych z powodu koronawirusa, 349 poddano - kwarantannie domowej, a 4540 obj\u0119to nadz\u2026 https:\/\/t.co\/Q0p1JOza8b","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Q0p1JOza8b","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243103470133250","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"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,"user":{"id":562800078,"id_str":"562800078","name":"Radio - ZET NEWS","screen_name":"RadioZET_NEWS","location":"Poland","description":"PIERWSZE - \u0179R\u00d3D\u0141O INFORMACJI | #RadioZET | Czerwony Telefon: 321 321 100","url":"https:\/\/t.co\/nSQEjuNJNS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nSQEjuNJNS","expanded_url":"http:\/\/www.wiadomosci.radiozet.pl","display_url":"wiadomosci.radiozet.pl","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":61276,"friends_count":1244,"listed_count":369,"created_at":"Wed - Apr 25 08:52:40 +0000 2012","favourites_count":662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":120718,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8EBEA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/818477453744230400\/vwVE-nFa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/818477453744230400\/vwVE-nFa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/562800078\/1484148121","profile_link_color":"FF0000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"pl"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"is_quote_status":true,"quoted_status_id":1235243103470133250,"quoted_status_id_str":"1235243103470133250","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689839177729,"id_str":"1235246689839177729","text":"2cas - a tulles 1 a Brive quelqu''un confirme ?\n#CORONAVIRUSENFRANCE \n#coronavirus","truncated":false,"entities":{"hashtags":[{"text":"CORONAVIRUSENFRANCE","indices":[45,65]},{"text":"coronavirus","indices":[67,79]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":938453717468241920,"id_str":"938453717468241920","name":"La - Licorne Masqu\u00e9e","screen_name":"Licornemasque19","location":"Tulle, France","description":"Je - suis unique...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":83,"listed_count":0,"created_at":"Wed - Dec 06 17:02:56 +0000 2017","favourites_count":107,"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\/938512794672074759\/WMq5Cb0f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/938512794672074759\/WMq5Cb0f_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689717547011,"id_str":"1235246689717547011","text":"RT - @molerogascon: J\u00fcrgen Klopp sobre el coronavirus:\n\u201cNo entiendo - ni me gusta que simplemente por el hecho de ser famoso mi opini\u00f3n sea - rel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"molerogascon","name":"Pep - Molero","id":213982456,"id_str":"213982456","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4298009128,"id_str":"4298009128","name":"Matias","screen_name":"MatBurgos","location":"Argentina","description":"La - pelota siempre a Riquelme. El f\u00fatbol es un arte. Jugar y gustar.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":389,"friends_count":462,"listed_count":1,"created_at":"Fri - Nov 27 16:26:26 +0000 2015","favourites_count":76303,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22937,"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\/1226723499928150016\/TmVhEyDM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226723499928150016\/TmVhEyDM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4298009128\/1578808393","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:36:57 +0000 2020","id":1234986149283631105,"id_str":"1234986149283631105","text":"J\u00fcrgen - Klopp sobre el coronavirus:\n\u201cNo entiendo ni me gusta que simplemente - por el hecho de ser famoso mi opini\u00f3n s\u2026 https:\/\/t.co\/xFVIWkrBWR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xFVIWkrBWR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234986149283631105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33979,"favorite_count":118199,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":33979,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689692180481,"id_str":"1235246689692180481","text":"RT - @ChelseaClinton: President Trump has left the U.S. dangerously underprepared - to face a public health crisis like a #coronavirus outbreak\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[118,130]}],"symbols":[],"user_mentions":[{"screen_name":"ChelseaClinton","name":"Chelsea - Clinton","id":757303975,"id_str":"757303975","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826156521885143042,"id_str":"826156521885143042","name":"Bill - for Truth","screen_name":"real_pat_henry","location":"Texas, USA","description":"Hello - all decent law abiding American Citizens and legal immigrants. I am for our - Constitutional rights. Retired USAF Disabled Veteran. Life member DAV.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8338,"friends_count":9045,"listed_count":3,"created_at":"Mon - Jan 30 19:53:58 +0000 2017","favourites_count":70485,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":89918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1017764428639547392\/sK6Qgtwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017764428639547392\/sK6Qgtwc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 25 18:41:03 +0000 2020","id":1232374966747828224,"id_str":"1232374966747828224","text":"President - Trump has left the U.S. dangerously underprepared to face a public health - crisis like a #coronavirus outb\u2026 https:\/\/t.co\/xbfxG0FA5P","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[98,110]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xbfxG0FA5P","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1232374966747828224","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":757303975,"id_str":"757303975","name":"Chelsea - Clinton","screen_name":"ChelseaClinton","location":"New York, NY","description":"Mom - of Charlotte, Aidan & Jasper, Married to Marc, Advocate, Author, Teacher, - @ClintonFdn & @CHAI_health & @HealthierGen, New Yorker","url":"https:\/\/t.co\/zhz54dT8kv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhz54dT8kv","expanded_url":"https:\/\/www.facebook.com\/chelseaclinton","display_url":"facebook.com\/chelseaclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2590613,"friends_count":679,"listed_count":10009,"created_at":"Tue - Aug 14 14:55:27 +0000 2012","favourites_count":21761,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":13193,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F4F1E5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614488068905652224\/2tUcF22u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614488068905652224\/2tUcF22u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/757303975\/1484178400","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2061,"favorite_count":5379,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2061,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689679704065,"id_str":"1235246689679704065","text":"RT - @JohnJHarwood: right now, the White House is holding a coronavirus meeting - in front of television cameras\n\nVP Pence began by flattering\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnJHarwood","name":"John - Harwood","id":259395895,"id_str":"259395895","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":353879106,"id_str":"353879106","name":"Steven - Lemongello","screen_name":"SteveLemongello","location":"Orlando, FL","description":"Politics - editor at @orlandosentinel \u2022 Covering presidential, congressional, and - Florida politics \u2022 Jersey native, Florida convert","url":"https:\/\/t.co\/tpHIrcTKBX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tpHIrcTKBX","expanded_url":"http:\/\/www.orlandosentinel.com\/os-steven-lemongello-bio-staff.html","display_url":"orlandosentinel.com\/os-steven-lemo\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6741,"friends_count":6560,"listed_count":300,"created_at":"Fri - Aug 12 19:45:17 +0000 2011","favourites_count":63380,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":91247,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/422945701765468160\/aEwqZG_N_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422945701765468160\/aEwqZG_N_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353879106\/1425413621","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:33:53 +0000 2020","id":1235242070488616961,"id_str":"1235242070488616961","text":"right - now, the White House is holding a coronavirus meeting in front of television - cameras\n\nVP Pence began by flatt\u2026 https:\/\/t.co\/DOT9QkSmkj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DOT9QkSmkj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242070488616961","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259395895,"id_str":"259395895","name":"John - Harwood","screen_name":"JohnJHarwood","location":"Washington, DC","description":"White - House Correspondent for @CNN","url":"https:\/\/t.co\/IaghNWqyKC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IaghNWqyKC","expanded_url":"http:\/\/www.cnn.com","display_url":"cnn.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":347649,"friends_count":1711,"listed_count":5761,"created_at":"Tue - Mar 01 20:49:40 +0000 2011","favourites_count":6148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":123424,"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\/868178337859911680\/GJ8zcy-z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/868178337859911680\/GJ8zcy-z_normal.jpg","profile_link_color":"3473A3","profile_sidebar_border_color":"CFCFCF","profile_sidebar_fill_color":"E3E3E3","profile_text_color":"5E5E5E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2144,"favorite_count":4479,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2144,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689621024770,"id_str":"1235246689621024770","text":"RT - @atrupar: Trump on coronavirus testing: \"The Obama administration made a - decision on testing that turned out to be very detrimental to w\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"atrupar","name":"Aaron - Rupar","id":288277167,"id_str":"288277167","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1119953262076211201,"id_str":"1119953262076211201","name":"Moonbeemzzz\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a","screen_name":"moonbeemzzz","location":"","description":"#resistance - Bostonian. Crazy dog person. Vegan because I care about the environment. - Kindness always... #bluenomatterwho #voteblue2020\ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":96,"friends_count":289,"listed_count":0,"created_at":"Sun - Apr 21 13:17:20 +0000 2019","favourites_count":5262,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":581,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227358528555421710\/SSuiRLr9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227358528555421710\/SSuiRLr9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1119953262076211201\/1581701592","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:41:10 +0000 2020","id":1235243899674939392,"id_str":"1235243899674939392","text":"Trump - on coronavirus testing: \"The Obama administration made a decision on testing - that turned out to be very detri\u2026 https:\/\/t.co\/dC3optnUmF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dC3optnUmF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243899674939392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":288277167,"id_str":"288277167","name":"Aaron - Rupar","screen_name":"atrupar","location":"","description":"journalist @voxdotcom","url":"https:\/\/t.co\/RnqX4a5AQt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RnqX4a5AQt","expanded_url":"http:\/\/vox.com","display_url":"vox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247705,"friends_count":999,"listed_count":2854,"created_at":"Tue - Apr 26 15:22:47 +0000 2011","favourites_count":96174,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":70554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288277167\/1469538346","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3556,"favorite_count":12531,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3556,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689474228231,"id_str":"1235246689474228231","text":"RT - @phiwi86: Anyone lending #toilettpaper? Asking for a friend #Rossmann #toiletpapercrisis - #coronavirus #Germany #CoronaPanik #Hamsterkauf\u2026","truncated":false,"entities":{"hashtags":[{"text":"toilettpaper","indices":[28,41]},{"text":"Rossmann","indices":[63,72]},{"text":"toiletpapercrisis","indices":[73,91]},{"text":"coronavirus","indices":[92,104]},{"text":"Germany","indices":[105,113]},{"text":"CoronaPanik","indices":[114,126]},{"text":"Hamsterkauf","indices":[127,139]}],"symbols":[],"user_mentions":[{"screen_name":"phiwi86","name":"criticalmass","id":547152504,"id_str":"547152504","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":950482664443826176,"id_str":"950482664443826176","name":"Lambo-chica","screen_name":"Merrij994","location":"","description":"","url":"https:\/\/t.co\/actXQ4hkNV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/actXQ4hkNV","expanded_url":"http:\/\/steemit.com\/@merrij","display_url":"steemit.com\/@merrij","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":57,"listed_count":0,"created_at":"Mon - Jan 08 21:41:41 +0000 2018","favourites_count":352,"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":"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\/1084804793447710721\/FBv8U-Ht_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1084804793447710721\/FBv8U-Ht_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/950482664443826176\/1547472551","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:00:02 +0000 2020","id":1235233550590500864,"id_str":"1235233550590500864","text":"Anyone - lending #toilettpaper? Asking for a friend #Rossmann #toiletpapercrisis #coronavirus - #Germany #CoronaPanik\u2026 https:\/\/t.co\/FlS0rY2RAL","truncated":true,"entities":{"hashtags":[{"text":"toilettpaper","indices":[15,28]},{"text":"Rossmann","indices":[50,59]},{"text":"toiletpapercrisis","indices":[60,78]},{"text":"coronavirus","indices":[79,91]},{"text":"Germany","indices":[92,100]},{"text":"CoronaPanik","indices":[101,113]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FlS0rY2RAL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235233550590500864","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":547152504,"id_str":"547152504","name":"criticalmass","screen_name":"phiwi86","location":"tiny-house.eth","description":"","url":"https:\/\/t.co\/BFSmPNYq7B","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BFSmPNYq7B","expanded_url":"http:\/\/instagram.com\/chili.heads","display_url":"instagram.com\/chili.heads","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":215,"friends_count":1116,"listed_count":0,"created_at":"Fri - Apr 06 20:00:01 +0000 2012","favourites_count":7871,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1360,"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\/1110595407850209282\/txEjUexA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1110595407850209282\/txEjUexA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/547152504\/1565390161","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"},"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"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689457405959,"id_str":"1235246689457405959","text":"RT - @MailOnline: 2,000 cruise passengers are ordered back on board their ship - off of Greece #CoronavirusOutbreak https:\/\/t.co\/EK5Wi0RdkT","truncated":false,"entities":{"hashtags":[{"text":"CoronavirusOutbreak","indices":[91,111]}],"symbols":[],"user_mentions":[{"screen_name":"MailOnline","name":"Daily - Mail Online","id":15438913,"id_str":"15438913","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/EK5Wi0RdkT","expanded_url":"https:\/\/trib.al\/rfCdXah","display_url":"trib.al\/rfCdXah","indices":[112,135]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549787050,"id_str":"549787050","name":"We - The People","screen_name":"sierradedorado7","location":"Orlando,Florida","description":"Juan - 14:6 Reina-Valera 1960\n6 Jes\u00fas le dijo: Yo soy el camino, y la verdad, - y la vida; nadie viene al Padre, sino por m\u00ed.","url":"https:\/\/t.co\/6aILOdH5fq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6aILOdH5fq","expanded_url":"http:\/\/wefollow.com","display_url":"wefollow.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5874,"friends_count":2975,"listed_count":47,"created_at":"Tue - Apr 10 01:29:19 +0000 2012","favourites_count":76528,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":113948,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1226245130287484930\/Hg90q0o9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226245130287484930\/Hg90q0o9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/549787050\/1571433203","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:50:22 +0000 2020","id":1235246216784596993,"id_str":"1235246216784596993","text":"2,000 - cruise passengers are ordered back on board their ship off of Greece #CoronavirusOutbreak - https:\/\/t.co\/EK5Wi0RdkT","truncated":false,"entities":{"hashtags":[{"text":"CoronavirusOutbreak","indices":[75,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EK5Wi0RdkT","expanded_url":"https:\/\/trib.al\/rfCdXah","display_url":"trib.al\/rfCdXah","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15438913,"id_str":"15438913","name":"Daily - Mail Online","screen_name":"MailOnline","location":"","description":"For the - latest updates on breaking news visit our website https:\/\/t.co\/5os3efxRyQ - #seriouslypopular","url":"https:\/\/t.co\/fT7KB2eXic","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fT7KB2eXic","expanded_url":"http:\/\/www.dailymail.com","display_url":"dailymail.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/5os3efxRyQ","expanded_url":"http:\/\/www.dailymail.co.uk","display_url":"dailymail.co.uk","indices":[58,81]}]}},"protected":false,"followers_count":2465670,"friends_count":2318,"listed_count":13836,"created_at":"Tue - Jul 15 10:17:46 +0000 2008","favourites_count":669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":305362,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194268540058193927\/ca-uOgq6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194268540058193927\/ca-uOgq6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15438913\/1488911261","profile_link_color":"004EB3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E3E3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":45,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689235144706,"id_str":"1235246689235144706","text":"RT - @Sool_qui: Llamaron a un infectologo en un noticiero para preguntarle sobre - el coronavirus y comenz\u00f3 diciendo\nM\u00c1S QUE BARBIJOS, YO LES S\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sool_qui","name":"Sol - \ud83c\udf40","id":849658484,"id_str":"849658484","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226728224,"id_str":"226728224","name":"Agustina - \ud83d\udc9a","screen_name":"AgusMuchut","location":"Argentina","description":"Everything - that kills me, makes me feel alive.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":645,"friends_count":580,"listed_count":1,"created_at":"Tue - Dec 14 22:46:41 +0000 2010","favourites_count":11781,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16289,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1006599484183228416\/ruDH0Y9z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1006599484183228416\/ruDH0Y9z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226728224\/1524099532","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 22:26:21 +0000 2020","id":1234968380022587394,"id_str":"1234968380022587394","text":"Llamaron - a un infectologo en un noticiero para preguntarle sobre el coronavirus y comenz\u00f3 - diciendo\nM\u00c1S QUE BARBIJOS\u2026 https:\/\/t.co\/WnP2D8iJCG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WnP2D8iJCG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234968380022587394","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":849658484,"id_str":"849658484","name":"Sol - \ud83c\udf40","screen_name":"Sool_qui","location":"","description":"~Devils - roll the dice, angels roll their eyes~\nMedicina-UNNE\n\ud83d\udc69\u200d\u2695\ufe0f\ud83d\udcda","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":613,"friends_count":781,"listed_count":0,"created_at":"Thu - Sep 27 17:41:36 +0000 2012","favourites_count":37699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18754,"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\/1229248752847904768\/GFB8gE5W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229248752847904768\/GFB8gE5W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/849658484\/1580947186","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14433,"favorite_count":85491,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":14433,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689121906693,"id_str":"1235246689121906693","text":"RT - @eluniversocom: El antiinflamatorio Actemra de Roche ser\u00e1 usado para - combatir las complicaciones del coronavirus en China \u25ba https:\/\/t.c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eluniversocom","name":"El - Universo","id":8225692,"id_str":"8225692","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":1226140092,"id_str":"1226140092","name":"JOSE - BAHAMONDE","screen_name":"jose_baha","location":"Ecuador","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":781,"friends_count":351,"listed_count":76,"created_at":"Wed - Feb 27 22:10:21 +0000 2013","favourites_count":841,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":417532,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/502220108006035456\/RA3YvZjC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502220108006035456\/RA3YvZjC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226140092\/1408572745","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:40:04 +0000 2020","id":1235213426433110018,"id_str":"1235213426433110018","text":"El - antiinflamatorio Actemra de Roche ser\u00e1 usado para combatir las complicaciones - del coronavirus en China \u25ba\u2026 https:\/\/t.co\/ujQhSgCvYB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ujQhSgCvYB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235213426433110018","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":8225692,"id_str":"8225692","name":"El - Universo","screen_name":"eluniversocom","location":"Guayaquil, Ecuador","description":"El - Mayor Diario Nacional. Noticias de Ecuador y del mundo","url":"http:\/\/t.co\/DcjOhdSz6f","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/DcjOhdSz6f","expanded_url":"http:\/\/www.eluniverso.com","display_url":"eluniverso.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2034037,"friends_count":2868,"listed_count":4372,"created_at":"Thu - Aug 16 15:08:04 +0000 2007","favourites_count":266,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":268151,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"054D80","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/801843060128759808\/EnWtCFxy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/801843060128759808\/EnWtCFxy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8225692\/1579632064","profile_link_color":"01385F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A9BCD8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":108,"favorite_count":106,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":108,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246689046409218,"id_str":"1235246689046409218","text":"RT - @C33_14O: El coronavirus vino en avi\u00f3n, se puede decir que es una enfermedad - pasajera. https:\/\/t.co\/pxQJAu2sMB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"C33_14O","name":"C3\u03c0O - \ud83d\udc9a","id":1455719492,"id_str":"1455719492","indices":[3,11]}],"urls":[],"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}},"source_status_id":1234981828529774592,"source_status_id_str":"1234981828529774592","source_user_id":1455719492,"source_user_id_str":"1455719492"}]},"extended_entities":{"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}},"source_status_id":1234981828529774592,"source_status_id_str":"1234981828529774592","source_user_id":1455719492,"source_user_id_str":"1455719492"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1141127161744625665,"id_str":"1141127161744625665","name":"virgo - \ud83d\udca9","screen_name":"mate_sinyerba","location":"Marte","description":"lameme - el escroto","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":84,"listed_count":0,"created_at":"Tue - Jun 18 23:34:51 +0000 2019","favourites_count":5024,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1000,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189193193738231810\/-obnLFHQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189193193738231810\/-obnLFHQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1141127161744625665\/1574122268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:19:47 +0000 2020","id":1234981828529774592,"id_str":"1234981828529774592","text":"El - coronavirus vino en avi\u00f3n, se puede decir que es una enfermedad pasajera. - https:\/\/t.co\/pxQJAu2sMB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1455719492,"id_str":"1455719492","name":"C3\u03c0O - \ud83d\udc9a","screen_name":"C33_14O","location":"","description":"Un tripio - cualquiera.","url":"https:\/\/t.co\/lZYBEh23Av","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lZYBEh23Av","expanded_url":"http:\/\/es.favstar.fm\/users\/C33_14O","display_url":"es.favstar.fm\/users\/C33_14O","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10221,"friends_count":496,"listed_count":155,"created_at":"Sat - May 25 01:36:10 +0000 2013","favourites_count":30108,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33088,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/835843286568927236\/6AQ5W5lo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/835843286568927236\/6AQ5W5lo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1455719492\/1390756129","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3926,"favorite_count":31849,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":3926,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246688903852032,"id_str":"1235246688903852032","text":"RT - @tragicom24: Coronavirus, dopo le nuove regole sulla distanza di sicurezza, - Mulino Bianco interrompe la produzione dei biscotti Abbracci.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tragicom24","name":"Tragicom24","id":497190015,"id_str":"497190015","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":369404604,"id_str":"369404604","name":"Double - C","screen_name":"chc_el","location":"","description":"Troppi libri, tanti - film, molto Star Wars, alcuni kdrama, qualche serie tv di tanto in tanto.","url":"https:\/\/t.co\/AGlq23O7EF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AGlq23O7EF","expanded_url":"https:\/\/www.goodreads.com\/user\/show\/61313812-double-c","display_url":"goodreads.com\/user\/show\/6131\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":593,"friends_count":399,"listed_count":19,"created_at":"Wed - Sep 07 09:12:42 +0000 2011","favourites_count":40107,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":48601,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D050D","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\/1212876707096600576\/RC30-ZoA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212876707096600576\/RC30-ZoA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369404604\/1582589597","profile_link_color":"116062","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0E0D02","profile_text_color":"39BD91","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:26:02 +0000 2020","id":1235240092270235649,"id_str":"1235240092270235649","text":"Coronavirus, - dopo le nuove regole sulla distanza di sicurezza, Mulino Bianco interrompe - la produzione dei biscotti Abbracci.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":497190015,"id_str":"497190015","name":"Tragicom24","screen_name":"tragicom24","location":"Bologna, - Emilia Romagna","description":"Fino Alla Fine \u26aa\ufe0f\u26ab\ufe0f Ball - is Life \ud83c\udfc0 Law Student \u2696\ufe0f #MambaForever \ud83d\udc9b\ud83d\udc9c - 8\ufe0f\u20e3\/2\ufe0f\u20e34\ufe0f\u20e3 TuidderCalcio\u26bd\ufe0f","url":"https:\/\/t.co\/IgXVNp0tJR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IgXVNp0tJR","expanded_url":"https:\/\/www.instagram.com\/aluz12\/?hl=it","display_url":"instagram.com\/aluz12\/?hl=it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7521,"friends_count":167,"listed_count":5,"created_at":"Sun - Feb 19 18:28:00 +0000 2012","favourites_count":16850,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3698,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231609074455805956\/9VJJNj1g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231609074455805956\/9VJJNj1g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/497190015\/1580549361","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2018,"favorite_count":8271,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":2018,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246688895455234,"id_str":"1235246688895455234","text":"RT - @rashtrapatibhvn: With alertness and safeguards, we all can help contain the - outbreak of COVID-19 Novel Coronavirus. In a precautionary\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rashtrapatibhvn","name":"President - of India","id":885487044243238912,"id_str":"885487044243238912","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":759506844318470144,"id_str":"759506844318470144","name":"Rajinder","screen_name":"rajindr1983","location":"Everywhere","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":162,"listed_count":0,"created_at":"Sat - Jul 30 21:51:57 +0000 2016","favourites_count":311,"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\/883387035406356480\/06jvEfOu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/883387035406356480\/06jvEfOu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:29:31 +0000 2020","id":1235180570621005824,"id_str":"1235180570621005824","text":"With - alertness and safeguards, we all can help contain the outbreak of COVID-19 - Novel Coronavirus. In a precautiona\u2026 https:\/\/t.co\/k1JcRy9S4l","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k1JcRy9S4l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235180570621005824","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":885487044243238912,"id_str":"885487044243238912","name":"President - of India","screen_name":"rashtrapatibhvn","location":"New Delhi, India","description":"This - is the official Twitter account of Rashtrapati Bhavan and is run by the President\u2019s - Secretariat. Tweets from the President are signed #PresidentKovind","url":"https:\/\/t.co\/fC8RwDOH3c","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fC8RwDOH3c","expanded_url":"http:\/\/presidentofindia.nic.in\/index.htm","display_url":"presidentofindia.nic.in\/index.htm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7762277,"friends_count":1,"listed_count":983,"created_at":"Thu - Jul 13 13:12:17 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7260,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921303478684790784\/FLIFCZxh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921303478684790784\/FLIFCZxh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/885487044243238912\/1532677314","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1304,"favorite_count":9607,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1304,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246688849326085,"id_str":"1235246688849326085","text":"RT - @Diego17Nicolas: 63 femicidios en 2 meses,en Argentina no hay coronavirus,hay - algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Diego17Nicolas","name":"Diego - Nicol\u00e1s Manzur","id":1232174067207278592,"id_str":"1232174067207278592","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3406423330,"id_str":"3406423330","name":"M - i l a g r \u2606 s","screen_name":"milagrosvedoya2","location":"Corrientes, - Argentina","description":"somos instantes","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1421,"friends_count":819,"listed_count":1,"created_at":"Fri - Aug 07 00:05:49 +0000 2015","favourites_count":63305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54238,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234322712954331136\/KsoZ5aRU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234322712954331136\/KsoZ5aRU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3406423330\/1570763473","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 17:52:48 +0000 2020","id":1234537151536287745,"id_str":"1234537151536287745","text":"63 - femicidios en 2 meses,en Argentina no hay coronavirus,hay algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232174067207278592,"id_str":"1232174067207278592","name":"Diego - Nicol\u00e1s Manzur","screen_name":"Diego17Nicolas","location":"","description":"\u2649\n\ud83c\udf47 - Mendoza-Argentina\ud83c\udf77\nig: 17diego_nicolas \n\nCARC \ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":101,"listed_count":0,"created_at":"Tue - Feb 25 05:22:56 +0000 2020","favourites_count":172,"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:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232174067207278592\/1583297600","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12833,"favorite_count":22725,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":12833,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246688815599617,"id_str":"1235246688815599617","text":"RT - @GOPLeader: Congress should''ve already passed a funding bill to combat coronavirus. - Period. But Democrats are hellbent on sneaking in el\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOPLeader","name":"Kevin - McCarthy","id":19739126,"id_str":"19739126","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1115867425428377600,"id_str":"1115867425428377600","name":"TeresaSchuste14","screen_name":"schuste14","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":156,"listed_count":0,"created_at":"Wed - Apr 10 06:41:40 +0000 2019","favourites_count":9075,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223802251681992707\/h3Vjc7HQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223802251681992707\/h3Vjc7HQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1115867425428377600\/1580549624","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:11:17 +0000 2020","id":1235236383112998912,"id_str":"1235236383112998912","text":"Congress - should''ve already passed a funding bill to combat coronavirus. Period. But - Democrats are hellbent on sneak\u2026 https:\/\/t.co\/26hKMBMO4s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/26hKMBMO4s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235236383112998912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19739126,"id_str":"19739126","name":"Kevin - McCarthy","screen_name":"GOPLeader","location":"Bakersfield, CA","description":"Republican - Leader and Representative of California''s 23rd District in the House of Representatives.\nhttps:\/\/t.co\/ZqWsqD6L0T","url":"https:\/\/t.co\/eB1lud6Yi3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eB1lud6Yi3","expanded_url":"http:\/\/republicanleader.gov","display_url":"republicanleader.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZqWsqD6L0T","expanded_url":"https:\/\/www.instagram.com\/repkevinmccarthy\/","display_url":"instagram.com\/repkevinmccart\u2026","indices":[100,123]}]}},"protected":false,"followers_count":708094,"friends_count":1388,"listed_count":4807,"created_at":"Thu - Jan 29 22:28:48 +0000 2009","favourites_count":1829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12552,"lang":null,"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\/1144683452064833536\/fZbuxrtg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144683452064833536\/fZbuxrtg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19739126\/1582230846","profile_link_color":"0A2644","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"122C73","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12035,"favorite_count":31046,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12035,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:15 +0000 2020","id":1235246688790601728,"id_str":"1235246688790601728","text":"RT - @MutAtNightWEEI: .@MutWEEI had a troubling coronavirus update last night about - why we are not doing enough to stop the spread. https:\/\/t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MutAtNightWEEI","name":"Mut - at Night","id":1056182258,"id_str":"1056182258","indices":[3,18]},{"screen_name":"MutWEEI","name":"Mike - Mutnansky","id":46422699,"id_str":"46422699","indices":[21,29]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":589539732,"id_str":"589539732","name":"Eamon - Convey","screen_name":"EJConvey","location":"Boston, MA","description":"Live-streaming - video: @omfonweei, \ud83d\udcfb Producer, Engineer: @WEEI \/ PxP for @myhockeylive - \/ \ud83c\udfa5 for @bostonlaxnet \/ Freelance video, PA, et al \/ IG: conveyweei","url":"https:\/\/t.co\/eRvx2muss1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eRvx2muss1","expanded_url":"http:\/\/nesportsfix.wordpress.com","display_url":"nesportsfix.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1654,"friends_count":1651,"listed_count":9,"created_at":"Thu - May 24 22:01:23 +0000 2012","favourites_count":19613,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31377,"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\/1232103523397066752\/5CM9Q3mx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232103523397066752\/5CM9Q3mx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/589539732\/1573845069","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:30:21 +0000 2020","id":1235226078727344128,"id_str":"1235226078727344128","text":".@MutWEEI - had a troubling coronavirus update last night about why we are not doing enough - to stop the spread. https:\/\/t.co\/zI8ymAtb7V","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MutWEEI","name":"Mike - Mutnansky","id":46422699,"id_str":"46422699","indices":[1,9]}],"urls":[],"media":[{"id":1235225879816663040,"id_str":"1235225879816663040","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235225879816663040\/pu\/img\/-bKewpMIo_MiIXya.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235225879816663040\/pu\/img\/-bKewpMIo_MiIXya.jpg","url":"https:\/\/t.co\/zI8ymAtb7V","display_url":"pic.twitter.com\/zI8ymAtb7V","expanded_url":"https:\/\/twitter.com\/MutAtNightWEEI\/status\/1235226078727344128\/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":1235225879816663040,"id_str":"1235225879816663040","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235225879816663040\/pu\/img\/-bKewpMIo_MiIXya.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235225879816663040\/pu\/img\/-bKewpMIo_MiIXya.jpg","url":"https:\/\/t.co\/zI8ymAtb7V","display_url":"pic.twitter.com\/zI8ymAtb7V","expanded_url":"https:\/\/twitter.com\/MutAtNightWEEI\/status\/1235226078727344128\/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":130125,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235225879816663040\/pu\/pl\/5-h6-r0aDVEKJKGr.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235225879816663040\/pu\/vid\/480x270\/ShBLqjwvPHXz6R76.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235225879816663040\/pu\/vid\/640x360\/09n7k6i9CD1OKSh3.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235225879816663040\/pu\/vid\/1280x720\/mk4sspoiVhH6NB2Y.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1056182258,"id_str":"1056182258","name":"Mut - at Night","screen_name":"MutAtNightWEEI","location":"Boston","description":"Weeknights - 6p-10p on @WEEI with @MutWEEI. Account run by @lucilleburdge","url":"https:\/\/t.co\/5A5dRrarbA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5A5dRrarbA","expanded_url":"http:\/\/weei.com","display_url":"weei.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":58486,"friends_count":632,"listed_count":379,"created_at":"Wed - Jan 02 21:43:53 +0000 2013","favourites_count":618,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":37447,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211992263984898049\/tKHgYW8S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211992263984898049\/tKHgYW8S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1056182258\/1582674508","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"},"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246688392052736,"id_str":"1235246688392052736","text":"RT - @jillboard: mental illness is crazy cause i\u2019m like\nomg i\u2019m gonna - be late\nomg i\u2019m gonna be late\nomg i\u2019m gonna be late\nomg i\u2019m - gonna be la\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jillboard","name":"Jill - Gutowitz","id":95485773,"id_str":"95485773","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1174077939681517573,"id_str":"1174077939681517573","name":"Kat","screen_name":"dreamof_steady","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":61,"listed_count":0,"created_at":"Tue - Sep 17 21:49:44 +0000 2019","favourites_count":3028,"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\/1217556533661306880\/1biY9yUy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217556533661306880\/1biY9yUy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1174077939681517573\/1579123080","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 23:24:54 +0000 2020","id":1234620726558113792,"id_str":"1234620726558113792","text":"mental - illness is crazy cause i\u2019m like\nomg i\u2019m gonna be late\nomg i\u2019m - gonna be late\nomg i\u2019m gonna be late\nomg i\u2019m go\u2026 https:\/\/t.co\/idl2l9UE8B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/idl2l9UE8B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234620726558113792","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95485773,"id_str":"95485773","name":"Jill - Gutowitz","screen_name":"jillboard","location":"LA","description":"Writing - a book @AtriaBooks.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75509,"friends_count":986,"listed_count":375,"created_at":"Tue - Dec 08 19:34:10 +0000 2009","favourites_count":56751,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":22234,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"340B9C","profile_background_image_url":"http:\/\/abs.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\/1028388189310832640\/zYwsVCNC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1028388189310832640\/zYwsVCNC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95485773\/1511660801","profile_link_color":"4400C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"FF005E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29873,"favorite_count":181588,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":29873,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246688320835585,"id_str":"1235246688320835585","text":"RT - @childrensatl: Two cases of novel coronavirus are now confirmed in Atlanta. - Here''s what you need to know to protect your family.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"childrensatl","name":"Children''s","id":123276758,"id_str":"123276758","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1558886995,"id_str":"1558886995","name":"Margo - Kamel","screen_name":"margokamel81","location":"Georgia, USA","description":"Associate - Director of Research Projects, Division of Pediatric Nephrology, Emory University - School of Medicine","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":412,"listed_count":1,"created_at":"Sun - Jun 30 20:26:17 +0000 2013","favourites_count":387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"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\/1041141214706319361\/QNkF3Ovi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041141214706319361\/QNkF3Ovi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1558886995\/1537062387","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 00:37:13 +0000 2020","id":1235001317036216322,"id_str":"1235001317036216322","text":"Two - cases of novel coronavirus are now confirmed in Atlanta. Here''s what you - need to know to protect your family.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":123276758,"id_str":"123276758","name":"Children''s","screen_name":"childrensatl","location":"Atlanta, - GA","description":"Specialized just for kids, Children\u2019s Healthcare of - Atlanta is dedicated to better. Follow us for updates on kids\u2019 health - and hospital news.","url":"https:\/\/t.co\/3YkL8u6x3t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3YkL8u6x3t","expanded_url":"http:\/\/www.choa.org","display_url":"choa.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":29832,"friends_count":3914,"listed_count":446,"created_at":"Mon - Mar 15 15:27:28 +0000 2010","favourites_count":9308,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":7093,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"009D57","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1026810631666581504\/Q_jWBd5O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1026810631666581504\/Q_jWBd5O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123276758\/1560873293","profile_link_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":31,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246688278847488,"id_str":"1235246688278847488","text":"He''s - totally right! He can''t comment and people shouldn''t want the opinions of - people who aren''t experts. There nee\u2026 https:\/\/t.co\/Fe2Ml7hrlu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Fe2Ml7hrlu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246688278847488","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549312306,"id_str":"549312306","name":"Jade - Passey","screen_name":"JLPassey","location":"Guildford, UK","description":"Communications - Officer in a multi-partner #EU project #ScienceCommunications #SciComm #SciComms - #science #OneHealthEJP. Views are my own. #Yoga keeps me sane!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":669,"friends_count":1492,"listed_count":23,"created_at":"Mon - Apr 09 13:29:38 +0000 2012","favourites_count":6265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6193,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBD2BC","profile_background_image_url":"http:\/\/abs.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\/1118113641457491968\/X0f3wSLR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118113641457491968\/X0f3wSLR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/549312306\/1500016463","profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"904849","profile_text_color":"A1625D","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235112850357510145,"quoted_status_id_str":"1235112850357510145","quoted_status":{"created_at":"Wed - Mar 04 08:00:25 +0000 2020","id":1235112850357510145,"id_str":"1235112850357510145","text":"Klopp - \ud83d\ude4f\ud83c\udffb https:\/\/t.co\/edI1bsNVvW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/edI1bsNVvW","display_url":"pic.twitter.com\/edI1bsNVvW","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"photo","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456"}]},"extended_entities":{"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/edI1bsNVvW","display_url":"pic.twitter.com\/edI1bsNVvW","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"video","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456","video_info":{"aspect_ratio":[1,1],"duration_millis":46880,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/pl\/uLotCLQdV_n4LAgh.m3u8?tag=10"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/320x320\/_yWeEcgBUyFvmz40.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/480x480\/3i5K4kvhdMP6yAxW.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":949365942869512192,"id_str":"949365942869512192","name":"Tactipedia","screen_name":"tactipedia","location":"","description":"Analyse - & opinie over ontwikkelingen in voetbal \ud83d\udce9 tactipedia@outlook.com - | @tfbleij | @tussendelinies","url":"https:\/\/t.co\/3iwEdR9CPE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3iwEdR9CPE","expanded_url":"https:\/\/tactipedia.nl","display_url":"tactipedia.nl","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3952,"friends_count":329,"listed_count":36,"created_at":"Fri - Jan 05 19:44:14 +0000 2018","favourites_count":2694,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2255,"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\/1176477642519908353\/UVdXvoj1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176477642519908353\/UVdXvoj1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/949365942869512192\/1568704230","profile_link_color":"00208A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1443,"favorite_count":5771,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"sv"},"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246688228577280,"id_str":"1235246688228577280","text":"RT - @PabloAgustin: Sabian que el coronavirus es una gripe fuerte que mata en promedio - menos gente que la gripe com\u00fan y generalmente las vict\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PabloAgustin","name":"Pablo - Agust\u00edn","id":35631695,"id_str":"35631695","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544446472,"id_str":"544446472","name":"\ud835\udd88\ud835\udd86\ud835\udd97\ud835\udd94\ud835\udd91\ud835\udd8e\ud835\udd93\ud835\udd8e\ud835\udd99\ud835\udd86 - \ud83c\udff4\u200d\u2620\ufe0f","screen_name":"Caritoomora","location":"Quinta - de Olivos con CFK","description":"solo quiero vagar \ud83d\udc7d. Se\u00f1ores - yo soy de PARQUE\ud83d\udc99. \u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f","url":"https:\/\/t.co\/izzhgXeXQS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/izzhgXeXQS","expanded_url":"https:\/\/www.facebook.com\/caritoo.mora","display_url":"facebook.com\/caritoo.mora","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1451,"friends_count":686,"listed_count":2,"created_at":"Tue - Apr 03 17:24:56 +0000 2012","favourites_count":17164,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38258,"lang":null,"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\/1031820239120388097\/Q3cLcLJr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1031820239120388097\/Q3cLcLJr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544446472\/1573583027","profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:10:41 +0000 2020","id":1234904042125627396,"id_str":"1234904042125627396","text":"Sabian - que el coronavirus es una gripe fuerte que mata en promedio menos gente que - la gripe com\u00fan y generalmente la\u2026 https:\/\/t.co\/gFcWcoxgcn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gFcWcoxgcn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234904042125627396","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35631695,"id_str":"35631695","name":"Pablo - Agust\u00edn","screen_name":"PabloAgustin","location":"Buenos Aires, Argentina","description":"\ud83d\udc41\ufe0f - https:\/\/t.co\/lnjJ42etE2 Contacto: contacto.pabloagustin@gmail.com","url":"https:\/\/t.co\/81Y0G0dbl2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/81Y0G0dbl2","expanded_url":"http:\/\/youtube.com\/PabloAgustin","display_url":"youtube.com\/PabloAgustin","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lnjJ42etE2","expanded_url":"http:\/\/www.instagram.com\/pabloagustinnn","display_url":"instagram.com\/pabloagustinnn","indices":[3,26]}]}},"protected":false,"followers_count":823456,"friends_count":297,"listed_count":359,"created_at":"Mon - Apr 27 01:45:50 +0000 2009","favourites_count":14905,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":16209,"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\/1218275530249842689\/f_TYoOAm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218275530249842689\/f_TYoOAm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35631695\/1579295608","profile_link_color":"04B4AE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22067,"favorite_count":101086,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":22067,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246688077414401,"id_str":"1235246688077414401","text":"RT - @RibbonChieko: \u3010\u6b66\u7530\u85ac\u54c1\u5de5\u696d\u30114\u65e5\n\u65b0\u578b\u30b3\u30ed\u30ca\u611f\u67d3\u75c7\u6cbb\u7642\u85ac\u3068\u3057\u3066\n\u8840\u3057\u3087\u3046\u5206\u753b\u88fd\u5264\u306e\u958b\u767a\u3092\u958b\u59cb\u3057\u305f\u3068\u767a\u8868\n\n\u300e\u56de\u5fa9\u3057\u305f\u60a3\u8005\u306e\u8840\u3057\u3087\u3046\u300f\u3092\u3082\u3068\u306b\n\u56de\u5fa9\u60a3\u8005\u306e\u4f53\u5185\u306b\u3042\u308b\u6297\u4f53\u304c\n\u65b0\u305f\u306a\u611f\u67d3\u8005\u306e\u514d\u75ab\u30b7\u30b9\u30c6\u30e0\u3092\u9ad8\u3081\u611f\u67d3\u3092\u9632\u3050\u53ef\u80fd\u6027\u304c\u3042\u308b\n\n\u307e\u305f\u65e2\u5b58\u306e\u88fd\u54c1\u306e\u4e2d\u304b\u3089\u6709\u52b9\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RibbonChieko","name":"Chieko - Nagayama","id":2264718120,"id_str":"2264718120","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2809327862,"id_str":"2809327862","name":"\u6696\u7c3e\u306b\u6885\u5e72","screen_name":"ume_noren","location":"","description":"#\u79fb\u6c11\u53cd\u5bfe \u751f\u6d3b\u4fdd\u8b77\u3067\u300c\u81ea\u7acb\u300d\u305b\u305a\u3001\u7d0d\u7a0e\u3067\u300c\u8ca2\u732e\u300d\u305b\u305a\u3001\u81ea\u56fd\u6587\u5316\u3092\u62bc\u4ed8\u3051\u300c\u5171\u751f\u300d\u305b\u305a\u3001\u65e5\u672c\u306e\u793e\u4f1a\u798f\u7949\u306b\u300c\u5bc4\u751f\u300d\u3057\u3066\u6a29\u5229\u3070\u304b\u308a\u4e3b\u5f35\u3059\u308b\u5916\u56fd\u4eba\u306f\u7956\u56fd\u3078\u5e30\u3063\u3066\uff01#\u3042\u308a\u304c\u3068\u3046\u81ea\u885b\u968a - #\u62c9\u81f4\u88ab\u5bb3\u8005\u5168\u54e1\u596a\u9084 #\u65e5\u97d3\u65ad\u4ea4 - #\u30b8\u30e3\u30d1\u30f3\u30d5\u30a1\u30fc\u30b9\u30c8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1752,"friends_count":1678,"listed_count":15,"created_at":"Sun - Sep 14 12:02:50 +0000 2014","favourites_count":9614,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19933,"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\/511126148093194240\/oJYSvWIW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511126148093194240\/oJYSvWIW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2809327862\/1464187937","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:26:11 +0000 2020","id":1235209932078628864,"id_str":"1235209932078628864","text":"\u3010\u6b66\u7530\u85ac\u54c1\u5de5\u696d\u30114\u65e5\n\u65b0\u578b\u30b3\u30ed\u30ca\u611f\u67d3\u75c7\u6cbb\u7642\u85ac\u3068\u3057\u3066\n\u8840\u3057\u3087\u3046\u5206\u753b\u88fd\u5264\u306e\u958b\u767a\u3092\u958b\u59cb\u3057\u305f\u3068\u767a\u8868\n\n\u300e\u56de\u5fa9\u3057\u305f\u60a3\u8005\u306e\u8840\u3057\u3087\u3046\u300f\u3092\u3082\u3068\u306b\n\u56de\u5fa9\u60a3\u8005\u306e\u4f53\u5185\u306b\u3042\u308b\u6297\u4f53\u304c\n\u65b0\u305f\u306a\u611f\u67d3\u8005\u306e\u514d\u75ab\u30b7\u30b9\u30c6\u30e0\u3092\u9ad8\u3081\u611f\u67d3\u3092\u9632\u3050\u53ef\u80fd\u6027\u304c\u3042\u308b\n\n\u307e\u305f\u65e2\u5b58\u306e\u88fd\u54c1\u2026 - https:\/\/t.co\/Z53YanHVFP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Z53YanHVFP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235209932078628864","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"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,"user":{"id":2264718120,"id_str":"2264718120","name":"Chieko - Nagayama","screen_name":"RibbonChieko","location":"\u65e5\u672c \u6771\u4eac","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45978,"friends_count":2106,"listed_count":428,"created_at":"Fri - Dec 27 18:05:38 +0000 2013","favourites_count":153110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32667,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562689794900504576\/X3Ga8YHc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562689794900504576\/X3Ga8YHc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2264718120\/1491070953","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":347,"favorite_count":925,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"is_quote_status":false,"retweet_count":347,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246688064786433,"id_str":"1235246688064786433","text":"RT - @RepMichaelWaltz: Congress should have been here last weekend to pass a #coronavirus - funding bill.\n\nBut here we are, with no bill to vot\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[75,87]}],"symbols":[],"user_mentions":[{"screen_name":"RepMichaelWaltz","name":"Rep. - Michael Waltz","id":1082416697380913152,"id_str":"1082416697380913152","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1902513444,"id_str":"1902513444","name":"Marlyce - Brooks","screen_name":"13valleygirl","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":818,"listed_count":0,"created_at":"Wed - Sep 25 02:21:28 +0000 2013","favourites_count":38585,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6015,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499341690180624384\/zwsHAkF9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499341690180624384\/zwsHAkF9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1902513444\/1407887153","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:28:32 +0000 2020","id":1235240723517255681,"id_str":"1235240723517255681","text":"Congress - should have been here last weekend to pass a #coronavirus funding bill.\n\nBut - here we are, with no bill to\u2026 https:\/\/t.co\/VV9vzn9IfS","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[54,66]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VV9vzn9IfS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235240723517255681","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1082416697380913152,"id_str":"1082416697380913152","name":"Rep. - Michael Waltz","screen_name":"RepMichaelWaltz","location":"","description":"Congressman - for #FL6 (Volusia, Flagler, Lake, St Johns Counties), Green Beret, National - Guard Lt. Col., former CEO, Author of \"Warrior Diplomat,\" Father.","url":"https:\/\/t.co\/QOB7UQmYz2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QOB7UQmYz2","expanded_url":"http:\/\/waltz.house.gov","display_url":"waltz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18308,"friends_count":511,"listed_count":224,"created_at":"Mon - Jan 07 23:20:25 +0000 2019","favourites_count":877,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":1976,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215019343739838464\/ZGNl7bHe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215019343739838464\/ZGNl7bHe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1082416697380913152\/1560377890","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235236383112998912,"quoted_status_id_str":"1235236383112998912","quoted_status":{"created_at":"Wed - Mar 04 16:11:17 +0000 2020","id":1235236383112998912,"id_str":"1235236383112998912","text":"Congress - should''ve already passed a funding bill to combat coronavirus. Period. But - Democrats are hellbent on sneak\u2026 https:\/\/t.co\/26hKMBMO4s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/26hKMBMO4s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235236383112998912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19739126,"id_str":"19739126","name":"Kevin - McCarthy","screen_name":"GOPLeader","location":"Bakersfield, CA","description":"Republican - Leader and Representative of California''s 23rd District in the House of Representatives.\nhttps:\/\/t.co\/ZqWsqD6L0T","url":"https:\/\/t.co\/eB1lud6Yi3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eB1lud6Yi3","expanded_url":"http:\/\/republicanleader.gov","display_url":"republicanleader.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZqWsqD6L0T","expanded_url":"https:\/\/www.instagram.com\/repkevinmccarthy\/","display_url":"instagram.com\/repkevinmccart\u2026","indices":[100,123]}]}},"protected":false,"followers_count":708094,"friends_count":1388,"listed_count":4807,"created_at":"Thu - Jan 29 22:28:48 +0000 2009","favourites_count":1829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12552,"lang":null,"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\/1144683452064833536\/fZbuxrtg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144683452064833536\/fZbuxrtg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19739126\/1582230846","profile_link_color":"0A2644","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"122C73","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12035,"favorite_count":31046,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":688,"favorite_count":1637,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235236383112998912,"quoted_status_id_str":"1235236383112998912","retweet_count":688,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246688014659586,"id_str":"1235246688014659586","text":"RT - @TomthunkitsMind: THE WARNING IN MY BOOK DETAILS WHY THIS NOVEL #CORONAVIRUS - WAS CREATED. THE POWER OF THE VIRUS IS HAVING SOME INTENDED\u2026","truncated":false,"entities":{"hashtags":[{"text":"CORONAVIRUS","indices":[67,79]}],"symbols":[],"user_mentions":[{"screen_name":"TomthunkitsMind","name":"Tomthunkit\u2122","id":289118612,"id_str":"289118612","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":838870250561105920,"id_str":"838870250561105920","name":"Rina - Ray","screen_name":"RinaRay56644337","location":"Houston,Texas","description":"I - am a born and raised Texan!!!! Never paid much attention to politics, but - now am totally interested!!!!! vote Blue, no matter who!!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5972,"friends_count":6055,"listed_count":5,"created_at":"Mon - Mar 06 21:53:47 +0000 2017","favourites_count":153367,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":242141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/839557398037590016\/OiToavWz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/839557398037590016\/OiToavWz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:48:14 +0000 2020","id":1235245681134235648,"id_str":"1235245681134235648","text":"THE - WARNING IN MY BOOK DETAILS WHY THIS NOVEL #CORONAVIRUS WAS CREATED. THE POWER - OF THE VIRUS IS HAVING SOME INTEN\u2026 https:\/\/t.co\/qbh8rmwxeC","truncated":true,"entities":{"hashtags":[{"text":"CORONAVIRUS","indices":[46,58]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qbh8rmwxeC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245681134235648","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":289118612,"id_str":"289118612","name":"Tomthunkit\u2122","screen_name":"TomthunkitsMind","location":"Atlanta, - GA","description":"Tomthunkit''s Mind Diner is open 24\/7. All-you-can-eat - smorgasbord of hand-picked deliciously sweet tweets for your political palate. - Donations Welcome.","url":"https:\/\/t.co\/QXUxZhjYl6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QXUxZhjYl6","expanded_url":"https:\/\/www.gofundme.com\/tomthunkit039s-mind-diner","display_url":"gofundme.com\/tomthunkit039s\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":68327,"friends_count":62876,"listed_count":1052,"created_at":"Thu - Apr 28 01:56:15 +0000 2011","favourites_count":21102,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2340911,"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\/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\/1071761767611670533\/vNTh69MD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1071761767611670533\/vNTh69MD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289118612\/1544363921","profile_link_color":"FF691F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687901413378,"id_str":"1235246687901413378","text":"RT - @brunoahre: LLEGO EL CORONAVIRUS A ARGENTINA, EL PRIMERO QUE MUERE ES GAY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brunoahre","name":"\u0299 - \u0280 \u1d1c \u0274 \u1d0f \ud83c\udd59","id":779095338422571008,"id_str":"779095338422571008","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1573591004,"id_str":"1573591004","name":"Sabru\ud83d\udc8b","screen_name":"SabriMosquera","location":"Buenos - Aires ","description":"Bostera\ud83d\udc99\ud83d\udc9b\ud83d\udc99 Sagitariana\u2650 - 28\/08\/16\ud83d\udc95","url":"https:\/\/t.co\/xs31XCGz8H","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xs31XCGz8H","expanded_url":"https:\/\/www.facebook.com\/sa.bri.773?ref=tn_tnmn","display_url":"facebook.com\/sa.bri.773?ref\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1516,"friends_count":1506,"listed_count":2,"created_at":"Sat - Jul 06 20:23:20 +0000 2013","favourites_count":12010,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38429,"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\/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\/1234924626784014337\/eQSlKFzW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234924626784014337\/eQSlKFzW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1573591004\/1583263948","profile_link_color":"9266CC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:58:12 +0000 2020","id":1234900899534905350,"id_str":"1234900899534905350","text":"LLEGO - EL CORONAVIRUS A ARGENTINA, EL PRIMERO QUE MUERE ES GAY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":779095338422571008,"id_str":"779095338422571008","name":"\u0299 - \u0280 \u1d1c \u0274 \u1d0f \ud83c\udd59","screen_name":"brunoahre","location":"el - 99% que ve esto, me sigue","description":"fumo porro twitteo cosas","url":"https:\/\/t.co\/xjBlC76NQw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xjBlC76NQw","expanded_url":"https:\/\/www.twitch.tv\/brunoahre_","display_url":"twitch.tv\/brunoahre_","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7890,"friends_count":688,"listed_count":75,"created_at":"Thu - Sep 22 23:09:38 +0000 2016","favourites_count":15605,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5602,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1178381297019998209\/wnPnU9WF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1178381297019998209\/wnPnU9WF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/779095338422571008\/1571766855","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4504,"favorite_count":28179,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":4504,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687783919617,"id_str":"1235246687783919617","text":"USA - is so strict on #coronavirus testing and treatments expect this to be a normal - all over the country as well. Ju\u2026 https:\/\/t.co\/Bz28R9JeYF","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[20,32]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Bz28R9JeYF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246687783919617","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":329249071,"id_str":"329249071","name":"Annabella - \u2764\ufe0f+\ud83d\ude80","screen_name":"DallasTechGirl","location":"M31","description":"Recovering - Cyborg | Research Nerd \ud83e\udd13| @goempowerwomen | \ud83d\udc8eDigital - Public Relations Specialist & Crafter of Content \ud83d\udc8e#Blockchain #AI - #FinTech #Robotics \ud83e\uddbe INFJ","url":"https:\/\/t.co\/azdkDAkVlG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/azdkDAkVlG","expanded_url":"http:\/\/annataylor.io","display_url":"annataylor.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4468,"friends_count":3342,"listed_count":160,"created_at":"Mon - Jul 04 19:25:31 +0000 2011","favourites_count":3361,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9348,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1A1A","profile_background_image_url":"http:\/\/abs.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\/1230423570649665538\/MPUUA-fe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230423570649665538\/MPUUA-fe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329249071\/1543352943","profile_link_color":"07D6A9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235009547758075905,"quoted_status_id_str":"1235009547758075905","quoted_status":{"created_at":"Wed - Mar 04 01:09:56 +0000 2020","id":1235009547758075905,"id_str":"1235009547758075905","text":"@aminatou - This happened in Flushing Queens late afternoon\n\nCoronavirus?\n\nhttps:\/\/t.co\/3RrQxZ7A6r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aminatou","name":"Aminatou - Sow","id":15204082,"id_str":"15204082","indices":[0,9]}],"urls":[],"media":[{"id":1234984401471184896,"id_str":"1234984401471184896","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234984401471184896\/pu\/img\/G2IJJ_STth2srtvA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234984401471184896\/pu\/img\/G2IJJ_STth2srtvA.jpg","url":"https:\/\/t.co\/3RrQxZ7A6r","display_url":"pic.twitter.com\/3RrQxZ7A6r","expanded_url":"https:\/\/twitter.com\/babkyb\/status\/1234984429140893696\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":317,"h":680,"resize":"fit"},"medium":{"w":448,"h":960,"resize":"fit"},"large":{"w":448,"h":960,"resize":"fit"}},"source_status_id":1234984429140893696,"source_status_id_str":"1234984429140893696","source_user_id":1138172230351953921,"source_user_id_str":"1138172230351953921"}]},"extended_entities":{"media":[{"id":1234984401471184896,"id_str":"1234984401471184896","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234984401471184896\/pu\/img\/G2IJJ_STth2srtvA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234984401471184896\/pu\/img\/G2IJJ_STth2srtvA.jpg","url":"https:\/\/t.co\/3RrQxZ7A6r","display_url":"pic.twitter.com\/3RrQxZ7A6r","expanded_url":"https:\/\/twitter.com\/babkyb\/status\/1234984429140893696\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":317,"h":680,"resize":"fit"},"medium":{"w":448,"h":960,"resize":"fit"},"large":{"w":448,"h":960,"resize":"fit"}},"source_status_id":1234984429140893696,"source_status_id_str":"1234984429140893696","source_user_id":1138172230351953921,"source_user_id_str":"1138172230351953921","video_info":{"aspect_ratio":[7,15],"duration_millis":7475,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234984401471184896\/pu\/vid\/448x960\/idHDKWIwKFV91C_U.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234984401471184896\/pu\/pl\/0nmlvy5oF7h0Pre2.m3u8?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234984401471184896\/pu\/vid\/320x684\/bxiDl25ARk7EBrTd.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234973141517996033,"in_reply_to_status_id_str":"1234973141517996033","in_reply_to_user_id":15204082,"in_reply_to_user_id_str":"15204082","in_reply_to_screen_name":"aminatou","user":{"id":1895019655,"id_str":"1895019655","name":"Pete","screen_name":"NYBackpacker","location":"New - Amsterdam","description":"20yrs in Capital Mkts, Progressive Democrat & AntiEstablishment. - Geraldine Ferraro VP campaign volunteer. Reside in NY14. Born & Raised NYCer. - Hummel Hummel","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":533,"friends_count":1505,"listed_count":12,"created_at":"Sun - Sep 22 20:25:15 +0000 2013","favourites_count":16437,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9888,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228750898232471552\/UFqsd1xz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228750898232471552\/UFqsd1xz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1895019655\/1490451758","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687704297473,"id_str":"1235246687704297473","text":"RT - @Telegraph: One of the cases, a member of staff at the European Defence Agency, - had returned from Italy https:\/\/t.co\/dOgocjlpNe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Telegraph","name":"The - Telegraph","id":16343974,"id_str":"16343974","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/dOgocjlpNe","expanded_url":"https:\/\/www.telegraph.co.uk\/news\/2020\/03\/04\/two-eu-staff-members-brussels-test-positive-coronavirus\/?utm_content=telegraph&utm_medium=Social&utm_campaign=Echobox&utm_source=Twitter#Echobox=1583337586","display_url":"telegraph.co.uk\/news\/2020\/03\/0\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":88114953,"id_str":"88114953","name":"Ted - Schneider","screen_name":"TedSchneider","location":"Canada","description":"Making - the journey count one day at a time.","url":"http:\/\/t.co\/KknDphyFYw","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/KknDphyFYw","expanded_url":"http:\/\/www.TedSchneider.ca","display_url":"TedSchneider.ca","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":505,"listed_count":6,"created_at":"Sat - Nov 07 04:49:11 +0000 2009","favourites_count":1899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20235,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429825075093594112\/VbjuhXK5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429825075093594112\/VbjuhXK5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88114953\/1420120658","profile_link_color":"0084B4","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:15:33 +0000 2020","id":1235237454724190209,"id_str":"1235237454724190209","text":"One - of the cases, a member of staff at the European Defence Agency, had returned - from Italy https:\/\/t.co\/dOgocjlpNe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dOgocjlpNe","expanded_url":"https:\/\/www.telegraph.co.uk\/news\/2020\/03\/04\/two-eu-staff-members-brussels-test-positive-coronavirus\/?utm_content=telegraph&utm_medium=Social&utm_campaign=Echobox&utm_source=Twitter#Echobox=1583337586","display_url":"telegraph.co.uk\/news\/2020\/03\/0\u2026","indices":[92,115]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":16343974,"id_str":"16343974","name":"The - Telegraph","screen_name":"Telegraph","location":"London, UK","description":"Think - ahead with the latest news, comment, analysis and video","url":"https:\/\/t.co\/ve1cMBKSfu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ve1cMBKSfu","expanded_url":"http:\/\/www.telegraph.co.uk\/?WT.mc_id=tw","display_url":"telegraph.co.uk\/?WT.mc_id=tw","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2811821,"friends_count":744,"listed_count":18187,"created_at":"Thu - Sep 18 06:50:54 +0000 2008","favourites_count":255,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":367828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"5F5653","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\/943090005723041792\/2cjxINlJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/943090005723041792\/2cjxINlJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16343974\/1582025066","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F4F4F0","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":16,"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687662243841,"id_str":"1235246687662243841","text":"RT - @weedthotss: Me at 3 am after smoking all night wondering if i\u2019m coughing - cuz I got coronavirus or if it\u2019s cuz I smoke too much weed htt\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"weedthotss","name":"Weed - Thoughts\ud83d\udcad\ud83c\udf41","id":818674852726996992,"id_str":"818674852726996992","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1499645174,"id_str":"1499645174","name":"J. - Santos","screen_name":"TrapLordFlaco","location":"Louisville, KY","description":"Instagram: - @traplordflaco","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":256,"friends_count":124,"listed_count":1,"created_at":"Mon - Jun 10 23:02:56 +0000 2013","favourites_count":11128,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20658,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218394978474479616\/ccfSdMbz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218394978474479616\/ccfSdMbz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1499645174\/1579322975","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:38:16 +0000 2020","id":1235243170591633408,"id_str":"1235243170591633408","text":"Me - at 3 am after smoking all night wondering if i\u2019m coughing cuz I got coronavirus - or if it\u2019s cuz I smoke too much\u2026 https:\/\/t.co\/W8ExiPKEgJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W8ExiPKEgJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243170591633408","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818674852726996992,"id_str":"818674852726996992","name":"Weed - Thoughts\ud83d\udcad\ud83c\udf41","screen_name":"weedthotss","location":"cloud - 9","description":"light one up, and scroll my page *by a stoner, for stoners*","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77809,"friends_count":23117,"listed_count":58,"created_at":"Tue - Jan 10 04:24:30 +0000 2017","favourites_count":5991,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":922,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191431318464126979\/n3tDbqYT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191431318464126979\/n3tDbqYT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818674852726996992\/1570483044","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":463,"favorite_count":1652,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":463,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687611949057,"id_str":"1235246687611949057","text":"RT - @galeforcerob: People with flu: I feel shit. Just wanna stay in bed and do - nothing\n\nPeople with Coronavirus: I feel shit. Just wanna go\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"galeforcerob","name":"Rob - Gale","id":190318791,"id_str":"190318791","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240781958,"id_str":"240781958","name":"Nicolas - the Serious","screen_name":"nicolasjspencer","location":"Pennsylvania, USA","description":"Father, - Freelancer, Gamer,\nUniversal Do-er","url":"https:\/\/t.co\/NyB1s7SOgi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NyB1s7SOgi","expanded_url":"https:\/\/www.youtube.com\/channel\/UCj3hjI5Ujcu_nbAvi7tvWIA","display_url":"youtube.com\/channel\/UCj3hj\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":311,"listed_count":0,"created_at":"Thu - Jan 20 18:45:27 +0000 2011","favourites_count":3331,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2116,"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\/1118347124503138304\/bRhAc98E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118347124503138304\/bRhAc98E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240781958\/1571077624","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:52:09 +0000 2020","id":1234491689395531776,"id_str":"1234491689395531776","text":"People - with flu: I feel shit. Just wanna stay in bed and do nothing\n\nPeople with - Coronavirus: I feel shit. Just wan\u2026 https:\/\/t.co\/j0KqtSH09V","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j0KqtSH09V","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234491689395531776","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":190318791,"id_str":"190318791","name":"Rob - Gale","screen_name":"galeforcerob","location":"Dublin City, Ireland","description":"usually - found shuffling around comments sections along with the other hogs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":621,"friends_count":347,"listed_count":7,"created_at":"Mon - Sep 13 17:07:38 +0000 2010","favourites_count":7726,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7496,"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\/1148146053587378176\/NxWO_SkS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148146053587378176\/NxWO_SkS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/190318791\/1473948787","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72612,"favorite_count":415705,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":72612,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687582646272,"id_str":"1235246687582646272","text":"RT - @C33_14O: El coronavirus vino en avi\u00f3n, se puede decir que es una enfermedad - pasajera. https:\/\/t.co\/pxQJAu2sMB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"C33_14O","name":"C3\u03c0O - \ud83d\udc9a","id":1455719492,"id_str":"1455719492","indices":[3,11]}],"urls":[],"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}},"source_status_id":1234981828529774592,"source_status_id_str":"1234981828529774592","source_user_id":1455719492,"source_user_id_str":"1455719492"}]},"extended_entities":{"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}},"source_status_id":1234981828529774592,"source_status_id_str":"1234981828529774592","source_user_id":1455719492,"source_user_id_str":"1455719492"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293274752,"id_str":"293274752","name":"El - Ru","screen_name":"elrubmont","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1368,"friends_count":2488,"listed_count":11,"created_at":"Thu - May 05 02:05:13 +0000 2011","favourites_count":1274,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21257,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215317734126444545\/n0JGFh8B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215317734126444545\/n0JGFh8B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293274752\/1416230276","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:19:47 +0000 2020","id":1234981828529774592,"id_str":"1234981828529774592","text":"El - coronavirus vino en avi\u00f3n, se puede decir que es una enfermedad pasajera. - https:\/\/t.co\/pxQJAu2sMB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234981786247102464,"id_str":"1234981786247102464","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOJZDFWAAA4AOl.jpg","url":"https:\/\/t.co\/pxQJAu2sMB","display_url":"pic.twitter.com\/pxQJAu2sMB","expanded_url":"https:\/\/twitter.com\/C33_14O\/status\/1234981828529774592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":798,"h":440,"resize":"fit"},"large":{"w":798,"h":440,"resize":"fit"},"small":{"w":680,"h":375,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1455719492,"id_str":"1455719492","name":"C3\u03c0O - \ud83d\udc9a","screen_name":"C33_14O","location":"","description":"Un tripio - cualquiera.","url":"https:\/\/t.co\/lZYBEh23Av","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lZYBEh23Av","expanded_url":"http:\/\/es.favstar.fm\/users\/C33_14O","display_url":"es.favstar.fm\/users\/C33_14O","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10221,"friends_count":496,"listed_count":155,"created_at":"Sat - May 25 01:36:10 +0000 2013","favourites_count":30108,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33088,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/835843286568927236\/6AQ5W5lo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/835843286568927236\/6AQ5W5lo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1455719492\/1390756129","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3926,"favorite_count":31849,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":3926,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687502950401,"id_str":"1235246687502950401","text":"Iran: - 23 Lawmakers Have Tested Positive for Chinese Coronavirus https:\/\/t.co\/C88joU7jji - via @BreitbartNews","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BreitbartNews","name":"Breitbart - News","id":457984599,"id_str":"457984599","indices":[92,106]}],"urls":[{"url":"https:\/\/t.co\/C88joU7jji","expanded_url":"http:\/\/bit.ly\/39gN0OW","display_url":"bit.ly\/39gN0OW","indices":[64,87]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":119991364,"id_str":"119991364","name":"The - Storm is Here #Trump2020","screen_name":"Hoya97","location":"Marietta, GA","description":"Christian, - conservative #TheGreatAwakening #WWG1WGA #MAGA #KAG #DrainTheSwamp NO LISTS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11104,"friends_count":12194,"listed_count":2,"created_at":"Fri - Mar 05 04:39:09 +0000 2010","favourites_count":176106,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":230696,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981985020649799680\/ruX8TVbB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981985020649799680\/ruX8TVbB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119991364\/1522960182","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687498559489,"id_str":"1235246687498559489","text":"RT - @cnni: Iran announced Tuesday that it will temporarily release more than 54,000 - prisoners in an attempt to prevent the spread of coronav\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cnni","name":"CNN - International","id":2097571,"id_str":"2097571","indices":[3,8]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196135818,"id_str":"196135818","name":"Kape","screen_name":"xxixicv","location":"Republic - of the Philippines","description":"\u2022Life without liberty is like a body - without spirit.\u2022 \n\nSocial-media enthusiast \ud83d\udcbb| Patriot - \ud83c\uddf5\ud83c\udded |\u2650Sagittarian \u2615|Coffeeholic |\ud83e\udd56Gastronome - | \ud83c\udfbcMelophile","url":"https:\/\/t.co\/xXiOvXg0Je","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xXiOvXg0Je","expanded_url":"http:\/\/xxixicv.simplesite.com\/","display_url":"xxixicv.simplesite.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":466,"listed_count":9,"created_at":"Tue - Sep 28 12:29:28 +0000 2010","favourites_count":3606,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5578,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BD17AF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621726001517604864\/R0Eaoh5h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621726001517604864\/R0Eaoh5h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196135818\/1583076931","profile_link_color":"E81C4F","profile_sidebar_border_color":"E609A0","profile_sidebar_fill_color":"522717","profile_text_color":"EB1A12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:35:59 +0000 2020","id":1235242597712572417,"id_str":"1235242597712572417","text":"Iran - announced Tuesday that it will temporarily release more than 54,000 prisoners - in an attempt to prevent the spr\u2026 https:\/\/t.co\/vBhFu8PpCX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vBhFu8PpCX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242597712572417","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2097571,"id_str":"2097571","name":"CNN - International","screen_name":"cnni","location":"Everywhere","description":"Breaking - news from around the world, plus business, style, travel, sport and entertainment. - We #gothere.","url":"http:\/\/t.co\/kdkv08KSgi","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/kdkv08KSgi","expanded_url":"http:\/\/cnn.com\/international","display_url":"cnn.com\/international","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":9757648,"friends_count":370,"listed_count":40581,"created_at":"Sat - Mar 24 10:48:14 +0000 2007","favourites_count":135,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":220775,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3D4544","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/926050400062631936\/Rvynw19f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/926050400062631936\/Rvynw19f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2097571\/1497863018","profile_link_color":"004287","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EEEEEE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107,"favorite_count":189,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":107,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687444180993,"id_str":"1235246687444180993","text":"RT - @ROSNALJU: Coronavirus or not \n\nYou shouldn\u2019t have to be told to wash - your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ROSNALJU","name":"RO$NA","id":224805342,"id_str":"224805342","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":193728530,"id_str":"193728530","name":"hannah","screen_name":"hannahhrose__","location":"sheffield","description":"20 - \/\/ \/\u02c8n\u0252l\u026ad\u0292\/ \/\/ @Josef____ \/\/","url":"https:\/\/t.co\/Am3mrAMzms","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Am3mrAMzms","expanded_url":"http:\/\/instagram.com\/joannahstyle\/","display_url":"instagram.com\/joannahstyle\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":440,"friends_count":470,"listed_count":2,"created_at":"Wed - Sep 22 15:08:06 +0000 2010","favourites_count":9708,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11595,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152663861801172992\/VhBDLFF7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152663861801172992\/VhBDLFF7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193728530\/1497313086","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 19:48:03 +0000 2020","id":1234566154523275265,"id_str":"1234566154523275265","text":"Coronavirus - or not \n\nYou shouldn\u2019t have to be told to wash your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224805342,"id_str":"224805342","name":"RO$NA","screen_name":"ROSNALJU","location":"SLC","description":"IG - @ROSNALJU","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2460,"friends_count":585,"listed_count":12,"created_at":"Thu - Dec 09 22:32:46 +0000 2010","favourites_count":17407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"40030B","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\/1227249944861401088\/100hmgPB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227249944861401088\/100hmgPB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224805342\/1510187001","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"959FA6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86347,"favorite_count":208738,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":86347,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687423270919,"id_str":"1235246687423270919","text":"RT - @mimmamax: Coronavirus, la prova: \"In Italia settimane prima del paziente - 1\" https:\/\/t.co\/fMqh7v1jup","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mimmamax","name":"mimma - max","id":1065081188,"id_str":"1065081188","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/fMqh7v1jup","expanded_url":"https:\/\/notizie.virgilio.it\/coronavirus-italia-settimane-prima-paziente-1-1253566","display_url":"notizie.virgilio.it\/coronavirus-it\u2026","indices":[80,103]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":424084271,"id_str":"424084271","name":"L''Italia - Vera \ud83c\uddee\ud83c\uddf9","screen_name":"SoniaLaVera","location":"","description":"Se - ci viene tolta la libert\u00e0 di parola, noi, muti e silenziosi, saremo trascinati - come pecore al macello. (George Washington)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11214,"friends_count":11552,"listed_count":39,"created_at":"Tue - Nov 29 09:17:04 +0000 2011","favourites_count":614587,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":513994,"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\/1195775427761049600\/-JE7vHzD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195775427761049600\/-JE7vHzD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/424084271\/1580145020","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:37:08 +0000 2020","id":1235242887341838339,"id_str":"1235242887341838339","text":"Coronavirus, - la prova: \"In Italia settimane prima del paziente 1\" https:\/\/t.co\/fMqh7v1jup","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fMqh7v1jup","expanded_url":"https:\/\/notizie.virgilio.it\/coronavirus-italia-settimane-prima-paziente-1-1253566","display_url":"notizie.virgilio.it\/coronavirus-it\u2026","indices":[66,89]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":1065081188,"id_str":"1065081188","name":"mimma - max","screen_name":"mimmamax","location":"","description":"Il mare nel cassetto\ud83d\udc9aLombardia - - Italia \ud83c\uddee\ud83c\uddf9 -Anticomunista\n#VogliamoVotare","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2567,"friends_count":2049,"listed_count":32,"created_at":"Sun - Jan 06 08:01:15 +0000 2013","favourites_count":14515,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":53217,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007046219472961536\/Nf4GbXDi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007046219472961536\/Nf4GbXDi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1065081188\/1578487435","profile_link_color":"19CF86","profile_sidebar_border_color":"FFFFFF","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"},"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":"it"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687356145664,"id_str":"1235246687356145664","text":"RT - @ChinaInFocusNTD: \"Doggy. Food is coming. Do you like eggs?\" a little boy - asked.\n\nResidents in #Guangzhou feed their neighbor''s dog dail\u2026","truncated":false,"entities":{"hashtags":[{"text":"Guangzhou","indices":[98,108]}],"symbols":[],"user_mentions":[{"screen_name":"ChinaInFocusNTD","name":"China - in Focus - NTD","id":1232414456589750272,"id_str":"1232414456589750272","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2593283635,"id_str":"2593283635","name":"Sandra - Mosna","screen_name":"SandraMosna","location":"Germany","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":349,"listed_count":1,"created_at":"Sat - Jun 28 15:31:32 +0000 2014","favourites_count":6931,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6115,"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\/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\/1058489789211725825\/6d5GYjwi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1058489789211725825\/6d5GYjwi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2593283635\/1541198624","profile_link_color":"0099CC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 02:29:13 +0000 2020","id":1235029500942925825,"id_str":"1235029500942925825","text":"\"Doggy. - Food is coming. Do you like eggs?\" a little boy asked.\n\nResidents in #Guangzhou - feed their neighbor''s dog d\u2026 https:\/\/t.co\/e4oFkI82Rp","truncated":true,"entities":{"hashtags":[{"text":"Guangzhou","indices":[77,87]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e4oFkI82Rp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235029500942925825","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1232414456589750272,"id_str":"1232414456589750272","name":"China - in Focus - NTD","screen_name":"ChinaInFocusNTD","location":"New York, NY","description":"Fast, - compelling, first-hand news from China. Watch on Youtube here: https:\/\/t.co\/bXFNva9wks","url":"https:\/\/t.co\/iwfDfS13zr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iwfDfS13zr","expanded_url":"https:\/\/www.ntd.com\/china-in-focus","display_url":"ntd.com\/china-in-focus","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/bXFNva9wks","expanded_url":"https:\/\/www.youtube.com\/channel\/UCBOqkAGTtzZVmKvY4SwdZ2g","display_url":"youtube.com\/channel\/UCBOqk\u2026","indices":[69,92]}]}},"protected":false,"followers_count":2309,"friends_count":5,"listed_count":35,"created_at":"Tue - Feb 25 21:18:29 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232415773559328770\/1vjld12x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232415773559328770\/1vjld12x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232414456589750272\/1582735285","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":185,"favorite_count":532,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":185,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687309815809,"id_str":"1235246687309815809","text":"What - about the students who have to give their boards? Them sitting in a room? - You never know who is sick and who i\u2026 https:\/\/t.co\/wqzuzJDqqa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wqzuzJDqqa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246687309815809","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1216645488180465665,"id_str":"1216645488180465665","name":"fann","screen_name":"fann66125727","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":5,"listed_count":0,"created_at":"Mon - Jan 13 08:57:49 +0000 2020","favourites_count":52,"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":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687280607234,"id_str":"1235246687280607234","text":"RT - @RegistroCivilec: #ActivadosPorLaSalud | \u00bfQu\u00e9 medidas hay que tomar - frente al #COVID19 o coronavirus?\n\nInf\u00f3rmate aqu\u00ed sobre todo lo - que\u2026","truncated":false,"entities":{"hashtags":[{"text":"ActivadosPorLaSalud","indices":[21,41]},{"text":"COVID19","indices":[81,89]}],"symbols":[],"user_mentions":[{"screen_name":"RegistroCivilec","name":"Registro - Civil","id":173925293,"id_str":"173925293","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1120272744,"id_str":"1120272744","name":"Diego - Cabezas","screen_name":"diegocabezasl","location":"","description":"Amante - de las motocicletas y las artes marciales. Orgulloso de mi patria, solidario - y leal. Representante de la DIGERCIC en la Zona 6. | Servir a los dem\u00e1s!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1885,"friends_count":1046,"listed_count":11,"created_at":"Fri - Jan 25 21:15:36 +0000 2013","favourites_count":14068,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52609,"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\/1228458701796859905\/8jIpLe67_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228458701796859905\/8jIpLe67_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1120272744\/1578346636","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:42:06 +0000 2020","id":1234896848957181953,"id_str":"1234896848957181953","text":"#ActivadosPorLaSalud - | \u00bfQu\u00e9 medidas hay que tomar frente al #COVID19 o coronavirus?\n\nInf\u00f3rmate - aqu\u00ed sobre todo lo q\u2026 https:\/\/t.co\/ISLcaQByV3","truncated":true,"entities":{"hashtags":[{"text":"ActivadosPorLaSalud","indices":[0,20]},{"text":"COVID19","indices":[60,68]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ISLcaQByV3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234896848957181953","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173925293,"id_str":"173925293","name":"Registro - Civil","screen_name":"RegistroCivilec","location":"Ecuador","description":"Cuenta - oficial de Twitter del Registro Civil, Identificaci\u00f3n y Cedulaci\u00f3n. - Horario de atenci\u00f3n: 08:00 a 17:00 \ud83c\uddea\ud83c\udde8 Director - General: @TaianoVicente2","url":"https:\/\/t.co\/DP1RJKMWXO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DP1RJKMWXO","expanded_url":"http:\/\/www.registrocivil.gob.ec","display_url":"registrocivil.gob.ec","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":127731,"friends_count":1329,"listed_count":248,"created_at":"Mon - Aug 02 18:07:16 +0000 2010","favourites_count":15451,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40080,"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\/1214216174403121153\/0kpbZ5bl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214216174403121153\/0kpbZ5bl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173925293\/1580260842","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"},"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":"es"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687259680770,"id_str":"1235246687259680770","text":"RT - @Juampi1522: La reacci\u00f3n de la poblaci\u00f3n ante la llegada del coronavirus:\n\n\ud83c\udde8\ud83c\uddf3 - Cuarentena\n\ud83c\uddeb\ud83c\uddf7 Usen barbijos\n\ud83c\uddee\ud83c\uddf9 - Lavens\u00e9 siempre las manos\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Juampi1522","name":"Juampi","id":1066898109295484928,"id_str":"1066898109295484928","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":990124387,"id_str":"990124387","name":"Lucas - M","screen_name":"LucasMont97_","location":"Corrientes-Argentina","description":"Estudiante - de medicina UNNE","url":"https:\/\/t.co\/eMruQA62dX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eMruQA62dX","expanded_url":"https:\/\/www.instagram.com\/lucasmontejano\/?hl=es-la","display_url":"instagram.com\/lucasmontejano\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":263,"friends_count":402,"listed_count":0,"created_at":"Wed - Dec 05 03:41:26 +0000 2012","favourites_count":1838,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2119,"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\/1206396728267681792\/v8pOc2yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206396728267681792\/v8pOc2yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/990124387\/1567179189","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 19:16:24 +0000 2020","id":1234920578525605891,"id_str":"1234920578525605891","text":"La - reacci\u00f3n de la poblaci\u00f3n ante la llegada del coronavirus:\n\n\ud83c\udde8\ud83c\uddf3 - Cuarentena\n\ud83c\uddeb\ud83c\uddf7 Usen barbijos\n\ud83c\uddee\ud83c\uddf9 - Lavens\u00e9 siempre las\u2026 https:\/\/t.co\/4ugXnv2bJh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4ugXnv2bJh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234920578525605891","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066898109295484928,"id_str":"1066898109295484928","name":"Juampi","screen_name":"Juampi1522","location":"Buenos - Aires, Argentina","description":"No tengo Instagram. Tampoco Facebook.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":277,"friends_count":354,"listed_count":1,"created_at":"Mon - Nov 26 03:35:06 +0000 2018","favourites_count":17017,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14745,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234976453038682122\/8GC3zLeF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234976453038682122\/8GC3zLeF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1066898109295484928\/1576284709","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9849,"favorite_count":55693,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":9849,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687200792581,"id_str":"1235246687200792581","text":"RT - @atrupar: Trump on coronavirus testing: \"The Obama administration made a - decision on testing that turned out to be very detrimental to w\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"atrupar","name":"Aaron - Rupar","id":288277167,"id_str":"288277167","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":827043384518856707,"id_str":"827043384518856707","name":"\ud83d\udca7Jude","screen_name":"Judetomyfriends","location":"Gold - Coast, Queensland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1516,"friends_count":579,"listed_count":12,"created_at":"Thu - Feb 02 06:38:03 +0000 2017","favourites_count":174431,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":127476,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1190592184216686594\/Xx-_wdQg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190592184216686594\/Xx-_wdQg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/827043384518856707\/1572697846","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:41:10 +0000 2020","id":1235243899674939392,"id_str":"1235243899674939392","text":"Trump - on coronavirus testing: \"The Obama administration made a decision on testing - that turned out to be very detri\u2026 https:\/\/t.co\/dC3optnUmF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dC3optnUmF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243899674939392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":288277167,"id_str":"288277167","name":"Aaron - Rupar","screen_name":"atrupar","location":"","description":"journalist @voxdotcom","url":"https:\/\/t.co\/RnqX4a5AQt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RnqX4a5AQt","expanded_url":"http:\/\/vox.com","display_url":"vox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247705,"friends_count":999,"listed_count":2854,"created_at":"Tue - Apr 26 15:22:47 +0000 2011","favourites_count":96174,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":70554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288277167\/1469538346","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3556,"favorite_count":12531,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3556,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687108681729,"id_str":"1235246687108681729","text":"RT - @taexphoenix: fuera de joda, informense un poco mas sobre el coronavirus: - el mayor grupo de riesgo son las personas mayores de 70 y pers\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"taexphoenix","name":"belencita\u2077","id":1178976920,"id_str":"1178976920","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1422007140,"id_str":"1422007140","name":"carli","screen_name":"carli_monteros","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":226,"friends_count":228,"listed_count":1,"created_at":"Sun - May 12 02:07:14 +0000 2013","favourites_count":7464,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8059,"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\/760135490569924609\/yr8l7hEA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/760135490569924609\/yr8l7hEA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1422007140\/1476053532","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:41:26 +0000 2020","id":1234911779211350016,"id_str":"1234911779211350016","text":"fuera - de joda, informense un poco mas sobre el coronavirus: el mayor grupo de riesgo - son las personas mayores de 70\u2026 https:\/\/t.co\/hyFYLn5UKO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hyFYLn5UKO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234911779211350016","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1178976920,"id_str":"1178976920","name":"belencita\u2077","screen_name":"taexphoenix","location":"*:\uff65\uff9f - feminist ","description":"por mi se pueden ir todos a la mierda. \u2727\u02d6\u00b0 \n\nIt''s - a beautiful day to destroy patriarchy. \u2640\ufe0f\n\n\n *:\uff65\uff9f\u2727*\uff65\uff9f - fan account.","url":"https:\/\/t.co\/OeLt0cERBF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OeLt0cERBF","expanded_url":"https:\/\/curiouscat.me\/taexphoenix","display_url":"curiouscat.me\/taexphoenix","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11699,"friends_count":5238,"listed_count":80,"created_at":"Thu - Feb 14 12:56:43 +0000 2013","favourites_count":34717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":95993,"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\/1233404351776993282\/_1PWasan_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233404351776993282\/_1PWasan_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1178976920\/1582901487","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6810,"favorite_count":27353,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":6810,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246687003619328,"id_str":"1235246687003619328","text":"RT - @RepHartzler: Congress should NOT be playing politics with #coronavirus funding - bills. This is not the time to fill them up with politic\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[62,74]}],"symbols":[],"user_mentions":[{"screen_name":"RepHartzler","name":"Rep. - Vicky Hartzler","id":237763317,"id_str":"237763317","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348796164,"id_str":"348796164","name":"Ann - Stokes","screen_name":"AnnStokes55","location":"North Carolina","description":"Jesus - is Lord! Politically awake Gramee! #CruzCrew #MakeDCListen #FreedomWorks #HeritageSentinel - #WalkAway #Blexit #GOA #MAGA #Jexodus Newly Married!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5834,"friends_count":4233,"listed_count":57,"created_at":"Fri - Aug 05 00:58:00 +0000 2011","favourites_count":73551,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":121140,"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\/1191785057234628608\/DKCpW3hK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191785057234628608\/DKCpW3hK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348796164\/1555367157","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:39:22 +0000 2020","id":1235243449793814533,"id_str":"1235243449793814533","text":"Congress - should NOT be playing politics with #coronavirus funding bills. This is not - the time to fill them up with\u2026 https:\/\/t.co\/yvL2LYxBEU","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[45,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yvL2LYxBEU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243449793814533","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237763317,"id_str":"237763317","name":"Rep. - Vicky Hartzler","screen_name":"RepHartzler","location":"Harrisonville, Missouri","description":"I - serve the hardworking Missourians of #MO4. Working to reduce big govt. burden - & unleash American spirit. On Armed Services and Agriculture Committees.","url":"http:\/\/t.co\/67BpQ5eROP","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/67BpQ5eROP","expanded_url":"http:\/\/hartzler.house.gov","display_url":"hartzler.house.gov","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":30625,"friends_count":735,"listed_count":1132,"created_at":"Thu - Jan 13 15:38:52 +0000 2011","favourites_count":730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":7346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D3F6E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232355837269639168\/L49v__7v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232355837269639168\/L49v__7v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237763317\/1435159166","profile_link_color":"930D12","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235236383112998912,"quoted_status_id_str":"1235236383112998912","quoted_status":{"created_at":"Wed - Mar 04 16:11:17 +0000 2020","id":1235236383112998912,"id_str":"1235236383112998912","text":"Congress - should''ve already passed a funding bill to combat coronavirus. Period. But - Democrats are hellbent on sneak\u2026 https:\/\/t.co\/26hKMBMO4s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/26hKMBMO4s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235236383112998912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19739126,"id_str":"19739126","name":"Kevin - McCarthy","screen_name":"GOPLeader","location":"Bakersfield, CA","description":"Republican - Leader and Representative of California''s 23rd District in the House of Representatives.\nhttps:\/\/t.co\/ZqWsqD6L0T","url":"https:\/\/t.co\/eB1lud6Yi3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eB1lud6Yi3","expanded_url":"http:\/\/republicanleader.gov","display_url":"republicanleader.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZqWsqD6L0T","expanded_url":"https:\/\/www.instagram.com\/repkevinmccarthy\/","display_url":"instagram.com\/repkevinmccart\u2026","indices":[100,123]}]}},"protected":false,"followers_count":708094,"friends_count":1388,"listed_count":4807,"created_at":"Thu - Jan 29 22:28:48 +0000 2009","favourites_count":1829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12552,"lang":null,"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\/1144683452064833536\/fZbuxrtg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144683452064833536\/fZbuxrtg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19739126\/1582230846","profile_link_color":"0A2644","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"122C73","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12035,"favorite_count":31046,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":261,"favorite_count":795,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235236383112998912,"quoted_status_id_str":"1235236383112998912","retweet_count":261,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686978613248,"id_str":"1235246686978613248","text":"RT - @FroilLannister: Una enfermera que no cumpli\u00f3 con los protocolos de seguridad - del \u00c9bola y se infect\u00f3 y ya ped\u00edan la dimisi\u00f3n hasta del - P\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FroilLannister","name":"Froil\u00e1n - I de Espa\u00f1a \ud83c\uddea\ud83c\uddf8","id":60855010,"id_str":"60855010","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2740752823,"id_str":"2740752823","name":"anagonmo","screen_name":"anagonmorales","location":"","description":"Abogada - y madre. Lo mismo te demando que te hago una una tarta de chocolate, seg\u00fan - toque.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":343,"listed_count":0,"created_at":"Sun - Aug 17 23:14:01 +0000 2014","favourites_count":3815,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1088,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1153340362351632384\/tcJmLgma_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1153340362351632384\/tcJmLgma_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2740752823\/1563812533","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 20:24:03 +0000 2020","id":1234937603109117952,"id_str":"1234937603109117952","text":"Una - enfermera que no cumpli\u00f3 con los protocolos de seguridad del \u00c9bola - y se infect\u00f3 y ya ped\u00edan la dimisi\u00f3n hasta d\u2026 https:\/\/t.co\/isYt3uxIAl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/isYt3uxIAl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234937603109117952","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":60855010,"id_str":"60855010","name":"Froil\u00e1n - I de Espa\u00f1a \ud83c\uddea\ud83c\uddf8","screen_name":"FroilLannister","location":"Espa\u00f1a","description":"La - mano dura de la monarqu\u00eda. En el juego de tronos de Espa\u00f1a, s\u00f3lo - se puede ser Froil\u00e1n o morir. Parodia. \u00bfno? reyfroilani@gmail.com","url":"https:\/\/t.co\/zYkl1cP2Q6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zYkl1cP2Q6","expanded_url":"https:\/\/www.instagram.com\/froilan_rey_\/","display_url":"instagram.com\/froilan_rey_\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52562,"friends_count":408,"listed_count":312,"created_at":"Tue - Jul 28 08:56:48 +0000 2009","favourites_count":66178,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26341,"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\/1232408758996946946\/Pko_sS1i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232408758996946946\/Pko_sS1i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60855010\/1423816689","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1654,"favorite_count":3444,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1654,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686978453507,"id_str":"1235246686978453507","text":"RT - @ANI: Union Health Minister Harsh Vardhan: From now on, all flights and passengers - will be part of universal screening, not just the 12\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ANI","name":"ANI","id":355989081,"id_str":"355989081","indices":[3,7]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301439918,"id_str":"3301439918","name":"Priyanka - Sharma \u262e\ufe0f\ud83c\udf3b","screen_name":"journo_priyanka","location":"New - Delhi, India","description":"Correspondent @ANI | Covering ministry of health - | Ex- @mail_today, @thedailypioneer | Tweets are personal | Hails from Sultanpur, - Uttar Pradesh","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1356,"friends_count":221,"listed_count":13,"created_at":"Thu - Jul 30 11:13:43 +0000 2015","favourites_count":3126,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3785,"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\/964187689124880385\/WFTSGxLV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/964187689124880385\/WFTSGxLV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301439918\/1464793327","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 07:18:10 +0000 2020","id":1235102219168403457,"id_str":"1235102219168403457","text":"Union - Health Minister Harsh Vardhan: From now on, all flights and passengers will - be part of universal screening, n\u2026 https:\/\/t.co\/xXhNHcru82","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xXhNHcru82","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235102219168403457","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":355989081,"id_str":"355989081","name":"ANI","screen_name":"ANI","location":"India","description":"Asian - News International. Multi-media news agency, content for information platforms: - TV, Internet, broadband, newspapers, mobiles https:\/\/t.co\/PjGRhL4qvg","url":"http:\/\/t.co\/sFNGg4bASa","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/sFNGg4bASa","expanded_url":"http:\/\/www.aninews.in","display_url":"aninews.in","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/PjGRhL4qvg","expanded_url":"http:\/\/facebook.com\/ANINEWS.IN","display_url":"facebook.com\/ANINEWS.IN","indices":[131,154]}]}},"protected":false,"followers_count":3457844,"friends_count":0,"listed_count":4400,"created_at":"Tue - Aug 16 05:23:41 +0000 2011","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":382669,"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\/1497864299\/ani_mic_logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497864299\/ani_mic_logo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/355989081\/1575463637","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":114,"favorite_count":411,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":114,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686953443329,"id_str":"1235246686953443329","text":"RT - @remremxox: I\u2019m honestly tired of hearing about the coronavirus. I\u2019m - not overreacting nor underreacting but all I know is the media love\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"remremxox","name":"r - e m","id":874077310076338176,"id_str":"874077310076338176","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1155528382421065730,"id_str":"1155528382421065730","name":"Hannah\ud83e\udd40","screen_name":"hannahcriner","location":"","description":"20\/Wife\/Mama - to be \u2665\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":126,"listed_count":0,"created_at":"Sun - Jul 28 17:20:09 +0000 2019","favourites_count":1654,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3809,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225127175323439104\/qBnHPf0a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225127175323439104\/qBnHPf0a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1155528382421065730\/1583390767","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:41:38 +0000 2020","id":1235244020202262529,"id_str":"1235244020202262529","text":"I\u2019m - honestly tired of hearing about the coronavirus. I\u2019m not overreacting - nor underreacting but all I know is the m\u2026 https:\/\/t.co\/nnnafsZF2p","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nnnafsZF2p","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235244020202262529","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874077310076338176,"id_str":"874077310076338176","name":"r - e m","screen_name":"remremxox","location":"","description":"SoCal \u270c\ud83c\udffb","url":"https:\/\/t.co\/LdDAl61O0q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LdDAl61O0q","expanded_url":"http:\/\/www.instagram.com\/remigalcik","display_url":"instagram.com\/remigalcik","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1889,"friends_count":1174,"listed_count":3,"created_at":"Mon - Jun 12 01:34:05 +0000 2017","favourites_count":27360,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12801,"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\/1222299262383349760\/Kwk-mKF2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222299262383349760\/Kwk-mKF2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874077310076338176\/1580253923","profile_link_color":"8D1C66","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":269,"favorite_count":964,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":269,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686911500289,"id_str":"1235246686911500289","text":"RT - @_taniux: Mi sistema inmun\u00f3logico despu\u00e9s de comer jengibre\n (\\__\/) - \n\u2002 \u2002\u2800 \u2002 (\u2022\u3145\u2022) \n\u3000\uff3f\u30ce - \u30fd \u30ce\uff3c __ \n \/\u3000`\/ \u2312\uff39\u2312 \uff39\u3000\u30fd\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_taniux","name":"\ud83c\udf3b\u270c\ud83c\udffc","id":70886355,"id_str":"70886355","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":789215333349466116,"id_str":"789215333349466116","name":"Mauricio - Baquero B.","screen_name":"MauBaqueroB","location":"","description":"Por el - pa\u00eds que siempre quise . . .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":184,"friends_count":255,"listed_count":0,"created_at":"Thu - Oct 20 21:22:53 +0000 2016","favourites_count":24223,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27448,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/906287004203266048\/AM6EGWer_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/906287004203266048\/AM6EGWer_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/789215333349466116\/1506000979","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:50:48 +0000 2020","id":1235201025889497091,"id_str":"1235201025889497091","text":"Mi - sistema inmun\u00f3logico despu\u00e9s de comer jengibre\n (\\__\/) - \n\u2002 \u2002\u2800 \u2002 (\u2022\u3145\u2022) \n\u3000\uff3f\u30ce - \u30fd \u30ce\uff3c __ \n \/\u2026 https:\/\/t.co\/nxlgWQbFrW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nxlgWQbFrW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235201025889497091","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70886355,"id_str":"70886355","name":"\ud83c\udf3b\u270c\ud83c\udffc","screen_name":"_taniux","location":"Ecuador, - pa\u00eds amaz\u00f3nico.","description":"All\u00e1 dios que ser\u00e1 divino, - yo me muero como viv\u00ed.\nDesaprendiendo.","url":"https:\/\/t.co\/yVoGd9ggEk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yVoGd9ggEk","expanded_url":"https:\/\/www.instagram.com\/_taniux\/","display_url":"instagram.com\/_taniux\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4895,"friends_count":1812,"listed_count":20,"created_at":"Wed - Sep 02 04:55:29 +0000 2009","favourites_count":69137,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":120986,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1C1917","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\/1235197114629664769\/SuYg8MCC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235197114629664769\/SuYg8MCC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70886355\/1582691159","profile_link_color":"19CF86","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":155,"favorited":false,"retweeted":false,"lang":"ja"},"is_quote_status":false,"retweet_count":45,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686668279809,"id_str":"1235246686668279809","text":"RT - @RTultimahora: \u00daLTIMA HORA\n\nItalia cierra todas las escuelas y universidades - del pa\u00eds por la epidemia de coronavirus\nhttps:\/\/t.co\/WHMkXs\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RTultimahora","name":"RT - \u00daltima Hora","id":961925545809281024,"id_str":"961925545809281024","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":68771200,"id_str":"68771200","name":"H\u00e9ctor - R. Santana T.","screen_name":"SantanaTrinidad","location":"San Pedro de Macoris","description":"Abogado-Notario - y Consultor Jur\u00eddico","url":"https:\/\/t.co\/LiXk2Y1LAG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LiXk2Y1LAG","expanded_url":"https:\/\/www.twitter.com\/santanatrinidad","display_url":"twitter.com\/santanatrinidad","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2179,"friends_count":3880,"listed_count":17,"created_at":"Tue - Aug 25 18:44:18 +0000 2009","favourites_count":16499,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22449,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1130504269508038658\/0pNrfH0Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1130504269508038658\/0pNrfH0Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68771200\/1393194371","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:07:27 +0000 2020","id":1235190118216065024,"id_str":"1235190118216065024","text":"\u00daLTIMA - HORA\n\nItalia cierra todas las escuelas y universidades del pa\u00eds por - la epidemia de coronavirus\u2026 https:\/\/t.co\/7rzmlnGmH6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7rzmlnGmH6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235190118216065024","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[103,126]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":961925545809281024,"id_str":"961925545809281024","name":"RT - \u00daltima Hora","screen_name":"RTultimahora","location":"Mosc\u00fa, Rusia","description":"\ud83d\udd34Las - \u00faltimas noticias del acontecer internacional. \n\ud83d\udd34La informaci\u00f3n - m\u00e1s relevante al minuto. \n\ud83d\udce3Una cuenta m\u00e1s del equipo - de redes sociales de @ActualidadRT \ud83d\ude4c","url":"https:\/\/t.co\/lo2KB3neoz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lo2KB3neoz","expanded_url":"https:\/\/actualidad.rt.com\/","display_url":"actualidad.rt.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":123891,"friends_count":1,"listed_count":596,"created_at":"Fri - Feb 09 11:31:36 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14739,"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\/1220722924308639752\/wRoIz1Nr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220722924308639752\/wRoIz1Nr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961925545809281024\/1579878001","profile_link_color":"B80F0A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1218,"favorite_count":1272,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":1218,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686626340865,"id_str":"1235246686626340865","text":"RT - @tomsguide: Google zaps all coronavirus apps from Play Store https:\/\/t.co\/Gp86tPAYp9 - https:\/\/t.co\/THvM0mzDRA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tomsguide","name":"Tom''s - Guide","id":17064400,"id_str":"17064400","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/Gp86tPAYp9","expanded_url":"https:\/\/www.tomsguide.com\/news\/google-zaps-coronavirus-apps-from-play-store-searches?utm_source=dlvr.it&utm_medium=twitter","display_url":"tomsguide.com\/news\/google-za\u2026","indices":[64,87]}],"media":[{"id":1235230910494040064,"id_str":"1235230910494040064","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRr9_OUYAAU7TZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRr9_OUYAAU7TZ.jpg","url":"https:\/\/t.co\/THvM0mzDRA","display_url":"pic.twitter.com\/THvM0mzDRA","expanded_url":"https:\/\/twitter.com\/tomsguide\/status\/1235230912389898245\/photo\/1","type":"photo","sizes":{"medium":{"w":1000,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":568,"resize":"fit"},"small":{"w":680,"h":386,"resize":"fit"}},"source_status_id":1235230912389898245,"source_status_id_str":"1235230912389898245","source_user_id":17064400,"source_user_id_str":"17064400"}]},"extended_entities":{"media":[{"id":1235230910494040064,"id_str":"1235230910494040064","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRr9_OUYAAU7TZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRr9_OUYAAU7TZ.jpg","url":"https:\/\/t.co\/THvM0mzDRA","display_url":"pic.twitter.com\/THvM0mzDRA","expanded_url":"https:\/\/twitter.com\/tomsguide\/status\/1235230912389898245\/photo\/1","type":"photo","sizes":{"medium":{"w":1000,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":568,"resize":"fit"},"small":{"w":680,"h":386,"resize":"fit"}},"source_status_id":1235230912389898245,"source_status_id_str":"1235230912389898245","source_user_id":17064400,"source_user_id_str":"17064400"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231132913,"id_str":"2231132913","name":"RAPG8O","screen_name":"RAPG8O","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":397,"listed_count":5,"created_at":"Wed - Dec 18 04:25:53 +0000 2013","favourites_count":10062,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26855,"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\/997970980277440513\/M0iPqKc__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/997970980277440513\/M0iPqKc__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231132913\/1520559185","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:49:33 +0000 2020","id":1235230912389898245,"id_str":"1235230912389898245","text":"Google - zaps all coronavirus apps from Play Store https:\/\/t.co\/Gp86tPAYp9 https:\/\/t.co\/THvM0mzDRA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Gp86tPAYp9","expanded_url":"https:\/\/www.tomsguide.com\/news\/google-zaps-coronavirus-apps-from-play-store-searches?utm_source=dlvr.it&utm_medium=twitter","display_url":"tomsguide.com\/news\/google-za\u2026","indices":[49,72]}],"media":[{"id":1235230910494040064,"id_str":"1235230910494040064","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRr9_OUYAAU7TZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRr9_OUYAAU7TZ.jpg","url":"https:\/\/t.co\/THvM0mzDRA","display_url":"pic.twitter.com\/THvM0mzDRA","expanded_url":"https:\/\/twitter.com\/tomsguide\/status\/1235230912389898245\/photo\/1","type":"photo","sizes":{"medium":{"w":1000,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":568,"resize":"fit"},"small":{"w":680,"h":386,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235230910494040064,"id_str":"1235230910494040064","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRr9_OUYAAU7TZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRr9_OUYAAU7TZ.jpg","url":"https:\/\/t.co\/THvM0mzDRA","display_url":"pic.twitter.com\/THvM0mzDRA","expanded_url":"https:\/\/twitter.com\/tomsguide\/status\/1235230912389898245\/photo\/1","type":"photo","sizes":{"medium":{"w":1000,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":568,"resize":"fit"},"small":{"w":680,"h":386,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":17064400,"id_str":"17064400","name":"Tom''s - Guide","screen_name":"tomsguide","location":"New York, USA","description":"Think - of us as your geeky friend who''s always on call. From smartphones to cord-cutting - to video games, we''ve got your tech needs covered. Part of @FuturePLC","url":"https:\/\/t.co\/a0TmVjr70J","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/a0TmVjr70J","expanded_url":"http:\/\/www.tomsguide.com","display_url":"tomsguide.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":28419,"friends_count":990,"listed_count":1004,"created_at":"Thu - Oct 30 12:52:29 +0000 2008","favourites_count":2533,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":56268,"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\/922891630172082176\/W_V8niMD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922891630172082176\/W_V8niMD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17064400\/1476211961","profile_link_color":"20A5D0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B1E543","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"},"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686609584129,"id_str":"1235246686609584129","text":"The - #CoronaVirus scare is starting to show in the grocery store... Last night - toilet paper was gone, lots of cleani\u2026 https:\/\/t.co\/Yk4W62vSyB","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[4,16]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Yk4W62vSyB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246686609584129","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3248151595,"id_str":"3248151595","name":"Taylor - Allen","screen_name":"TaylorAllen_55","location":"Houston, TX","description":"I - like my politics blue and my coffee black. Dog dad. Tech nerd. Opinions are - my own. #FlipTheTexasHouse #BetoForever","url":"https:\/\/t.co\/WADtsAW2Er","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WADtsAW2Er","expanded_url":"http:\/\/TheBlueTexan.com","display_url":"TheBlueTexan.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":672,"friends_count":1650,"listed_count":44,"created_at":"Wed - Jun 17 19:01:57 +0000 2015","favourites_count":45974,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21024,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218225157719969792\/WOmrXbVa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218225157719969792\/WOmrXbVa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3248151595\/1579282164","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686609559555,"id_str":"1235246686609559555","text":"RT - @atrupar: Trump on coronavirus testing: \"The Obama administration made a - decision on testing that turned out to be very detrimental to w\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"atrupar","name":"Aaron - Rupar","id":288277167,"id_str":"288277167","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":858476388,"id_str":"858476388","name":"Mathew - Michaud","screen_name":"dopplerinc","location":"","description":"Free Radical","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":226,"listed_count":1,"created_at":"Tue - Oct 02 18:16:45 +0000 2012","favourites_count":3985,"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":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/715549800863760384\/-kg_gkBU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/715549800863760384\/-kg_gkBU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/858476388\/1456117434","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:41:10 +0000 2020","id":1235243899674939392,"id_str":"1235243899674939392","text":"Trump - on coronavirus testing: \"The Obama administration made a decision on testing - that turned out to be very detri\u2026 https:\/\/t.co\/dC3optnUmF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dC3optnUmF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243899674939392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":288277167,"id_str":"288277167","name":"Aaron - Rupar","screen_name":"atrupar","location":"","description":"journalist @voxdotcom","url":"https:\/\/t.co\/RnqX4a5AQt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RnqX4a5AQt","expanded_url":"http:\/\/vox.com","display_url":"vox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247705,"friends_count":999,"listed_count":2854,"created_at":"Tue - Apr 26 15:22:47 +0000 2011","favourites_count":96174,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":70554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288277167\/1469538346","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3556,"favorite_count":12531,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3556,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686571835394,"id_str":"1235246686571835394","text":"RT - @FirstSquawk: LOS ANGELES COUNTY DECLARES STATE OF EMERGENCY DUE TO THE CORONAVIRUS - OUTBREAK AS NUMBER OF CASES INCREASES TO SEVEN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FirstSquawk","name":"First - Squawk","id":3295423333,"id_str":"3295423333","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":997576167392759808,"id_str":"997576167392759808","name":"Volymen - \/ William","screen_name":"Volymen3","location":"","description":"Sound money... - \ud83e\udd47 #Bitcoin #JapaneseCandlesticks \ud83d\uddfe","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":161,"listed_count":0,"created_at":"Fri - May 18 20:34:27 +0000 2018","favourites_count":2389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":422,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169905719665016833\/sreICjEu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169905719665016833\/sreICjEu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/997576167392759808\/1571170518","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:51:37 +0000 2020","id":1235246531902451712,"id_str":"1235246531902451712","text":"LOS - ANGELES COUNTY DECLARES STATE OF EMERGENCY DUE TO THE CORONAVIRUS OUTBREAK - AS NUMBER OF CASES INCREASES TO SEVEN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3295423333,"id_str":"3295423333","name":"First - Squawk","screen_name":"FirstSquawk","location":"London","description":"First - Squawk is a global squawk service specialising in financial markets. We get - all of our news from our @RedboxWire terminal.","url":"https:\/\/t.co\/NhVQIdU0zq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NhVQIdU0zq","expanded_url":"http:\/\/www.redboxglobal.co.uk","display_url":"redboxglobal.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35665,"friends_count":1307,"listed_count":1061,"created_at":"Sun - Jul 26 14:40:19 +0000 2015","favourites_count":417,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54454,"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\/1039778545738964992\/6fl6RNN0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039778545738964992\/6fl6RNN0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3295423333\/1536736758","profile_link_color":"0B0B3B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":75,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":44,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686571835392,"id_str":"1235246686571835392","text":"RT - @Vanity_Sexx: el coronavirus se confirmo en 72 pa\u00edses y vos todavia sin - confirmarme tu amor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Vanity_Sexx","name":"benito - cerati","id":732061772,"id_str":"732061772","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79197986,"id_str":"79197986","name":"Estefania - Orcellet","screen_name":"stephyorcellet","location":"Buenos Aires, Argentina","description":"Saco - fotos y leo sobre astrolog\u00eda.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":638,"listed_count":1,"created_at":"Fri - Oct 02 14:42:07 +0000 2009","favourites_count":1878,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1195,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C2C2C2","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\/1075117537162133505\/3CwPPO6u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1075117537162133505\/3CwPPO6u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/79197986\/1545162993","profile_link_color":"7FDBB6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0F0F0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:17:44 +0000 2020","id":1235238006241529862,"id_str":"1235238006241529862","text":"el - coronavirus se confirmo en 72 pa\u00edses y vos todavia sin confirmarme tu - amor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":732061772,"id_str":"732061772","name":"benito - cerati","screen_name":"Vanity_Sexx","location":"","description":"mis tweets - tienen multiples interpretaciones","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127450,"friends_count":1229,"listed_count":134,"created_at":"Thu - Aug 02 03:33:27 +0000 2012","favourites_count":47925,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30691,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1197245050763264001\/T4sd4vnx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197245050763264001\/T4sd4vnx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/732061772\/1535051546","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":324,"favorite_count":1197,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":324,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686563446784,"id_str":"1235246686563446784","text":"RT - @solbrinck: Le tengo mucho m\u00e1s miedo al comunismo que al coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"solbrinck","name":"Soledad - Brinck","id":118870596,"id_str":"118870596","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216004932,"id_str":"216004932","name":"\u00c1lvaro - Rojas en ChileZuela (#RECHAZO)","screen_name":"evangelion70","location":"Metropolitana - de Santiago","description":"Liberal. Defiendo los verdaderos derechos del - hombre: los derechos Individuales.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":552,"friends_count":331,"listed_count":17,"created_at":"Mon - Nov 15 14:54:25 +0000 2010","favourites_count":7065,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26332,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1202251818614394880\/Z6Ko8rWK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202251818614394880\/Z6Ko8rWK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216004932\/1411001000","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 11:25:39 +0000 2020","id":1235164497565843456,"id_str":"1235164497565843456","text":"Le - tengo mucho m\u00e1s miedo al comunismo que al coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118870596,"id_str":"118870596","name":"Soledad - Brinck","screen_name":"solbrinck","location":"chile","description":"Licenciada - en est\u00e9tica menci\u00f3n en finanzas \ud83d\ude44.Este no es mi diario - de vida. Mam\u00e1 de 3\u2764\ufe0fAdoro viajar. \ud83c\udfc3\ud83c\udffc\u200d\u2640\ufe0fSin - az\u00facar. https:\/\/t.co\/bI6AvObKjW","url":"https:\/\/t.co\/2ks7y0GDCr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2ks7y0GDCr","expanded_url":"http:\/\/viajeraadicta.blogspot.cl","display_url":"viajeraadicta.blogspot.cl","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/bI6AvObKjW","expanded_url":"http:\/\/viajeraadicta.blogspot.com","display_url":"viajeraadicta.blogspot.com","indices":[117,140]}]}},"protected":false,"followers_count":5487,"friends_count":3954,"listed_count":82,"created_at":"Tue - Mar 02 00:03:51 +0000 2010","favourites_count":31857,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":101026,"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\/1231358967017852931\/u4xMXJH6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231358967017852931\/u4xMXJH6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118870596\/1540817283","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":395,"favorite_count":1428,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":395,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686529703936,"id_str":"1235246686529703936","text":"RT - @shelbygrad: Los Angeles County declares coronavirus emergency with 6 new - cases https:\/\/t.co\/8VeNYxzOfs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"shelbygrad","name":"Shelby - Grad","id":14827461,"id_str":"14827461","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/8VeNYxzOfs","expanded_url":"https:\/\/www.latimes.com\/california\/story\/2020-03-04\/los-angeles-county-declares-coronavirus-emergency-6-new-cases","display_url":"latimes.com\/california\/sto\u2026","indices":[83,106]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188760481,"id_str":"188760481","name":"Capitol - Weekly","screen_name":"Capitol_Weekly","location":"Sacramento","description":"Nonpartisan, - nonprofit news outfit targeting California government and politics. Editor - John Howard: Retweets aren''t endorsements. What could possibly go wrong?","url":"https:\/\/t.co\/wxzb7WJQ9R","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wxzb7WJQ9R","expanded_url":"http:\/\/www.capitolweekly.net","display_url":"capitolweekly.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13445,"friends_count":1889,"listed_count":432,"created_at":"Thu - Sep 09 14:43:54 +0000 2010","favourites_count":1006,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27094,"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\/2302135813\/7ngocb8a0qqzo94g6wus_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2302135813\/7ngocb8a0qqzo94g6wus_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188760481\/1489526212","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:49:36 +0000 2020","id":1235246022713937920,"id_str":"1235246022713937920","text":"Los - Angeles County declares coronavirus emergency with 6 new cases https:\/\/t.co\/8VeNYxzOfs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8VeNYxzOfs","expanded_url":"https:\/\/www.latimes.com\/california\/story\/2020-03-04\/los-angeles-county-declares-coronavirus-emergency-6-new-cases","display_url":"latimes.com\/california\/sto\u2026","indices":[67,90]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14827461,"id_str":"14827461","name":"Shelby - Grad","screen_name":"shelbygrad","location":"\ud83c\udf34Los Angeles\ud83d\udca5","description":"Deputy - Managing Editor at @latimes.","url":"https:\/\/t.co\/emWaPa3SBu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/emWaPa3SBu","expanded_url":"http:\/\/www.latimes.com\/california","display_url":"latimes.com\/california","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13982,"friends_count":1014,"listed_count":515,"created_at":"Mon - May 19 02:25:01 +0000 2008","favourites_count":6419,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":45089,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1176642755608449025\/HU_Ji59-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176642755608449025\/HU_Ji59-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14827461\/1583199878","profile_link_color":"1B95E0","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"},"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,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686508920833,"id_str":"1235246686508920833","text":"RT - @VOX_Congreso: \ud83d\udc8a Las recetas del m\u00e9dico de VOX para combatir - el \"consenso globalista\" ante el #coronavirus \ud83e\udda0\n\n\ud83d\udcf0 - @jlsteeg se ha convertid\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[97,109]}],"symbols":[],"user_mentions":[{"screen_name":"VOX_Congreso","name":"Grupo - Parlamentario de VOX en el Congreso","id":1136236737326395393,"id_str":"1136236737326395393","indices":[3,16]},{"screen_name":"jlsteeg","name":"Juan - Luis Steegmann Olmedillas","id":593952938,"id_str":"593952938","indices":[115,123]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2223081331,"id_str":"2223081331","name":"itsJoa134\u2020\ud83c\uddea\ud83c\uddf8","screen_name":"ronaldojoa7","location":"Espa\u00f1a","description":"Real - Madrid.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":482,"friends_count":717,"listed_count":4,"created_at":"Sat - Nov 30 13:11:33 +0000 2013","favourites_count":200167,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":65418,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1125534145982152705\/xy1JRxGm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1125534145982152705\/xy1JRxGm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2223081331\/1385819008","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:35:19 +0000 2020","id":1235136734305955840,"id_str":"1235136734305955840","text":"\ud83d\udc8a - Las recetas del m\u00e9dico de VOX para combatir el \"consenso globalista\" - ante el #coronavirus \ud83e\udda0\n\n\ud83d\udcf0 @jlsteeg se ha con\u2026 - https:\/\/t.co\/qpBFN9rPdS","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[79,91]}],"symbols":[],"user_mentions":[{"screen_name":"jlsteeg","name":"Juan - Luis Steegmann Olmedillas","id":593952938,"id_str":"593952938","indices":[97,105]}],"urls":[{"url":"https:\/\/t.co\/qpBFN9rPdS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235136734305955840","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1136236737326395393,"id_str":"1136236737326395393","name":"Grupo - Parlamentario de VOX en el Congreso","screen_name":"VOX_Congreso","location":"Madrid, - Espa\u00f1a","description":"Cuenta oficial del Grupo Parlamentario de VOX - en el Congreso #PorEspa\u00f1a \ud83d\udcaa\ud83c\uddea\ud83c\uddf8\n\n#Los52deVOX - \u27a1 https:\/\/t.co\/o9SmwCtOw1","url":"https:\/\/t.co\/OivCmozzww","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OivCmozzww","expanded_url":"https:\/\/www.youtube.com\/channel\/UCvvWGe6qnO-7LxnH3sPKMIg","display_url":"youtube.com\/channel\/UCvvWG\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/o9SmwCtOw1","expanded_url":"https:\/\/twitter.com\/VOX_Congreso\/lists\/diputados1?s=08","display_url":"twitter.com\/VOX_Congreso\/l\u2026","indices":[91,114]}]}},"protected":false,"followers_count":66680,"friends_count":70,"listed_count":166,"created_at":"Wed - Jun 05 11:42:03 +0000 2019","favourites_count":787,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5636,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169559770342313986\/2fMiGbLZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169559770342313986\/2fMiGbLZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1136236737326395393\/1581953308","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":316,"favorite_count":437,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":316,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686508855302,"id_str":"1235246686508855302","text":"RT - @fgcabezadevaca: El estado de #Tamaulipas contin\u00faa por fortuna sin casos - de Coronavirus o COVID-19. Esta tarde sostuve una reuni\u00f3n de tr\u2026","truncated":false,"entities":{"hashtags":[{"text":"Tamaulipas","indices":[33,44]}],"symbols":[],"user_mentions":[{"screen_name":"fgcabezadevaca","name":"Fco. - Cabeza de Vaca","id":242381934,"id_str":"242381934","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":186536106,"id_str":"186536106","name":"Alvaro - Ni\u00f1o","screen_name":"Alvaro_Nino","location":"Tamaulipas, M\u00e9xico","description":"#Big_Data - #Econom\u00eda #Finanzas #Gesti\u00f3n #Gobierno #Humanismo #Innovaci\u00f3n - #Marketing #M\u00e9xico #PAN #Pol\u00edtica #Proceso_Electoral #Software #Tamaulipas - #Tecnolog\u00eda","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":969,"listed_count":11,"created_at":"Fri - Sep 03 18:32:23 +0000 2010","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3555,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","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\/1036856956282134528\/6LoAzNKL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1036856956282134528\/6LoAzNKL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/186536106\/1482903932","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"050505","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 00:40:00 +0000 2020","id":1235002017535234048,"id_str":"1235002017535234048","text":"El - estado de #Tamaulipas contin\u00faa por fortuna sin casos de Coronavirus o - COVID-19. Esta tarde sostuve una reuni\u00f3n d\u2026 https:\/\/t.co\/Ml0sin0wZx","truncated":true,"entities":{"hashtags":[{"text":"Tamaulipas","indices":[13,24]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ml0sin0wZx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235002017535234048","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":242381934,"id_str":"242381934","name":"Fco. - Cabeza de Vaca","screen_name":"fgcabezadevaca","location":"Tamaulipas, M\u00e9xico","description":"Gobernador - de Tamaulipas","url":"https:\/\/t.co\/XHeVGwZMzK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XHeVGwZMzK","expanded_url":"https:\/\/www.facebook.com\/fgcabezadevaca","display_url":"facebook.com\/fgcabezadevaca","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":76580,"friends_count":414,"listed_count":342,"created_at":"Mon - Jan 24 17:12:37 +0000 2011","favourites_count":7637,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":8437,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CED6D9","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\/908680405854732288\/MGs5z1va_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908680405854732288\/MGs5z1va_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/242381934\/1583430367","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":234,"favorite_count":295,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":234,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686483734528,"id_str":"1235246686483734528","text":"RT - @Diego17Nicolas: 63 femicidios en 2 meses,en Argentina no hay coronavirus,hay - algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Diego17Nicolas","name":"Diego - Nicol\u00e1s Manzur","id":1232174067207278592,"id_str":"1232174067207278592","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1031170216250798080,"id_str":"1031170216250798080","name":"Ivooooo","screen_name":"ok_boni","location":"","description":"Dieciocho\ud83d\udc9c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":182,"listed_count":0,"created_at":"Sun - Aug 19 13:25:12 +0000 2018","favourites_count":527,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2611,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233163912578727945\/Y-Ov0e0u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233163912578727945\/Y-Ov0e0u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1031170216250798080\/1572651629","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 17:52:48 +0000 2020","id":1234537151536287745,"id_str":"1234537151536287745","text":"63 - femicidios en 2 meses,en Argentina no hay coronavirus,hay algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232174067207278592,"id_str":"1232174067207278592","name":"Diego - Nicol\u00e1s Manzur","screen_name":"Diego17Nicolas","location":"","description":"\u2649\n\ud83c\udf47 - Mendoza-Argentina\ud83c\udf77\nig: 17diego_nicolas \n\nCARC \ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":101,"listed_count":0,"created_at":"Tue - Feb 25 05:22:56 +0000 2020","favourites_count":172,"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:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232174067207278592\/1583297600","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12833,"favorite_count":22725,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":12833,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686437543941,"id_str":"1235246686437543941","text":"RT - @tragicom24: Coronavirus, dopo le nuove regole sulla distanza di sicurezza, - Mulino Bianco interrompe la produzione dei biscotti Abbracci.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tragicom24","name":"Tragicom24","id":497190015,"id_str":"497190015","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":965515425952956416,"id_str":"965515425952956416","name":"Miriam","screen_name":"mirialarocca","location":"Napoli, - Campania","description":"boh mi scoccio\nnon succede ma se succede","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":275,"friends_count":305,"listed_count":1,"created_at":"Mon - Feb 19 09:16:30 +0000 2018","favourites_count":18434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9768,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230107887051079681\/1FJatepF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230107887051079681\/1FJatepF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/965515425952956416\/1583167680","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:26:02 +0000 2020","id":1235240092270235649,"id_str":"1235240092270235649","text":"Coronavirus, - dopo le nuove regole sulla distanza di sicurezza, Mulino Bianco interrompe - la produzione dei biscotti Abbracci.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":497190015,"id_str":"497190015","name":"Tragicom24","screen_name":"tragicom24","location":"Bologna, - Emilia Romagna","description":"Fino Alla Fine \u26aa\ufe0f\u26ab\ufe0f Ball - is Life \ud83c\udfc0 Law Student \u2696\ufe0f #MambaForever \ud83d\udc9b\ud83d\udc9c - 8\ufe0f\u20e3\/2\ufe0f\u20e34\ufe0f\u20e3 TuidderCalcio\u26bd\ufe0f","url":"https:\/\/t.co\/IgXVNp0tJR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IgXVNp0tJR","expanded_url":"https:\/\/www.instagram.com\/aluz12\/?hl=it","display_url":"instagram.com\/aluz12\/?hl=it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7521,"friends_count":167,"listed_count":5,"created_at":"Sun - Feb 19 18:28:00 +0000 2012","favourites_count":16850,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3698,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231609074455805956\/9VJJNj1g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231609074455805956\/9VJJNj1g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/497190015\/1580549361","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2018,"favorite_count":8271,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":2018,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"}],"search_metadata":{"completed_in":0.129,"max_id":1235246692745781247,"max_id_str":"1235246692745781247","next_results":"?max_id=1235246686437543940&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1235246692745781247&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1223017922861268992/Fgqte7wL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '87681' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:21 GMT - Last-Modified: - - Thu, 30 Jan 2020 22:57:30 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1223017922861268992 - X-Cache: - - MISS - X-Connection-Hash: - - 821e652a12b16564f56a16689576aabe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH5AABAB4AFgA7AB5hY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAABBQEBAAAAAAAAAAAAAAAAAQQFBgcCA//EABkBAAIDAQAAAAAAAAAAAAAAAAAEAQIDBf/aAAwDAQACEAMQAAAB2UAAGsQ6IyRqdDN5YAJkRYukMjxoXKVurfNeMF91e5rZ+g5ZRFf3OemVYoVI0HPOBzI309e98pzTqRqF3fVQ67hFyiVisU3VYrnr5dM6KmdYZ08kG91Ab0AAEUARQEUAAA//xAAjEAADAAICAQMFAAAAAAAAAAACAwQBBQAREBITIBQhMDFA/9oACAEBAAEFAvy0PUjGwpOZff2lpVSHxjdZixlGWFVtEkvNk76oznNfeO/NrqFHewTzbcRcywlihmOtHYS+KlN9fnP62dT3TtIudNZzJB3rOioS36d3m1jEy7wXPnb0vhKNZLUGWaqZ3FerK/OzobNNT6Cms1Dx4MT8cl1B8woArhorZT8GLBg3uxg6Ue7NEjM80c2UF/P/AP/EAB8RAAEEAgMBAQAAAAAAAAAAAAEAAgMRECEEEkEgMf/aAAgBAwEBPwHF7pfuCaT5OgpHku9UcvYaGZr7bxxmmsEWFLE0jaHGFprffv8A/8QAIhEBAAIBBAEFAQAAAAAAAAAAAQACAwQQESExEhMgIjIz/9oACAECAQE/AYoeYXFSCJybXsVOWZtQ0+h3LZcz2swar3KhU72t0R/q8sbHE0NVVOtrinBM+lr+lhoH1cWZiwNeHx8//8QALxAAAgECAwcCBAcAAAAAAAAAAQIDABESITEEEyAiMkFRFGEFI1JxJDAzQEKR0f/aAAgBAQAGPwL80GV8OI2FKyQGW7WyNZ1jhbEAbHikTbAEVv0rVtEU8QiwZxknq96Vf5XBNb5HIcjBroO9W2ZlKrllVuCIQwGUE8/sKxeosirzRHI/eud3ZQLX70S2V9KxltNF81YKh3h+391F8Q9Xi9lGRHD+Ih3LXIB8igqFZL6i2lYWbo+o6VYra3ilZPPTUOxx7JIkZvme3A8kUe8dRkvmo5XiwE9quMWKgzSdR5iKNjc65020wwIzpmFvrSlxZrZjgMsUO9I1FLN8Qkw36FHY/wC1jC3U50jBDym969RKpK3vl4pI4o2BK3WZNAPepYp4Qqx5Y/qPDhdQw8Go9lwP842JtkBTwq27xC1x2pITIZMPc1J81mDtcL2X9x//xAAlEAEAAgEDBAEFAQAAAAAAAAABABEhMUFRIGFxgcEwQJGx4fD/2gAIAQEAAT8h+qOoDfuu0o2cwCrhqimrTiN7KYqROpSJ9rG18wA5X04PcGAVPXBTbChmC6m47sesm/Fm4F8dCGT3P9XF7FCLL+iRMKgGxdHTrzn4YNCtamf4h6iS84PMUiEMeFei4kLa0mCeKGYXKcOg8mXWiCnQ2RV9p0NH5iLEoBuZ4yxW7ozjgg27SLaQOvaJWEPMou4tQXn3DpwwcjuPMxaLRiGU3CWz0WdoZduYOOmKG08+UuUAy48zGx9VA5vw67Os/CKvg2sqe0Bfo6exf2yXvii94Ll2mDPIlTSVvsRW/Fo8H3H/2gAMAwEAAgADAAAAEAAQAQFlNfCE8MNIBJetgAEEIAP/xAAgEQEAAgEEAgMAAAAAAAAAAAABABEhEDFBYVGhIHGR/9oACAEDAQE/EIoFsCrwggs0I2w8y5chDbHnrRaLgGbHnmU1QZ79Swdn60ZAalq/fNw2eSvcXGzrHz//xAAiEQEAAQMEAQUAAAAAAAAAAAABEQAhMRBBUWHwIIGxwfH/2gAIAQIBAT8Qo2VBQ1bmfejSSaK8FS7ueYbPP18UPeY24/aeQQwhYDRSNFJxe7Ta0mav23VPk4bGDJOitIeajWCGd178IrMgjJa/G9EA5XDHneefX//EACQQAQACAgICAgEFAAAAAAAAAAERIQAxQVEgYXGBkRAwQKHh/9oACAEBAAE/EP3YTmEV1gBig6/doFn3WVOZBPsYH6xDZhHXisZALuAPcu4uPWHsYCVC+gANd4hqOGiAeWmO8e0PIuspMQNHDeLCaPG2Pv24gWTJJWnceE6u52Js9nXxiIeJ0bXahDoTHMYJyQpX8fOCumsON/AyT3kM7wINsfhzi0BjEgWwTroVw2OYqM4Szvlw1+qg1JOz1lJczSBpjcf1kwSxYoECMTT3hu8oi0B8rBgt8GIIAIk0kWXEHMQiaQg1OmVu8ErvvYchZlXaeHNc28iSr1LkE2wqRJuiG9YEwUhYx6IhMcVkP6UiwBbI22STiRIFZYtAYCTyA1uoOP8AMVVUMkNh9+CN4MoR7EbjGuti8M49HNDiM2C07g38HvHEHYw2UeDAohUxOQk5gZjGIoGo8WmYg2zxvClLAR2B4jwSd4yWUUMhYw46gpMzLBpSvvCN+ER6H1WOwusE6+sTYmt6v9+aDs/g/wD/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20Jersey,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1130106801523970048/6IdB8p5n_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '191347' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:21 GMT - Last-Modified: - - Sun, 19 May 2019 13:41:52 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1130106801523970048 - X-Cache: - - MISS - X-Connection-Hash: - - f4a8ec8664147a973e825a3057f026fb - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20Jersey,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:22 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235241370073300992.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9cde69266a14822c3e8db3782b8d8ea6", - oauth_signature="%2FNuNlDZVnanoeB9mXOsjBpaCBvQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487022", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '4958' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:22 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:22 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348702273818777; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:22 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_1lFZTIfvGldzSyNfXRWfvw=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:22 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - '0238a331ee15243e472e2ff83bac0caa' - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '885' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '140' - X-Transaction: - - 00ee56cd00b42f88 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:31:06 +0000 2020","id":1235241370073300992,"id_str":"1235241370073300992","text":"Coronavirus - does not belong to a political party and it should not be a political tool. - https:\/\/t.co\/WRvO5lw1Nw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234493692809011205,"id_str":"1234493692809011205","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","url":"https:\/\/t.co\/WRvO5lw1Nw","display_url":"pic.twitter.com\/WRvO5lw1Nw","expanded_url":"https:\/\/twitter.com\/RepMattGaetz\/status\/1235241370073300992\/video\/1","type":"photo","sizes":{"large":{"w":1296,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234493692809011205,"id_str":"1234493692809011205","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","url":"https:\/\/t.co\/WRvO5lw1Nw","display_url":"pic.twitter.com\/WRvO5lw1Nw","expanded_url":"https:\/\/twitter.com\/RepMattGaetz\/status\/1235241370073300992\/video\/1","type":"video","sizes":{"large":{"w":1296,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"}},"video_info":{"aspect_ratio":[9,5],"duration_millis":35367,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/1296x720\/M8LBBUr_1nRYMHse.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/648x360\/ycNUVC_kyl6X8OKg.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/486x270\/IeWSFJzPdm9W1PoE.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/pl\/Srbcmh9S32YWMyK7.m3u8?tag=13"}]},"additional_media_info":{"title":"Coronavirus - Does Not Belong to a Political Party","description":"Local officials are going - to help us defeat this virus, not Democrats using it to weaponize politics - against the president. ","call_to_actions":{"watch_now":{"url":"https:\/\/youtu.be\/GhYP8Qgr24E"}},"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,"user":{"id":818948638890217473,"id_str":"818948638890217473","name":"Rep. - Matt Gaetz","screen_name":"RepMattGaetz","location":"","description":"Official - Twitter for Congressman Matt Gaetz. Proud conservative who is honored to serve - the First District of Florida.","url":"https:\/\/t.co\/GcjK1dZCtR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GcjK1dZCtR","expanded_url":"http:\/\/Gaetz.house.gov","display_url":"Gaetz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":655055,"friends_count":856,"listed_count":2237,"created_at":"Tue - Jan 10 22:32:25 +0000 2017","favourites_count":612,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5249,"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\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818948638890217473\/1546465602","profile_link_color":"BB1A2A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2453,"favorite_count":10612,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1080559825946374144/n1tU4WLx_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '292518' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:23 GMT - Last-Modified: - - Wed, 02 Jan 2019 20:19:52 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1080559825946374144 - X-Cache: - - MISS - X-Connection-Hash: - - b5ef38911ca14c6a62162f986dd15192 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Santiago%20del%20Estero,%20Argentina&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1131726460736167936/O5z2yLD4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146285' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:24 GMT - Last-Modified: - - Fri, 24 May 2019 00:57:49 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1131726460736167936 - X-Cache: - - HIT - X-Connection-Hash: - - '01178e5c081ff8c71fa97460d3b4bdff' - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '125' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Puerto%20la%20cruz%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1235398865110683648/TLzx95BH_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:24 GMT - Last-Modified: - - Thu, 05 Mar 2020 02:54:56 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1235398865110683648 - X-Cache: - - MISS - X-Connection-Hash: - - 30989222ea19c8f8e37e4fe9348c2780 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Puerto%20la%20cruz%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Brasil&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1212502954948710400/VR_JkACd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '152421' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:25 GMT - Last-Modified: - - Wed, 01 Jan 2020 22:34:46 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1212502954948710400 - X-Cache: - - MISS - X-Connection-Hash: - - 9f989a07e03250dca15ac07c2f9cd855 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Brasil&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dublin%20City,%20Ireland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/745243559310278657/CH9n3kCO_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '137712' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:25 GMT - Last-Modified: - - Tue, 21 Jun 2016 13:12:45 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/745243559310278657 - X-Cache: - - MISS - X-Connection-Hash: - - d44e96fc0bdd641abbd59ba6811d35bc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dublin%20City,%20Ireland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Northeast%20Florida&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/978496937228840960/2Be4b1IB_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '528337' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:26 GMT - Last-Modified: - - Tue, 27 Mar 2018 04:58:24 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/978496937228840960 - X-Cache: - - MISS - X-Connection-Hash: - - 482fa5a904a334ae29e1891e55b45874 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gADABsABQAAABhhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAaAAACAwEBAAAAAAAAAAAAAAAEBQIDBgEA/8QAGgEAAgMBAQAAAAAAAAAAAAAAAgMBBAUABv/aAAwDAQACEAMQAAABx9i++s5qxCdwTB7mncjpnueatXncI+zCTyjURrJ+1+U1IHZVFfIvPJeMUtzjsdZDtFbOTYtxCFu4qnyRhC5YxQC5hXA2ErGOrjmsAxQaShOB4iaahqOidEUcBeRJQbfn3yyAwM5SXxFquyktFrsRn1ax/8QAJRAAAgIBBAEFAAMAAAAAAAAAAQIAAwQREhMhIgUUMTIzECQl/9oACAEBAAEFAt8W2Vdyr5x26oAcYuMAZ62F3amaysaysaCiguqVsJQ7AYVoBfIrWerZHJfsERdZSkcnmxmXTJ6lVnS3aSy8mZ9p5N8rEpEoX/TSmtGdWsA1Sb4zRyDdyYUSURU/tnXSptEtbyXuMZcN547IkoPdfwb61F2UGiojG6xRDZrOXjnvL4tTBK76llOVZbD2C6iZGQOVrdw3SleRfZiFSWTHSKUStypcdysptv8AFiYu7g1rjjtLVUnIlwSwvTOPQ+MK+NDqlfuFmX9rvvX+Tfb+G+bfxP4z/8QAIxEAAgIABgEFAAAAAAAAAAAAAQIAAwQQERIhcRMiMVGR0f/aAAgBAwEBPwHNoPbJRHE0mkAiiPNMrcY5HJ06iCtqDa2p7aDELWx2A/ff5K7PIgaGVjeOZWuw+mDEWfMotZzzl//EACIRAAIBAgUFAAAAAAAAAAAAAAABAgMSBBAREyFBcaGx0f/aAAgBAgEBPwEYiOiJPnJkWamo2MjnTw0F0HeqtkfRsSmlc/Hb6VKdknERJ2k3cuTZgVoRiuMv/8QALBAAAQMBBQcEAwEAAAAAAAAAAQACERADEiFBUSIxMmFxgZEgM4KhIzRCUv/aAAgBAQAGPwL0YrcpmhJ0XFUKQtCgAtpb04ThC9ytwaQg1XhXenx6MVea2CVII7hRW0mYjGFwjxVtpq2FmOaO1NJypa47lwP8VKh5hXWbtVec8dK2rs8uq4B4V95DRzWF530oZZHmZhYwe627OAvxZKaWrSRjqveYiXEkype/sEBZsMKRjqEOEj+y5WRgGHO7oR/mlpd+XRb7RaHRbULBXs9QuMnqsXfS3q9knlwB5HPFfrN8JqK7o+hi+VP/xAAkEAEAAgEDAwUBAQAAAAAAAAABABEhMUFREGGBkaHR8PFxsf/aAAgBAQABPyG9Ro1XMoOgi5SkJCi8YAFBCpZZ+ypaPD8xlpq4veXllPvPO1HV9Ybui14Vc6E7r1liBjEFuaD+s2A2gw2tZv5c16IsOTVPYxKd/vnp5CXI2F+0Zk1SRIc3yYjydTHR3YxlC1maxpPufiGqmoldDGR3jDBQNGZ3y8VNW75l+i8AQ5dk4n7n5imJEyzMe8R82L4BsWEUaQE1C62sjGP1XxMWTvLPpK9DVlqkewxwUxWzxymPJtK1hwpBXmOHKY5uCQwYXgb1n5RFzLUusE8bOeCllrW4qzTUr0ipvdILCMraiUWKx5lAJyFvXz36DKvavJPqnzK1/SGzYr9YIbCWIHf0xHJ/Al8AeUsc/EcO5pOEx+gT9ZPcT3E+zxPeTYnE/wBOi0uj/9oADAMBAAIAAwAAABA+jYVhQDZ9LBBtZ0TxCh87sfkD/8QAHBEBAQEBAQADAQAAAAAAAAAAAREAMSFBYaGB/9oACAEDAQE/EAcC5NS4oMZJcvdW4Mj4ZpHHyZjLoyJ+PH739MkMPhC/Xiy8L36N47iktPDobF494jcJpLusMs91RMPtfwzS75k3/8QAHxEBAAICAgIDAAAAAAAAAAAAAQARITEQoUFRYXGB/9oACAECAQE/EHUQbilS4S+HnmOTiARi2Te5cBbqK2W+89albUX6v+6OtfLGrWc3g59jYdhJ5MqeUZYmGNkW0Q3SDRP/xAAlEAEAAgIBAwQDAQEAAAAAAAABABEhMWFBUXEQkaGxgcHw8dH/2gAIAQEAAT8QC5TQVipTtcmfBH0KwUxLaNFmmAKOut1xK0A4IyGoAbvpOT7wtg1HNMFKy0Y95j3JY0ioo/I68IBOXaFwr1dmX2rrRN7kGiBl49EMGN7l7kgEbpp0XPxBgpADImOmNS2wvWPTvMZWc6jq2u5YWmc9rl2lk8eMTllVWJeB3imLFN+AfbPPFgVMfzKocPMynnVWoOtxQyo0x9oY8FZTP9JGYg9+KZkqjQb+vqK9hQUfxOn0yb0fEzGM8JWvYNcs25j01F7pVa8+HO8ehkcS4zMWRhAfmUJUYRh8MAmq34A4hynuKO8s/QKAMQuT+YzSASXFJh4rn0rUEdKkp8u3uSriJQhj34l3Jqeqeznj6lwBy8inZSfMRWdVFKN22HftXiWuaI71cMjreCJ660gjVjXY5x19Hq8rW0q6/UVrSgEY73rBvt5lDThbL7td2Gu0ioNVS82+cZYSWqqQDy2FarrDKKsBF1b7V6kTdaICt3Ux/wAVFSWIHArN+n81P8uBVCykjInUi15Fu2g27sqIs2mTyPSOxHlsPk0+06Wmg0nkWBCUNwA5XdTiVwea5bjpUMSxfYGTxP5z9T+rl9L0+fo0n0jZH0vqfO/fp//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Northeast%20Florida&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/890316246960549888/XleSlW7M_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1952' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:26 GMT - Last-Modified: - - Wed, 26 Jul 2017 20:59:49 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/890316246960549888 - X-Cache: - - HIT - X-Connection-Hash: - - 2fb4682a92d294795d8dd79c38ea778a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:26 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235243679142400003.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0d26937a609c7996b2c81fc523822599", - oauth_signature="x%2BEPIbpVts%2Baykd%2BEnKasV6x%2BdI%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487026", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2624' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:27 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:27 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348702751602589; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:27 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_4z3zhZxMqsT3TiNnibzMlg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:27 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - d26cd78c54f92e80b1fc7a4adf7ef3ff - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '884' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '171' - X-Transaction: - - 004c04e300ef263f - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:40:17 +0000 2020","id":1235243679142400003,"id_str":"1235243679142400003","text":"NEW: - SIX new cases of #coronavirus. \n#COVID","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[22,34]},{"text":"COVID","indices":[37,43]}],"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":1235243241319976960,"in_reply_to_status_id_str":"1235243241319976960","in_reply_to_user_id":228474571,"in_reply_to_user_id_str":"228474571","in_reply_to_screen_name":"AlexMillerNews","user":{"id":228474571,"id_str":"228474571","name":"Alex - Miller","screen_name":"AlexMillerNews","location":"Washington, DC","description":"That - girl standing in heels on an apple box. Political Reporter @Newsy & @ewscrippsCo, - Adjunct Professor @merrillcollege\ud83d\udc22 former Paul Miller fellow @natpress","url":"https:\/\/t.co\/eiLiaC5e5y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eiLiaC5e5y","expanded_url":"https:\/\/www.newsy.com\/team\/alexandra-miller\/","display_url":"newsy.com\/team\/alexandra\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2490,"friends_count":963,"listed_count":64,"created_at":"Sun - Dec 19 20:46:16 +0000 2010","favourites_count":3125,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6575,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F00C1F","profile_background_image_url":"http:\/\/abs.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\/890316246960549888\/XleSlW7M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890316246960549888\/XleSlW7M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228474571\/1581029956","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"380C2A","profile_text_color":"699462","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:27 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/890316246960549888/XleSlW7M_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1953' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:27 GMT - Last-Modified: - - Wed, 26 Jul 2017 20:59:49 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/890316246960549888 - X-Cache: - - HIT - X-Connection-Hash: - - 2fb4682a92d294795d8dd79c38ea778a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:27 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235243241319976960.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f8795fce764489b795ada760d645c6a6", - oauth_signature="OavThikgsJBq3N%2FL4%2B3zJQrc8IE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487027", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2823' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348702848325834; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:28 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_vaJV5+LcE+tJ9jj8FEV4DA=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:28 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6a4b2c14bea84188f821c28ecf28a159 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '883' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '159' - X-Transaction: - - 00b47609009c9e4d - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:38:33 +0000 2020","id":1235243241319976960,"id_str":"1235243241319976960","text":"NEW: - There are new cases of #coronavirus in LA county. They are declaring a local - emergency. \n\nChairwoman Kathryn B\u2026 https:\/\/t.co\/vOPSJMQDYi","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vOPSJMQDYi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243241319976960","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":228474571,"id_str":"228474571","name":"Alex - Miller","screen_name":"AlexMillerNews","location":"Washington, DC","description":"That - girl standing in heels on an apple box. Political Reporter @Newsy & @ewscrippsCo, - Adjunct Professor @merrillcollege\ud83d\udc22 former Paul Miller fellow @natpress","url":"https:\/\/t.co\/eiLiaC5e5y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eiLiaC5e5y","expanded_url":"https:\/\/www.newsy.com\/team\/alexandra-miller\/","display_url":"newsy.com\/team\/alexandra\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2490,"friends_count":963,"listed_count":64,"created_at":"Sun - Dec 19 20:46:16 +0000 2010","favourites_count":3125,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6575,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F00C1F","profile_background_image_url":"http:\/\/abs.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\/890316246960549888\/XleSlW7M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890316246960549888\/XleSlW7M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228474571\/1581029956","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"380C2A","profile_text_color":"699462","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/890316246960549888/XleSlW7M_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1954' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:28 GMT - Last-Modified: - - Wed, 26 Jul 2017 20:59:49 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/890316246960549888 - X-Cache: - - HIT - X-Connection-Hash: - - 2fb4682a92d294795d8dd79c38ea778a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto%20/%20Tehranto&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=4 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/924814958914953217/w37Iw9Of_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '158311' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:29 GMT - Last-Modified: - - Mon, 30 Oct 2017 01:45:23 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/924814958914953217 - X-Cache: - - MISS - X-Connection-Hash: - - dc18e3b04802336cfdb2dc6123255b5f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '123' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto%20/%20Tehranto&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Roma,%20Lazio&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/917018115762020357/BYYGMeh9_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '100566' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:29 GMT - Last-Modified: - - Sun, 08 Oct 2017 13:23:30 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/917018115762020357 - X-Cache: - - MISS - X-Connection-Hash: - - 7cbc2dcd543678e10641e9720f063085 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Roma,%20Lazio&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:29 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235235941712875527.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="cd8ee50116c1f1dddcecd030b66c9490", - oauth_signature="zeI9e9LSxdBumtaIe5ysRiuJExE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487029", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '5172' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:30 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:30 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348703036696373; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:30 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_kRQ/c2wtXr1ZlpkEp2Geuw=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:30 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 7539842fe65c30eb0f27a20eeb2eebfc - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '882' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '149' - X-Transaction: - - 006af7d400bf1c69 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:09:32 +0000 2020","id":1235235941712875527,"id_str":"1235235941712875527","text":"Porcoboia - cremati... Vivi? https:\/\/t.co\/lOtqApRLaI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lOtqApRLaI","expanded_url":"https:\/\/twitter.com\/Pabloneruda54\/status\/1234255244307070977","display_url":"twitter.com\/Pabloneruda54\/\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,"user":{"id":761787475,"id_str":"761787475","name":"maurizio - gustinicchi","screen_name":"gustinicchi","location":"www.scenarieconomici.it","description":"Consulenza - Manageriale e Amministratore di azienda","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11799,"friends_count":7813,"listed_count":64,"created_at":"Thu - Aug 16 15:43:06 +0000 2012","favourites_count":169540,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":80434,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/896840995723243521\/CxXcxBfX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/896840995723243521\/CxXcxBfX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761787475\/1580637193","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234255244307070977,"quoted_status_id_str":"1234255244307070977","quoted_status":{"created_at":"Sun - Mar 01 23:12:36 +0000 2020","id":1234255244307070977,"id_str":"1234255244307070977","text":"\"Il - n''est pas mort. Ses mains et ses pieds bougeaient toujours.\" Une r\u00e9sidente - de #Wuhan a d\u00e9clar\u00e9 avoir \u00e9t\u00e9 t\u00e9moin\u2026 https:\/\/t.co\/yq8YMmmBIS","truncated":true,"entities":{"hashtags":[{"text":"Wuhan","indices":[82,88]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yq8YMmmBIS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234255244307070977","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,"user":{"id":452962295,"id_str":"452962295","name":"Pablo - Neruda \ud83d\udc1d\ud83e\udd9e","screen_name":"Pabloneruda54","location":"","description":"Seules - sont perdues d''avance les batailles qu''on ne livre pas.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3101,"friends_count":812,"listed_count":19,"created_at":"Mon - Jan 02 12:37:52 +0000 2012","favourites_count":1688,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29522,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168143216245465088\/xKC38LAv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168143216245465088\/xKC38LAv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/452962295\/1490223406","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":220,"favorite_count":142,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"fr"},"retweet_count":108,"favorite_count":113,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"es"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=www.scenarieconomici.it&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/896840995723243521/CxXcxBfX_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '203599' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:30 GMT - Last-Modified: - - Sun, 13 Aug 2017 21:06:50 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/896840995723243521 - X-Cache: - - MISS - X-Connection-Hash: - - ab86ea6d9dcc7623c8109b655bb4bfa1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=www.scenarieconomici.it&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tulle,%20France&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/938512794672074759/WMq5Cb0f_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146288' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:31 GMT - Last-Modified: - - Wed, 06 Dec 2017 20:55:41 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/938512794672074759 - X-Cache: - - MISS - X-Connection-Hash: - - 201306b4cb1ab7362533f8d790cc0d5c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tulle,%20France&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=3 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Guildford,%20UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1118113641457491968/X0f3wSLR_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '155487' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:31 GMT - Last-Modified: - - Tue, 16 Apr 2019 11:25:20 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1118113641457491968 - X-Cache: - - MISS - X-Connection-Hash: - - 68fc0ec35ec0d9ea8be127aa0accb95e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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AQARITFBUWFxgaHwkcHR4fEQsf/aAAgBAQABPxBqLiIaj1lZKotAurvW2LNojPgQroXWgnvB9hQQoNEOeYJuYveIG8vO0XVkJTQu4Idiq5WqNpUFKQN+XaJ88Xj7Hc+X9YY1oDSATbF5lm6SwGWH62qPjTIcQOEzBT7QGQXnCtPHMv8AQWZKFLflY6QqstQ59CATasbfmtPWVklaGWZEg1I0lDOZ8b+JQs0quE4u7yU/WFfKVYlBeC36xc6GqGNANpvFnys0QbGYQs8iai4rORLl+2YKoOhzOerFJ7kyMGwrvjT6kZCmOAqDfpP5zEcovWXC0pAOTwbC+oUvoFMvGY9iWqugF5loPKXl101mb1zNNmmzTFXywlURS40tNF+0u3aWfHCLSAYNWgXVWdNT5ZC3nnoiEQxayo2ita+0t02a9hevEcTd0samdGJTYAUFBb6+7KVPuUalPZLjAnArVdHMrrJgLq1HqXMCA0pnR5TT/BH70rKlvMGg6lXk1eR0/sby7uY6n9Roru5khgGW8Wl+lxL855q1E93tAy850S1jw5xEkkpcvA7jHcuko58XtvFKsiUKcCx30n9wgTByKDPWscBVBvxgkXqPg8m0yjtAQVjZoSkCxdhA5JahLFtnR3Kwjsm00D8ywFwQOgLuvECIuszIN/MCOYDDsKuBadY8z5v94CmylFfXUl2Y3wN6eeoLTIcNXUbugUrcyHAUq9QWMJVhaCuDwNviHK64HsAmSSdjX7ldbyWPLwFmjajP6j8RgTkmZPMIosnhO3r+ZcMS3Iom5tMgQwGWmE6xp3MQFCvjYhtNaYIrYFX3c8J/2T5LubfM+5Pm+U9gmqe6nsP8/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Guildford,%20UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=M31&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1230423570649665538/MPUUA-fe_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '205441' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:32 GMT - Last-Modified: - - Thu, 20 Feb 2020 09:24:54 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1230423570649665538 - X-Cache: - - MISS - X-Connection-Hash: - - 8abc81c11bf80530df5d104234196e46 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=M31&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Marietta,%20GA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/981985020649799680/ruX8TVbB_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1952' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:33 GMT - Last-Modified: - - Thu, 05 Apr 2018 19:58:47 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/981985020649799680 - X-Cache: - - HIT - X-Connection-Hash: - - cd8e5bb85123700ac0537750b18881db - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:33 GMT -- request: - method: get - uri: http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - abs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Age: - - '26224732' - Content-Type: - - image/png - Date: - - Fri, 06 Mar 2020 09:30:33 GMT - Etag: - - '"QcuRPIhOAYpzfGh0vMtQAQ=="' - Expires: - - Sat, 06 Mar 2021 09:30:33 GMT - Last-Modified: - - Sat, 22 Dec 2018 15:21:58 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - twitter-assets - X-Cache: - - HIT - X-Connection-Hash: - - 97b9e7d1341932a1fcad07625c3f5283 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '8' - X-Ton-Expected-Size: - - '504' - Content-Length: - - '504' - body: - encoding: ASCII-8BIT - string: !binary |- - iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAwFBMVEXM1t3K1dy5xc2xvca7xs+KmaVrfYtld4agrrhneYhoeoiksbufrbegrbe7xs66xs6Dk5+/ytKdqrWElKCDk6Byg5HG0NjEz9bH0dlqfIprfIuAkJ2ir7nJ09p1hpN0hZO9yNDH0tmbqbTBzNOzv8iqtsCotL6ntL7L1dy3w8yjsLqVpK+Onam8x9CRn6ttf43CzdWMm6dmeIeLmqauusSwvMVxgpCToa29ydFneIeRoKzK1Nttfo2yvseZp7KHl6OOgUPZAAAA80lEQVR4Ae3SA5oDQRgE0Aortm1zNub9T7Xm4O/+uMo7w8O/duNyezxuF3R5fX4+8vu80BII8lUoDA0RfhKFUizIT4JxqCT4RQIKSZokIUvRJAVZmiYZyLI0yUIWpEkQohwtcpDkaZGHpECLAkRFmpQgK9OkDFmFJhXIqjV+Ua9CoZHlJ9kGlJqtLF9lW01oaXe6vX6308aPMRiOxpPJeDQcQMd0Nuer+WwKlcXS4CfG3QKi1Zwm8xUEAYMWRkAZSbvT2qAtYw1bzQ0dbJqws6WjLWzs9nS038HqQMEBFscTBacjzDoUnWF2oegCsytFV7x6ADhgICRy9ELGAAAAAElFTkSuQmCC - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Houston,%20TX&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218225157719969792/WOmrXbVa_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '576334' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:33 GMT - Last-Modified: - - Fri, 17 Jan 2020 17:32:45 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1218225157719969792 - X-Cache: - - MISS - X-Connection-Hash: - - 297fcd496969ebd7750baae844eac0e0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Houston,%20TX&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:33 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1235246686437543940&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="af2707a027ffa061a01997c97274ed0d", - oauth_signature="79tPfPQWFhVnfNOftlDTTu8nR9A%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487033", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '532732' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:34 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:34 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348703437136962; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:34 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_tFs32ti76gKjkN3PTtLE5A=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:34 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 7495a8ce5eea0139f75be09d1bed3ab3 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '175' - X-Rate-Limit-Reset: - - '1583487846' - X-Response-Time: - - '352' - X-Transaction: - - 00af58e7002acbd2 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Wed Mar 04 16:52:14 +0000 2020","id":1235246686374592514,"id_str":"1235246686374592514","text":"RT - @VivianaaFerrari: Argentina pa\u00eds donde, en la calle, te venden de todo - para comer: salamines, quesos, sandwich de todo tipo, alfajores,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VivianaaFerrari","name":"Viviana - Ferrari","id":358449853,"id_str":"358449853","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76554791,"id_str":"76554791","name":"Vincent - Vega","screen_name":"Elangeldelarca","location":"Santa F\u00e9, Argentina","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":441,"friends_count":1706,"listed_count":1,"created_at":"Wed - Sep 23 04:10:06 +0000 2009","favourites_count":66822,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41744,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"873659","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\/1235576992663318528\/lDTtErSU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235576992663318528\/lDTtErSU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76554791\/1579103328","profile_link_color":"7A9E28","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"E3D2A4","profile_text_color":"C23A3A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:48:34 +0000 2020","id":1235245765552898052,"id_str":"1235245765552898052","text":"Argentina - pa\u00eds donde, en la calle, te venden de todo para comer: salamines, quesos, - sandwich de todo tipo, alfajore\u2026 https:\/\/t.co\/wZOL9tVsSy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wZOL9tVsSy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245765552898052","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":358449853,"id_str":"358449853","name":"Viviana - Ferrari","screen_name":"VivianaaFerrari","location":"","description":"BASTA - DE NI\u00d1OS SUFRIENDO! Quer\u00e9s q se termine la pobreza? DEJ\u00c1 DE - PARIR! Sos pobre? PONETE FORRO! As\u00ed se termina la pobreza. Gracias!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16349,"friends_count":10174,"listed_count":20,"created_at":"Fri - Aug 19 23:16:17 +0000 2011","favourites_count":82981,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":65123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/3564223216\/875b06d11a5b02a489f5d69e9c288719_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3564223216\/875b06d11a5b02a489f5d69e9c288719_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/358449853\/1399338872","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":82,"favorite_count":166,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":82,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686173302787,"id_str":"1235246686173302787","text":"RT - @DHSCgovuk: CORONAVIRUS INFORMATION:\n\nWash your hands more often than usual, - for 20 seconds each time with soap and water, or use hand s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DHSCgovuk","name":"Department - of Health and Social Care","id":37963496,"id_str":"37963496","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785933170784948224,"id_str":"785933170784948224","name":"#M - \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","screen_name":"BarrowBoyPics","location":"London - \ud83c\uddec\ud83c\udde7","description":"Long suffering Spurs fan - but will - always be TTID. #COYS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":809,"listed_count":0,"created_at":"Tue - Oct 11 20:00:44 +0000 2016","favourites_count":5906,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1533,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1125142467194572801\/S8ycJ0VB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1125142467194572801\/S8ycJ0VB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785933170784948224\/1555563693","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:55:00 +0000 2020","id":1235096386506350592,"id_str":"1235096386506350592","text":"CORONAVIRUS - INFORMATION:\n\nWash your hands more often than usual, for 20 seconds each - time with soap and water, or u\u2026 https:\/\/t.co\/N9Xt3Mg2XG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/N9Xt3Mg2XG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235096386506350592","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":37963496,"id_str":"37963496","name":"Department - of Health and Social Care","screen_name":"DHSCgovuk","location":"England","description":"We - support ministers in leading the nation\u2019s health and social care to help - people live more independent, healthier lives for longer.","url":"https:\/\/t.co\/huTVx4oOR0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/huTVx4oOR0","expanded_url":"http:\/\/www.gov.uk\/dhsc","display_url":"gov.uk\/dhsc","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":331204,"friends_count":804,"listed_count":3113,"created_at":"Tue - May 05 16:49:31 +0000 2009","favourites_count":1951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10985,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"009781","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195323035483553792\/dQNaMFyN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195323035483553792\/dQNaMFyN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37963496\/1583394346","profile_link_color":"18828E","profile_sidebar_border_color":"99D5CD","profile_sidebar_fill_color":"EDFEFC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2339,"favorite_count":2250,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2339,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686169174017,"id_str":"1235246686169174017","text":"RT - @86thatplease: #Globalism is the cause of the extreme global fallout due to - the #coronavirus \n@ChelseaClinton your parents & their glob\u2026","truncated":false,"entities":{"hashtags":[{"text":"Globalism","indices":[18,28]},{"text":"coronavirus","indices":[83,95]}],"symbols":[],"user_mentions":[{"screen_name":"86thatplease","name":"Michalli - \ud83e\udd8b \u05de\u05d9\u05db\u05dc","id":944237451148775424,"id_str":"944237451148775424","indices":[3,16]},{"screen_name":"ChelseaClinton","name":"Chelsea - Clinton","id":757303975,"id_str":"757303975","indices":[97,112]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":930283648145911808,"id_str":"930283648145911808","name":"Shanna\u274c\ud83d\udd25","screen_name":"Shanna1627","location":"SchittHole - City, Great USA ","description":"Opinions are different but Respect is mutual. - #GodBlessAmerica #GodBlessPresidentTrump #IStandWithIsrael #WeRemember IFB, - if I didn''t please DM \ud83c\uddfa\ud83c\uddf8\ud83c\uddee\ud83c\uddf1\ud83c\uddee\ud83c\uddf3","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12789,"friends_count":11541,"listed_count":12,"created_at":"Tue - Nov 14 03:58:00 +0000 2017","favourites_count":163617,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":68970,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/963921263356981248\/iSOyncJ5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963921263356981248\/iSOyncJ5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930283648145911808\/1578281120","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:24:51 +0000 2020","id":1235134100555681792,"id_str":"1235134100555681792","text":"#Globalism - is the cause of the extreme global fallout due to the #coronavirus \n@ChelseaClinton - your parents & thei\u2026 https:\/\/t.co\/wMVstAXxcD","truncated":true,"entities":{"hashtags":[{"text":"Globalism","indices":[0,10]},{"text":"coronavirus","indices":[65,77]}],"symbols":[],"user_mentions":[{"screen_name":"ChelseaClinton","name":"Chelsea - Clinton","id":757303975,"id_str":"757303975","indices":[79,94]}],"urls":[{"url":"https:\/\/t.co\/wMVstAXxcD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235134100555681792","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":944237451148775424,"id_str":"944237451148775424","name":"Michalli - \ud83e\udd8b \u05de\u05d9\u05db\u05dc","screen_name":"86thatplease","location":"Israel","description":"You - can find me in Jerusalem \ud83c\uddee\ud83c\uddf1 #Bibi \u2764\ufe0f #OnlyBibi - \ud83c\uddee\ud83c\uddf1 \ud83c\uddfa\ud83c\uddf8#MAGA #Trump2020\ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":868,"friends_count":617,"listed_count":8,"created_at":"Fri - Dec 22 16:05:26 +0000 2017","favourites_count":13612,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16996,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234493185910607872\/DAaZxXT5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234493185910607872\/DAaZxXT5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/944237451148775424\/1574645470","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1232374966747828224,"quoted_status_id_str":"1232374966747828224","quoted_status":{"created_at":"Tue - Feb 25 18:41:03 +0000 2020","id":1232374966747828224,"id_str":"1232374966747828224","text":"President - Trump has left the U.S. dangerously underprepared to face a public health - crisis like a #coronavirus outb\u2026 https:\/\/t.co\/xbfxG0FA5P","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[98,110]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xbfxG0FA5P","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1232374966747828224","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":757303975,"id_str":"757303975","name":"Chelsea - Clinton","screen_name":"ChelseaClinton","location":"New York, NY","description":"Mom - of Charlotte, Aidan & Jasper, Married to Marc, Advocate, Author, Teacher, - @ClintonFdn & @CHAI_health & @HealthierGen, New Yorker","url":"https:\/\/t.co\/zhz54dT8kv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhz54dT8kv","expanded_url":"https:\/\/www.facebook.com\/chelseaclinton","display_url":"facebook.com\/chelseaclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2590613,"friends_count":679,"listed_count":10009,"created_at":"Tue - Aug 14 14:55:27 +0000 2012","favourites_count":21761,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":13193,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F4F1E5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614488068905652224\/2tUcF22u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614488068905652224\/2tUcF22u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/757303975\/1484178400","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2061,"favorite_count":5379,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1232374966747828224,"quoted_status_id_str":"1232374966747828224","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686101835776,"id_str":"1235246686101835776","text":"RT - @go4itbas: \ud83c\udf1eGood Morning #Patriots\ud83d\ude0a\n\ud83c\uddfa\ud83c\uddf8 - #KAG \ud83c\uddfa\ud83c\uddf8 Vote #Trump2020 \ud83c\uddfa\ud83c\uddf8\nBloomberg - Gets Fact-Checked Mid-Interview For Lying About Trump Corona\u2026","truncated":false,"entities":{"hashtags":[{"text":"Patriots","indices":[28,37]},{"text":"KAG","indices":[42,46]},{"text":"Trump2020","indices":[55,65]}],"symbols":[],"user_mentions":[{"screen_name":"go4itbas","name":"Proud - American Veteran \ud83c\uddfa\ud83c\uddf8","id":859592034,"id_str":"859592034","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161707010334658560,"id_str":"1161707010334658560","name":"CoCo - Trump Girl\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f #IStandWithFlynn","screen_name":"CoConator29","location":"A - floor below hell, Arizona\ud83e\udd75","description":"\ud83c\uddfa\ud83c\uddf8My - Patriot Blood runs deep #God #Conservative #1A #2A #Prolife\ud83d\udc76\ud83c\udffc - #USA #TrumpIsMyPresident \u2665\ufe0f#MAGA\ud83d\udcaf#KAG\ud83c\uddfa\ud83c\uddf8#AntiFeminist\ud83e\udd28other - acct locked @cococupcake29","url":"https:\/\/t.co\/OPV898LX3R","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OPV898LX3R","expanded_url":"https:\/\/mikeflynndefensefund.org\/","display_url":"mikeflynndefensefund.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13401,"friends_count":12780,"listed_count":2,"created_at":"Wed - Aug 14 18:32:19 +0000 2019","favourites_count":9813,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16702,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161709801069412352\/PFRdPX5S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161709801069412352\/PFRdPX5S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161707010334658560\/1565808819","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:44:28 +0000 2020","id":1235184333473943553,"id_str":"1235184333473943553","text":"\ud83c\udf1eGood - Morning #Patriots\ud83d\ude0a\n\ud83c\uddfa\ud83c\uddf8 #KAG \ud83c\uddfa\ud83c\uddf8 - Vote #Trump2020 \ud83c\uddfa\ud83c\uddf8\nBloomberg Gets Fact-Checked Mid-Interview - For Lying About Tr\u2026 https:\/\/t.co\/UbsavZEMg2","truncated":true,"entities":{"hashtags":[{"text":"Patriots","indices":[14,23]},{"text":"KAG","indices":[28,32]},{"text":"Trump2020","indices":[41,51]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UbsavZEMg2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235184333473943553","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":859592034,"id_str":"859592034","name":"Proud - American Veteran \ud83c\uddfa\ud83c\uddf8","screen_name":"go4itbas","location":"New - Hampshire, USA","description":"AmericanPatriot \ud83c\uddfa\ud83c\uddf8MAGA - Defend 2A For Constitution KAG Retired Veteran IFB All Patriots \ud83d\udc49WWG1WGA\ud83d\udc48 - \u274cStand United We Are Winning \u274c VOTE Trump2020 America1st","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60747,"friends_count":61999,"listed_count":9,"created_at":"Wed - Oct 03 12:16:28 +0000 2012","favourites_count":64281,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":196483,"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\/1196565447925288963\/k27VwJO9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196565447925288963\/k27VwJO9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/859592034\/1423518660","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":342,"favorite_count":239,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":342,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246686001225728,"id_str":"1235246686001225728","text":"RT - @airnewsalerts: Union Health Ministry issues a school advisory in the wake - of novel #CoronaVirus. \n\nSchools have been advised to avoid a\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[87,99]}],"symbols":[],"user_mentions":[{"screen_name":"airnewsalerts","name":"All - India Radio News","id":1056850669,"id_str":"1056850669","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2507376296,"id_str":"2507376296","name":"BtKAS","screen_name":"BtKAS_","location":"India","description":"Jai - Hind","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":1185,"listed_count":0,"created_at":"Mon - May 19 13:03:13 +0000 2014","favourites_count":244,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226081737291132928\/HxTANQaW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226081737291132928\/HxTANQaW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:48:18 +0000 2020","id":1235245697764446210,"id_str":"1235245697764446210","text":"Union - Health Ministry issues a school advisory in the wake of novel #CoronaVirus. - \n\nSchools have been advised to av\u2026 https:\/\/t.co\/GoAWwUEbRO","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[68,80]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GoAWwUEbRO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245697764446210","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1056850669,"id_str":"1056850669","name":"All - India Radio News","screen_name":"airnewsalerts","location":"New Delhi, India","description":"Official - account of News Services Division, All India Radio.\n\n\u0939\u093f\u0902\u0926\u0940 - \u0915\u0947 \u0938\u092e\u093e\u091a\u093e\u0930\u094b\u0902 \u0915\u0947 - \u0932\u093f\u090f @AIRNewsHindi \u0915\u094b \u092b\u0949\u0932\u094b \u0915\u0930\u0947\u0902!\nFollow - @AIRNewsUrdu for news updates in Urdu","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2232568,"friends_count":13,"listed_count":2702,"created_at":"Thu - Jan 03 04:15:45 +0000 2013","favourites_count":605,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":259326,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"666655","profile_background_image_url":"http:\/\/abs.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\/894885297543983104\/JNdQwD8p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/894885297543983104\/JNdQwD8p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1056850669\/1572580529","profile_link_color":"467895","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":82,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":47,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685812658176,"id_str":"1235246685812658176","text":"RT - @Diego17Nicolas: 63 femicidios en 2 meses,en Argentina no hay coronavirus,hay - algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Diego17Nicolas","name":"Diego - Nicol\u00e1s Manzur","id":1232174067207278592,"id_str":"1232174067207278592","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800743582055337984,"id_str":"800743582055337984","name":"ro","screen_name":"recheftcabello","location":"","description":"knowing - what to ignore","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1191,"friends_count":1915,"listed_count":6,"created_at":"Mon - Nov 21 16:52:01 +0000 2016","favourites_count":95633,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52475,"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\/1216128063135797248\/FzlY5ohN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216128063135797248\/FzlY5ohN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800743582055337984\/1578782500","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 17:52:48 +0000 2020","id":1234537151536287745,"id_str":"1234537151536287745","text":"63 - femicidios en 2 meses,en Argentina no hay coronavirus,hay algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232174067207278592,"id_str":"1232174067207278592","name":"Diego - Nicol\u00e1s Manzur","screen_name":"Diego17Nicolas","location":"","description":"\u2649\n\ud83c\udf47 - Mendoza-Argentina\ud83c\udf77\nig: 17diego_nicolas \n\nCARC \ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":101,"listed_count":0,"created_at":"Tue - Feb 25 05:22:56 +0000 2020","favourites_count":172,"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:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232174067207278592\/1583297600","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12833,"favorite_count":22725,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":12833,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685762326530,"id_str":"1235246685762326530","text":"RT - @alejowo_: Personas enfermas con cualquier enfermedad:\n*se queda en cama\ud83e\udd27\ud83e\udd12\ud83d\ude37*\n\nPersonas - con coronavirus: *literalmente viajan por todo el\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alejowo_","name":"alejnwn","id":848531775131353088,"id_str":"848531775131353088","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1005962710494928897,"id_str":"1005962710494928897","name":"Pollo\ud83c\udd71\ufe0f\ud83c\udd7e\ufe0f\ud83c\udd71\ufe0f\ud83c\udd7e\ufe0f","screen_name":"Mons0115","location":"Mendoza, - Argentina","description":"Peroooooooooo Ooooooooooorep","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":139,"listed_count":0,"created_at":"Sun - Jun 10 23:59:34 +0000 2018","favourites_count":18995,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6394,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226042199076409344\/7o0MwlGb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226042199076409344\/7o0MwlGb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1005962710494928897\/1562808946","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:26:34 +0000 2020","id":1235210029801840642,"id_str":"1235210029801840642","text":"Personas - enfermas con cualquier enfermedad:\n*se queda en cama\ud83e\udd27\ud83e\udd12\ud83d\ude37*\n\nPersonas - con coronavirus: *literalmente viajan por todo el mundo*","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":848531775131353088,"id_str":"848531775131353088","name":"alejnwn","screen_name":"alejowo_","location":"de_dust2","description":"\u3164\n\n\u3164\n\n\u3164","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9429,"friends_count":324,"listed_count":2,"created_at":"Sun - Apr 02 13:45:14 +0000 2017","favourites_count":44633,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10023,"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\/1234990998373195776\/mnEhZHGt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234990998373195776\/mnEhZHGt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848531775131353088\/1560008553","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":85,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685728772097,"id_str":"1235246685728772097","text":"RT - @RTultimahora: \u00daLTIMA HORA\n\nEl condado de Los \u00c1ngeles declara - una emergencia local tras registrar 6 nuevos casos de coronavirus https:\/\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RTultimahora","name":"RT - \u00daltima Hora","id":961925545809281024,"id_str":"961925545809281024","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67479133,"id_str":"67479133","name":"angel","screen_name":"angellosdos","location":"Santiago","description":"","url":"http:\/\/t.co\/o0bD338RJ7","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o0bD338RJ7","expanded_url":"https:\/\/www.twitter.com","display_url":"twitter.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":914,"friends_count":1567,"listed_count":6,"created_at":"Fri - Aug 21 01:07:38 +0000 2009","favourites_count":180901,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54344,"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\/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\/779127700724256770\/y7eRjTN7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/779127700724256770\/y7eRjTN7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67479133\/1474691044","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:49:03 +0000 2020","id":1235245884260089867,"id_str":"1235245884260089867","text":"\u00daLTIMA - HORA\n\nEl condado de Los \u00c1ngeles declara una emergencia local tras registrar - 6 nuevos casos de coronavirus\u2026 https:\/\/t.co\/oLAz6G8s1k","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oLAz6G8s1k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245884260089867","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":961925545809281024,"id_str":"961925545809281024","name":"RT - \u00daltima Hora","screen_name":"RTultimahora","location":"Mosc\u00fa, Rusia","description":"\ud83d\udd34Las - \u00faltimas noticias del acontecer internacional. \n\ud83d\udd34La informaci\u00f3n - m\u00e1s relevante al minuto. \n\ud83d\udce3Una cuenta m\u00e1s del equipo - de redes sociales de @ActualidadRT \ud83d\ude4c","url":"https:\/\/t.co\/lo2KB3neoz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lo2KB3neoz","expanded_url":"https:\/\/actualidad.rt.com\/","display_url":"actualidad.rt.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":123892,"friends_count":1,"listed_count":596,"created_at":"Fri - Feb 09 11:31:36 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14739,"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\/1220722924308639752\/wRoIz1Nr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220722924308639752\/wRoIz1Nr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961925545809281024\/1579878001","profile_link_color":"B80F0A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":208,"favorite_count":254,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":208,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685711978496,"id_str":"1235246685711978496","text":"RT - @JoelPostbad: Koba la D quand il verra que tout les festivals qui l\u2019ont - d\u00e9programm\u00e9 n\u2019auront pas lieu \u00e0 cause du coronavirus https:\/\/t.c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoelPostbad","name":"ASM - J\u2b55\ufe0fEL 90 \ud83d\udc10","id":1129704814508683264,"id_str":"1129704814508683264","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":734211359060201472,"id_str":"734211359060201472","name":"Ma2t","screen_name":"Forfait50go","location":"Nice, - France","description":"\ud83d\udd0aAnime, jv. \nmatteo_ur","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":486,"listed_count":0,"created_at":"Sun - May 22 02:36:43 +0000 2016","favourites_count":3908,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6773,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234227328512864257\/t4yZR24M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234227328512864257\/t4yZR24M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/734211359060201472\/1581443654","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:18:41 +0000 2020","id":1235132547404881920,"id_str":"1235132547404881920","text":"Koba - la D quand il verra que tout les festivals qui l\u2019ont d\u00e9programm\u00e9 - n\u2019auront pas lieu \u00e0 cause du coronavirus https:\/\/t.co\/ChrWc14xoQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1205852737377845249,"id_str":"1205852737377845249","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1205852737377845249\/pu\/img\/cCTUg_pLWj5UkD46.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1205852737377845249\/pu\/img\/cCTUg_pLWj5UkD46.jpg","url":"https:\/\/t.co\/ChrWc14xoQ","display_url":"pic.twitter.com\/ChrWc14xoQ","expanded_url":"https:\/\/twitter.com\/0Kln95\/status\/1205853122758877184\/video\/1","type":"photo","sizes":{"small":{"w":675,"h":680,"resize":"fit"},"large":{"w":748,"h":754,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":748,"h":754,"resize":"fit"}},"source_status_id":1205853122758877184,"source_status_id_str":"1205853122758877184","source_user_id":1145801927529291779,"source_user_id_str":"1145801927529291779"}]},"extended_entities":{"media":[{"id":1205852737377845249,"id_str":"1205852737377845249","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1205852737377845249\/pu\/img\/cCTUg_pLWj5UkD46.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1205852737377845249\/pu\/img\/cCTUg_pLWj5UkD46.jpg","url":"https:\/\/t.co\/ChrWc14xoQ","display_url":"pic.twitter.com\/ChrWc14xoQ","expanded_url":"https:\/\/twitter.com\/0Kln95\/status\/1205853122758877184\/video\/1","type":"video","sizes":{"small":{"w":675,"h":680,"resize":"fit"},"large":{"w":748,"h":754,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":748,"h":754,"resize":"fit"}},"source_status_id":1205853122758877184,"source_status_id_str":"1205853122758877184","source_user_id":1145801927529291779,"source_user_id_str":"1145801927529291779","video_info":{"aspect_ratio":[374,377],"duration_millis":8340,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1205852737377845249\/pu\/vid\/320x322\/HHQc4NykCi-th5BP.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1205852737377845249\/pu\/vid\/720x724\/kd0z0vpNZpEPf1e_.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1205852737377845249\/pu\/vid\/360x362\/DML9GX5UJssB-N_u.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1205852737377845249\/pu\/pl\/EpNvZbJa7nrB_DjX.m3u8?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1129704814508683264,"id_str":"1129704814508683264","name":"ASM - J\u2b55\ufe0fEL 90 \ud83d\udc10","screen_name":"JoelPostbad","location":"Monaco","description":"work - for @Konamifr \/ @winamax - Ambassadeur @Asmonacoesports \/ @venumfight \ud83d\udc0d\/ - contact@bemutated.com \/ instagram - Postbadivoirien","url":"https:\/\/t.co\/ZpRM2TQ22z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZpRM2TQ22z","expanded_url":"http:\/\/Twitch.tv\/postbadivoirien","display_url":"Twitch.tv\/postbadivoirien","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":141068,"friends_count":1211,"listed_count":61,"created_at":"Sat - May 18 11:06:31 +0000 2019","favourites_count":36403,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218812607320162305\/vfz-mP0M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218812607320162305\/vfz-mP0M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1129704814508683264\/1573406853","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12889,"favorite_count":38330,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":12889,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685665800192,"id_str":"1235246685665800192","text":"RT - @Diego17Nicolas: 63 femicidios en 2 meses,en Argentina no hay coronavirus,hay - algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Diego17Nicolas","name":"Diego - Nicol\u00e1s Manzur","id":1232174067207278592,"id_str":"1232174067207278592","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1216371415,"id_str":"1216371415","name":"D\ud83c\udf38","screen_name":"dddani27","location":"Bernal, - Bs. As ","description":"\ud83d\udcab\ud83d\udcf7 danicardaci","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":230,"listed_count":0,"created_at":"Sun - Feb 24 19:30:59 +0000 2013","favourites_count":3496,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5131,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176272054766776321\/XcSuPtEd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176272054766776321\/XcSuPtEd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1216371415\/1464307555","profile_link_color":"F58EA8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 17:52:48 +0000 2020","id":1234537151536287745,"id_str":"1234537151536287745","text":"63 - femicidios en 2 meses,en Argentina no hay coronavirus,hay algo peor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232174067207278592,"id_str":"1232174067207278592","name":"Diego - Nicol\u00e1s Manzur","screen_name":"Diego17Nicolas","location":"","description":"\u2649\n\ud83c\udf47 - Mendoza-Argentina\ud83c\udf77\nig: 17diego_nicolas \n\nCARC \ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":101,"listed_count":0,"created_at":"Tue - Feb 25 05:22:56 +0000 2020","favourites_count":172,"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:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235044341175013377\/rqRu0uv2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232174067207278592\/1583297600","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12833,"favorite_count":22725,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":12833,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685636325376,"id_str":"1235246685636325376","text":"RT - @shah_rymie: Maybe we are the virus, and ''coronavirus'' is earth antibodies","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"shah_rymie","name":"goku - kakarott","id":762406104,"id_str":"762406104","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":899159609708994560,"id_str":"899159609708994560","name":"\ud83c\udf88","screen_name":"alifvhmd","location":"Kuala - Lumpur","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":98,"listed_count":0,"created_at":"Sun - Aug 20 06:42:11 +0000 2017","favourites_count":2978,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7988,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230210293768192000\/LazEUcj6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230210293768192000\/LazEUcj6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/899159609708994560\/1581540132","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 17:58:08 +0000 2020","id":1234538494770307072,"id_str":"1234538494770307072","text":"Maybe - we are the virus, and ''coronavirus'' is earth antibodies https:\/\/t.co\/F6Z76llcCH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/F6Z76llcCH","expanded_url":"https:\/\/twitter.com\/verge\/status\/1234524097679417344","display_url":"twitter.com\/verge\/status\/1\u2026","indices":[62,85]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":762406104,"id_str":"762406104","name":"goku - kakarott","screen_name":"shah_rymie","location":"malaysia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":319,"listed_count":0,"created_at":"Thu - Aug 16 21:55:57 +0000 2012","favourites_count":1601,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5059,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"302438","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431013559787462656\/O0hpUiyv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431013559787462656\/O0hpUiyv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/762406104\/1401508555","profile_link_color":"B21A1A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CFC194","profile_text_color":"AA5C58","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234524097679417344,"quoted_status_id_str":"1234524097679417344","quoted_status":{"created_at":"Mon - Mar 02 17:00:55 +0000 2020","id":1234524097679417344,"id_str":"1234524097679417344","text":"Maps - show drastic drop in China\u2019s air pollution after coronavirus quarantine - https:\/\/t.co\/2P6MAIqMIc https:\/\/t.co\/baBOfefusQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2P6MAIqMIc","expanded_url":"https:\/\/www.theverge.com\/2020\/3\/2\/21161324\/coronavirus-quarantine-china-maps-air-pollution?utm_campaign=theverge&utm_content=chorus&utm_medium=social&utm_source=twitter","display_url":"theverge.com\/2020\/3\/2\/21161\u2026","indices":[77,100]}],"media":[{"id":1234524096416886785,"id_str":"1234524096416886785","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHpH_mWsAEyOkv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHpH_mWsAEyOkv.jpg","url":"https:\/\/t.co\/baBOfefusQ","display_url":"pic.twitter.com\/baBOfefusQ","expanded_url":"https:\/\/twitter.com\/verge\/status\/1234524097679417344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":545,"resize":"fit"},"medium":{"w":720,"h":545,"resize":"fit"},"small":{"w":680,"h":515,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234524096416886785,"id_str":"1234524096416886785","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHpH_mWsAEyOkv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHpH_mWsAEyOkv.jpg","url":"https:\/\/t.co\/baBOfefusQ","display_url":"pic.twitter.com\/baBOfefusQ","expanded_url":"https:\/\/twitter.com\/verge\/status\/1234524097679417344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":545,"resize":"fit"},"medium":{"w":720,"h":545,"resize":"fit"},"small":{"w":680,"h":515,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.voxmedia.com\" rel=\"nofollow\"\u003eVox Media\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":275686563,"id_str":"275686563","name":"The - Verge","screen_name":"verge","location":"New York","description":"https:\/\/t.co\/W2SFxIXkC4 - covers life in the future.","url":"http:\/\/t.co\/W2SFxIXkC4","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/W2SFxIXkC4","expanded_url":"http:\/\/www.theverge.com","display_url":"theverge.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/W2SFxIXkC4","expanded_url":"http:\/\/www.theverge.com","display_url":"theverge.com","indices":[0,23]}]}},"protected":false,"followers_count":2634432,"friends_count":167,"listed_count":37419,"created_at":"Fri - Apr 01 19:54:22 +0000 2011","favourites_count":1428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":171144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/877903823133704194\/Mqp1PXU8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877903823133704194\/Mqp1PXU8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275686563\/1569273426","profile_link_color":"EC008C","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1449,"favorite_count":1879,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":21671,"favorite_count":19147,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234524097679417344,"quoted_status_id_str":"1234524097679417344","retweet_count":21671,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685476933633,"id_str":"1235246685476933633","text":"RT - @OpIndia_com: \u201cCoughing in public these days is like shouting Allahu - Akbar\u201d: Syria origin American author''s tweet wins Internet https:\/\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OpIndia_com","name":"OpIndia.com","id":74980737,"id_str":"74980737","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218745496,"id_str":"218745496","name":"D - P","screen_name":"dp1414dp","location":"India","description":"NONE OF US IS - AS GOOD AS ALL OF US","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":1059,"listed_count":1,"created_at":"Tue - Nov 23 04:36:01 +0000 2010","favourites_count":770,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11989,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152302764191449088\/agV70OOV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152302764191449088\/agV70OOV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218745496\/1563565363","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 10:40:00 +0000 2020","id":1235153009866403840,"id_str":"1235153009866403840","text":"\u201cCoughing - in public these days is like shouting Allahu Akbar\u201d: Syria origin American - author''s tweet wins Internet https:\/\/t.co\/YmlsDjqZ0r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YmlsDjqZ0r","expanded_url":"https:\/\/www.opindia.com\/2020\/03\/coughing-public-coronavirus-allahu-akbar-tweet\/","display_url":"opindia.com\/2020\/03\/coughi\u2026","indices":[114,137]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":74980737,"id_str":"74980737","name":"OpIndia.com","screen_name":"OpIndia_com","location":"New - Delhi","description":"News and opinions website, bringing the right side of - India to you.","url":"https:\/\/t.co\/61RZ89DYwJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/61RZ89DYwJ","expanded_url":"https:\/\/www.opindia.com","display_url":"opindia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247162,"friends_count":127,"listed_count":638,"created_at":"Thu - Sep 17 10:25:56 +0000 2009","favourites_count":73,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":44776,"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\/1053913042176495616\/zz0ZWkjl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053913042176495616\/zz0ZWkjl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74980737\/1540283107","profile_link_color":"FF9933","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":492,"favorite_count":1288,"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685363875840,"id_str":"1235246685363875840","text":"RT - @spnlnv: comunque questo coronavirus ha scatenato il panico, ma le persone - non hanno ancora capito che oltre a lavarsi le mani dovrebber\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"spnlnv","name":"Luciano - Spinelli","id":3021327377,"id_str":"3021327377","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1235242815682211842,"id_str":"1235242815682211842","name":"@_icapellidispinelli_","screen_name":"icapellidispin2","location":"Veneto, - Italia","description":"ehi, se ti va seguimi pure su instagram, questa \u00e8 - la mia page @_icapellidispinelli_","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":39,"listed_count":0,"created_at":"Wed - Mar 04 16:37:09 +0000 2020","favourites_count":38,"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\/1235243025649020928\/8CX4sqoE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235243025649020928\/8CX4sqoE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1235242815682211842\/1583421722","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:12:17 +0000 2020","id":1235236634012110849,"id_str":"1235236634012110849","text":"comunque - questo coronavirus ha scatenato il panico, ma le persone non hanno ancora - capito che oltre a lavarsi le ma\u2026 https:\/\/t.co\/GkWoOeuthm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GkWoOeuthm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235236634012110849","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3021327377,"id_str":"3021327377","name":"Luciano - Spinelli","screen_name":"spnlnv","location":"Milano","description":"life\u2019s - too short to waste a second #TeamLuciano business.lucks@gmail.com order merch - here\u2193","url":"https:\/\/t.co\/8deqCl3kua","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8deqCl3kua","expanded_url":"https:\/\/spnlnv.bigcartel.com","display_url":"spnlnv.bigcartel.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":135992,"friends_count":1311,"listed_count":41,"created_at":"Fri - Feb 06 11:42:08 +0000 2015","favourites_count":23160,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8152,"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\/1215021251506450432\/32ebKMn6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215021251506450432\/32ebKMn6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3021327377\/1582935751","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":285,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":22,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685355376643,"id_str":"1235246685355376643","text":"RT - @indemtel: Prime Minister of Israel Benjamin Netanyahu @netanyahu encourages - Israelis to adopt the Indian way of greeting #Namaste at a\u2026","truncated":false,"entities":{"hashtags":[{"text":"Namaste","indices":[125,133]}],"symbols":[],"user_mentions":[{"screen_name":"indemtel","name":"India - in Israel","id":3222505627,"id_str":"3222505627","indices":[3,12]},{"screen_name":"netanyahu","name":"Benjamin - Netanyahu","id":17061263,"id_str":"17061263","indices":[58,68]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3606548233,"id_str":"3606548233","name":"Manish - Kr Bhuyan","screen_name":"bhuyan_manish","location":"","description":"Engineering - Student,Big fan of Hrithik Roshan...And if u hate Modi...Please Unfollow me - #Jai Hind","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":374,"listed_count":0,"created_at":"Fri - Sep 18 15:49:01 +0000 2015","favourites_count":16780,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1064,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229060347710959626\/FcWmTT4P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229060347710959626\/FcWmTT4P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3606548233\/1580534222","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:03:12 +0000 2020","id":1235219248903073800,"id_str":"1235219248903073800","text":"Prime - Minister of Israel Benjamin Netanyahu @netanyahu encourages Israelis to adopt - the Indian way of greeting\u2026 https:\/\/t.co\/jSiRbXoUgi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"netanyahu","name":"Benjamin - Netanyahu","id":17061263,"id_str":"17061263","indices":[44,54]}],"urls":[{"url":"https:\/\/t.co\/jSiRbXoUgi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235219248903073800","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222505627,"id_str":"3222505627","name":"India - in Israel","screen_name":"indemtel","location":"140 Hayarkon, Tel Aviv, Israel","description":"The - Embassy of India in Israel is committed to strengthening all round bilateral - cooperation between India and Israel.","url":"https:\/\/t.co\/dY8usSTz5y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dY8usSTz5y","expanded_url":"https:\/\/www.indembassyisrael.gov.in\/","display_url":"indembassyisrael.gov.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17634,"friends_count":53,"listed_count":52,"created_at":"Thu - May 21 16:52:58 +0000 2015","favourites_count":130,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":981,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/883384854322302977\/NEui3xOi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/883384854322302977\/NEui3xOi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222505627\/1580719153","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10946,"favorite_count":42572,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10946,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685132951552,"id_str":"1235246685132951552","text":"RT - @TOIHyderabad: Coronavirus scare: Mindspace IT Park in Hyderabad partially - closed https:\/\/t.co\/ORPiEubWHT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TOIHyderabad","name":"TOI - Hyderabad","id":31059478,"id_str":"31059478","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/ORPiEubWHT","expanded_url":"http:\/\/toi.in\/otdcfZ82","display_url":"toi.in\/otdcfZ82","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":962913796099485696,"id_str":"962913796099485696","name":"Simhadri - CH","screen_name":"simhadribolarum","location":"Bolarum, Secunderabad","description":"Retd - govt employee, Social worker\nPresident, Federation of New Bolarum Colonies - Welfare Association ( FNBC )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":109,"listed_count":2,"created_at":"Mon - Feb 12 04:58:33 +0000 2018","favourites_count":29400,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25298,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/962918033483165696\/LUJn3F4H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/962918033483165696\/LUJn3F4H_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:00:02 +0000 2020","id":1235127854653771778,"id_str":"1235127854653771778","text":"Coronavirus - scare: Mindspace IT Park in Hyderabad partially closed https:\/\/t.co\/ORPiEubWHT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ORPiEubWHT","expanded_url":"http:\/\/toi.in\/otdcfZ82","display_url":"toi.in\/otdcfZ82","indices":[67,90]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.toi.in\" rel=\"nofollow\"\u003ecmssocialservice\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31059478,"id_str":"31059478","name":"TOI - Hyderabad","screen_name":"TOIHyderabad","location":"","description":"Your - city. Your neighborhood. Your block. Covered for you by https:\/\/t.co\/VSKi1mkZBr","url":"https:\/\/t.co\/iufrvgtiWP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iufrvgtiWP","expanded_url":"http:\/\/timesofindia.indiatimes.com\/city\/hyderabad","display_url":"timesofindia.indiatimes.com\/city\/hyderabad","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/VSKi1mkZBr","expanded_url":"http:\/\/timesofindia.com","display_url":"timesofindia.com","indices":[61,84]}]}},"protected":false,"followers_count":41696,"friends_count":63,"listed_count":223,"created_at":"Tue - Apr 14 04:41:04 +0000 2009","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":75198,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282404710\/icon_512_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282404710\/icon_512_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31059478\/1480597561","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":14,"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685103808512,"id_str":"1235246685103808512","text":"RT - @PepeCuija: Mi mayor preocupaci\u00f3n con el coronavirus en estos momentos - es que cancelen el vive latino","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PepeCuija","name":"Cuijardio - VI","id":1339767254,"id_str":"1339767254","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64508288,"id_str":"64508288","name":"Laura","screen_name":"angel_aldel","location":"Aguascalientes","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":116,"listed_count":0,"created_at":"Mon - Aug 10 20:40:19 +0000 2009","favourites_count":74,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":413,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"261A0D","profile_background_image_url":"http:\/\/abs.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\/926951789345300481\/euBxHA4C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/926951789345300481\/euBxHA4C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64508288\/1509837505","profile_link_color":"2E19CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0F080F","profile_text_color":"F50000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 19:59:17 +0000 2020","id":1234568984542040068,"id_str":"1234568984542040068","text":"Mi - mayor preocupaci\u00f3n con el coronavirus en estos momentos es que cancelen - el vive latino","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1339767254,"id_str":"1339767254","name":"Cuijardio - VI","screen_name":"PepeCuija","location":"Morelia","description":"Hoy podr\u00eda - ser t\u00fa gran d\u00eda, pero despertaste","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":344,"listed_count":1,"created_at":"Tue - Apr 09 17:37:34 +0000 2013","favourites_count":3436,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1209,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183352433684242432\/Hd8EEWxx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183352433684242432\/Hd8EEWxx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1339767254\/1486018162","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685082787841,"id_str":"1235246685082787841","text":"Ciekawostka - #Pinterest #coronavirus https:\/\/t.co\/726XqmMNJJ","truncated":false,"entities":{"hashtags":[{"text":"Pinterest","indices":[12,22]},{"text":"coronavirus","indices":[23,35]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235246679240081409,"id_str":"1235246679240081409","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6T2YWAAE8-Rx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6T2YWAAE8-Rx.jpg","url":"https:\/\/t.co\/726XqmMNJJ","display_url":"pic.twitter.com\/726XqmMNJJ","expanded_url":"https:\/\/twitter.com\/czerniakowianka\/status\/1235246685082787841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":394,"h":680,"resize":"fit"},"medium":{"w":696,"h":1200,"resize":"fit"},"large":{"w":750,"h":1294,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235246679240081409,"id_str":"1235246679240081409","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6T2YWAAE8-Rx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6T2YWAAE8-Rx.jpg","url":"https:\/\/t.co\/726XqmMNJJ","display_url":"pic.twitter.com\/726XqmMNJJ","expanded_url":"https:\/\/twitter.com\/czerniakowianka\/status\/1235246685082787841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":394,"h":680,"resize":"fit"},"medium":{"w":696,"h":1200,"resize":"fit"},"large":{"w":750,"h":1294,"resize":"fit"}}}]},"metadata":{"iso_language_code":"pl","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3417423790,"id_str":"3417423790","name":"czerniakowianka - \ud83d\udc1d","screen_name":"czerniakowianka","location":"moja Warszawa","description":"\u015amiech - jest sposobem na przetrwanie, smutek - chorob\u0105 zabawiaczy. Dum spiro - spero! #Antibes \ud83c\uddeb\ud83c\uddf7 #wWarszawie \ud83c\uddf5\ud83c\uddf1S\u0105dz\u0119 - jak s\u0105dz\u0119.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1071,"friends_count":299,"listed_count":12,"created_at":"Wed - Aug 12 08:57:08 +0000 2015","favourites_count":347,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":383,"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\/1234782732829560833\/_11kO6DY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234782732829560833\/_11kO6DY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3417423790\/1491680767","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"},"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":"pl"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246685003149325,"id_str":"1235246685003149325","text":"RT - @Soziales_RLP: Information der #RLP-Landesregierung zum aktuellen Stand hinsichtlich - des #Coronavirus: Insgesamt 7 F\u00e4lle in Rheinland-Pf\u2026","truncated":false,"entities":{"hashtags":[{"text":"RLP","indices":[34,38]},{"text":"Coronavirus","indices":[92,104]}],"symbols":[],"user_mentions":[{"screen_name":"Soziales_RLP","name":"Soziales_RLP","id":840138127599587329,"id_str":"840138127599587329","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":82809132,"id_str":"82809132","name":"Heimschule - - Abi 76","screen_name":"Heimschule76","location":"Annweiler, Germany","description":"Klassentreffen - Abi76 - dieser Beitrag soll helfen, die Medienkompetenz der Generation 59+ - u.a. zu Cyberrisiken und kirchlichen Belangen zu steigern","url":"https:\/\/t.co\/OUzel2U5qA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OUzel2U5qA","expanded_url":"http:\/\/www.annweiler.de\/","display_url":"annweiler.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":213,"listed_count":56,"created_at":"Fri - Oct 16 05:42:50 +0000 2009","favourites_count":7620,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13531,"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\/567705874\/foto-tanzkurs1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567705874\/foto-tanzkurs1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82809132\/1567445988","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 11:51:50 +0000 2020","id":1235171089170472961,"id_str":"1235171089170472961","text":"Information - der #RLP-Landesregierung zum aktuellen Stand hinsichtlich des #Coronavirus: - Insgesamt 7 F\u00e4lle in Rheinl\u2026 https:\/\/t.co\/mCS8OdkpsV","truncated":true,"entities":{"hashtags":[{"text":"RLP","indices":[16,20]},{"text":"Coronavirus","indices":[74,86]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mCS8OdkpsV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235171089170472961","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":840138127599587329,"id_str":"840138127599587329","name":"Soziales_RLP","screen_name":"Soziales_RLP","location":"Mainz, - Deutschland","description":"Hier informiert das Ministerium f\u00fcr Soziales, - Arbeit, Gesundheit und Demografie RLP. Impressum: https:\/\/t.co\/kABlO0sPjw - Datenschutz und Netiquette: https:\/\/t.co\/nXMCQhC75m","url":"https:\/\/t.co\/CV6k4xKpho","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CV6k4xKpho","expanded_url":"http:\/\/www.msagd.rlp.de","display_url":"msagd.rlp.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/kABlO0sPjw","expanded_url":"http:\/\/s.rlp.de\/im6","display_url":"s.rlp.de\/im6","indices":[96,119]},{"url":"https:\/\/t.co\/nXMCQhC75m","expanded_url":"http:\/\/s.rlp.de\/dst","display_url":"s.rlp.de\/dst","indices":[148,171]}]}},"protected":false,"followers_count":1129,"friends_count":210,"listed_count":29,"created_at":"Fri - Mar 10 09:51:53 +0000 2017","favourites_count":1110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1763,"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\/841242044572000256\/ohYpAeKS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/841242044572000256\/ohYpAeKS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/840138127599587329\/1489417362","profile_link_color":"871D33","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":10,"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"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684986318848,"id_str":"1235246684986318848","text":"RT - @Le_Figaro: \ud83d\udd34 EN DIRECT - Avec quatre d\u00e9c\u00e8s et plus de - 200 cas confirm\u00e9s sur son territoire, soit un doublement en trois jours, - la Franc\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Le_Figaro","name":"Le - Figaro","id":8350912,"id_str":"8350912","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":135267045,"id_str":"135267045","name":"Buon - weekend","screen_name":"buonweekend","location":"Firenze","description":"Amante - del buon vino, del buon cibo, dell''arte e dei viaggi imprevedibili. Esploratore - di luoghi storie e produzioni rurali. Cosmopolita e uomo mediterraneo","url":"https:\/\/t.co\/6nOiBynw5h","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6nOiBynw5h","expanded_url":"https:\/\/buonweekends.home.blog\/","display_url":"buonweekends.home.blog","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1019,"friends_count":3336,"listed_count":67,"created_at":"Tue - Apr 20 20:35:03 +0000 2010","favourites_count":28481,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38736,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"17A80A","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\/1231533593312350208\/XoJCA3FM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231533593312350208\/XoJCA3FM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135267045\/1582455194","profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C2C52","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 06:58:12 +0000 2020","id":1235097194945970177,"id_str":"1235097194945970177","text":"\ud83d\udd34 - EN DIRECT - Avec quatre d\u00e9c\u00e8s et plus de 200 cas confirm\u00e9s - sur son territoire, soit un doublement en trois jours,\u2026 https:\/\/t.co\/mDjHRiBPsf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mDjHRiBPsf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235097194945970177","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":8350912,"id_str":"8350912","name":"Le - Figaro","screen_name":"Le_Figaro","location":"France","description":"\ud83d\udcf1Le - Figaro, premier site d''info g\u00e9n\u00e9raliste en \ud83c\uddeb\ud83c\uddf7 - \ud83d\udcf0 Abonnez-vous \u00e0 partir de 1\u20ac par mois \u27a1 https:\/\/t.co\/63ruLevp5O","url":"https:\/\/t.co\/7zSIokJk2k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7zSIokJk2k","expanded_url":"http:\/\/www.lefigaro.fr","display_url":"lefigaro.fr","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/63ruLevp5O","expanded_url":"http:\/\/bit.ly\/AbonnezVousAuFigaroTw","display_url":"bit.ly\/AbonnezVousAuF\u2026","indices":[93,116]}]}},"protected":false,"followers_count":3178888,"friends_count":657,"listed_count":16134,"created_at":"Wed - Aug 22 07:16:46 +0000 2007","favourites_count":4796,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":606211,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"3B79B5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181777707920711680\/L0KWKo11_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181777707920711680\/L0KWKo11_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8350912\/1570592737","profile_link_color":"003872","profile_sidebar_border_color":"C7C7C7","profile_sidebar_fill_color":"E5E5E5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":91,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":88,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684906688514,"id_str":"1235246684906688514","text":"RT - @AFPespanol: Lufthansa dejar\u00e1 en tierra 150 aviones, de su flota de 750 - aparatos en todo el mundo, a causa del impacto del nuevo coronav\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AFPespanol","name":"Agence - France-Presse","id":851108442,"id_str":"851108442","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":867409705,"id_str":"867409705","name":"Keus - Australis","screen_name":"KAustralis","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2165,"friends_count":929,"listed_count":46,"created_at":"Mon - Oct 08 04:19:25 +0000 2012","favourites_count":8692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":207221,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/684218933738663940\/4X0YPrmi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/684218933738663940\/4X0YPrmi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/867409705\/1479342411","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:41:00 +0000 2020","id":1235243858507608065,"id_str":"1235243858507608065","text":"Lufthansa - dejar\u00e1 en tierra 150 aviones, de su flota de 750 aparatos en todo el - mundo, a causa del impacto del nuevo\u2026 https:\/\/t.co\/asJ5xIuVm7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/asJ5xIuVm7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243858507608065","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1235212694489378816,"in_reply_to_status_id_str":"1235212694489378816","in_reply_to_user_id":851108442,"in_reply_to_user_id_str":"851108442","in_reply_to_screen_name":"AFPespanol","user":{"id":851108442,"id_str":"851108442","name":"Agence - France-Presse","screen_name":"AFPespanol","location":"Montevideo, Uruguay","description":"Las - noticias y las historias del mundo con el aporte de los periodistas de AFP - en 150 pa\u00edses. Tambi\u00e9n en Facebook: https:\/\/t.co\/USg46DHztr","url":"https:\/\/t.co\/xUUUHGq0CB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xUUUHGq0CB","expanded_url":"http:\/\/www.afp.com\/es","display_url":"afp.com\/es","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/USg46DHztr","expanded_url":"http:\/\/u.afp.com\/AFPespanol","display_url":"u.afp.com\/AFPespanol","indices":[115,138]}]}},"protected":false,"followers_count":354673,"friends_count":1076,"listed_count":4148,"created_at":"Fri - Sep 28 14:00:14 +0000 2012","favourites_count":348,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":174829,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558269048778002434\/bz6xLWex_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558269048778002434\/bz6xLWex_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851108442\/1565894214","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":30,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684906512384,"id_str":"1235246684906512384","text":"RT - @benedictrogers: Using Huawei for 5G like letting Nazis build British radar - in 1939, claims Duncan Smith - live news https:\/\/t.co\/pkOGHd\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"benedictrogers","name":"Benedict - Rogers","id":49035671,"id_str":"49035671","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1175995717044715520,"id_str":"1175995717044715520","name":"Cream - and Donuts \ud83d\ude37","screen_name":"CreamandDonuts1","location":"Earth","description":"And - the light shineth in darkness; and the darkness comprehended it not.\n\n#FollowbackHongKong","url":"https:\/\/t.co\/vdpO29M2PI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vdpO29M2PI","expanded_url":"http:\/\/hkrev.info","display_url":"hkrev.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":204,"listed_count":0,"created_at":"Mon - Sep 23 04:50:57 +0000 2019","favourites_count":6332,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6565,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1178685454347993088\/KokV2Rq9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1178685454347993088\/KokV2Rq9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1175995717044715520\/1569768331","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:48:05 +0000 2020","id":1235245640252350465,"id_str":"1235245640252350465","text":"Using - Huawei for 5G like letting Nazis build British radar in 1939, claims Duncan - Smith - live news https:\/\/t.co\/pkOGHd4KHK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pkOGHd4KHK","expanded_url":"https:\/\/www.theguardian.com\/politics\/live\/2020\/mar\/04\/pmqs-boris-johnson-corbyn-brexit-urges-ministers-to-extend-statutory-sick-pay-to-2m-people-in-light-of-coronavirus-live-news?CMP=share_btn_tw","display_url":"theguardian.com\/politics\/live\/\u2026","indices":[100,123]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":49035671,"id_str":"49035671","name":"Benedict - Rogers","screen_name":"benedictrogers","location":"London","description":"Human - rights activist specialising in Asia, writer, Catholic. CSW; Hong Kong Watch; - Conservative Party Human Rights Commission. All tweets in personal capacity.","url":"http:\/\/t.co\/D1zazaaEhj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/D1zazaaEhj","expanded_url":"http:\/\/www.amazon.co.uk\/Burma-Nation-At-Crossroads-Revised\/dp\/1846044464\/ref=sr_1_3?ie=UTF8&qid=1445","display_url":"amazon.co.uk\/Burma-Nation-A\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":36816,"friends_count":6595,"listed_count":360,"created_at":"Sat - Jun 20 15:43:49 +0000 2009","favourites_count":12647,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":89725,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1059142196081971200\/XJQX-nfb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1059142196081971200\/XJQX-nfb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/49035671\/1473001952","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":160,"favorite_count":256,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":160,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684696956931,"id_str":"1235246684696956931","text":"RT - @ARSPaca: \u2139\ufe0f#Coronavirus #Covid19 Communiqu\u00e9 de presse : point - de situation du 4 mars 2020.\n\n18 cas confirm\u00e9s en r\u00e9gion #Paca\n\ud83d\udd1810 - person\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[15,27]},{"text":"Covid19","indices":[28,36]},{"text":"Paca","indices":[123,128]}],"symbols":[],"user_mentions":[{"screen_name":"ARSPaca","name":"ARS - Paca","id":292810041,"id_str":"292810041","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1227702091839397888,"id_str":"1227702091839397888","name":"CPTS - VAR OUEST","screen_name":"CptsVarOuest","location":"","description":"Compte - officiel de la Communaut\u00e9 Professionnelle Territoriale de Sant\u00e9 - VAR ouest \u2014 Facebook : https:\/\/t.co\/ni4GSkRPVb","url":"https:\/\/t.co\/fTS1dHl45R","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fTS1dHl45R","expanded_url":"https:\/\/www.cptsvarouest.com","display_url":"cptsvarouest.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ni4GSkRPVb","expanded_url":"https:\/\/m.facebook.com\/CPTS-VAR-OUEST-104161907837009\/","display_url":"m.facebook.com\/CPTS-VAR-OUEST\u2026","indices":[94,117]}]}},"protected":false,"followers_count":16,"friends_count":30,"listed_count":0,"created_at":"Wed - Feb 12 21:13:02 +0000 2020","favourites_count":24,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227702246135279616\/v8GJW8D1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227702246135279616\/v8GJW8D1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1227702091839397888\/1581542686","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:47:04 +0000 2020","id":1235245386236866560,"id_str":"1235245386236866560","text":"\u2139\ufe0f#Coronavirus - #Covid19 Communiqu\u00e9 de presse : point de situation du 4 mars 2020.\n\n18 - cas confirm\u00e9s en r\u00e9gion #Paca\u2026 https:\/\/t.co\/4Wego33aEP","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[2,14]},{"text":"Covid19","indices":[15,23]},{"text":"Paca","indices":[110,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4Wego33aEP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245386236866560","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292810041,"id_str":"292810041","name":"ARS - Paca","screen_name":"ARSPaca","location":"Marseille, France","description":"Nous - mettons en oeuvre la politique de sant\u00e9 en r\u00e9gion Paca Tweet sur - #LesAgoras #MaSante2022 #AccesAuxSoins #SantePublique #Sant\u00e9 #Prevention","url":"https:\/\/t.co\/hoWGihuvzI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hoWGihuvzI","expanded_url":"http:\/\/paca.ars.sante.fr","display_url":"paca.ars.sante.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6843,"friends_count":492,"listed_count":160,"created_at":"Wed - May 04 08:15:01 +0000 2011","favourites_count":903,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4932,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219211957951176704\/lfn-XMbU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219211957951176704\/lfn-XMbU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292810041\/1579517559","profile_link_color":"51AD32","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":29,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684562690048,"id_str":"1235246684562690048","text":"RT - @ZegmaarMarretje: @NancyGroningen @woukevscherrenb @trouw @dvhn_nl Lijkt toch - anders te liggen volgens GGD:\nhttps:\/\/t.co\/UWSrV089Mj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZegmaarMarretje","name":"Marretje - \ud83c\udf39","id":382304033,"id_str":"382304033","indices":[3,19]},{"screen_name":"NancyGroningen","name":"Zeg - maar Nancy","id":175677982,"id_str":"175677982","indices":[21,36]},{"screen_name":"woukevscherrenb","name":"wouke - van scherrenbu","id":116425407,"id_str":"116425407","indices":[37,53]},{"screen_name":"trouw","name":"Trouw","id":3103511,"id_str":"3103511","indices":[54,60]},{"screen_name":"dvhn_nl","name":"Dagblad - v\/h Noorden","id":18549902,"id_str":"18549902","indices":[61,69]}],"urls":[{"url":"https:\/\/t.co\/UWSrV089Mj","expanded_url":"https:\/\/www.rtlnieuws.nl\/nieuws\/nederland\/artikel\/5044106\/coronavirus-skien-italie-reisadvies-studentenvereniging-vindicat","display_url":"rtlnieuws.nl\/nieuws\/nederla\u2026","indices":[111,134]}]},"metadata":{"iso_language_code":"nl","result_type":"recent"},"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,"user":{"id":1129010443165589504,"id_str":"1129010443165589504","name":"Trijnie - Valkenburgh","screen_name":"TrijnieValkenb1","location":"Groningen, Nederland","description":"chemisch-biochemisch - analiste 50 jaar geleden in het UMCG in Groningen. St.SOS vHuisdieren opgericht - in Vries.Literatuur en Politiek erg belangrijk .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":432,"friends_count":1973,"listed_count":1,"created_at":"Thu - May 16 13:07:20 +0000 2019","favourites_count":13716,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5623,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166962152353275904\/aAWxPcO2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166962152353275904\/aAWxPcO2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1129010443165589504\/1572186713","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:57:55 +0000 2020","id":1235233017507045376,"id_str":"1235233017507045376","text":"@NancyGroningen - @woukevscherrenb @trouw @dvhn_nl Lijkt toch anders te liggen volgens GGD:\nhttps:\/\/t.co\/UWSrV089Mj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NancyGroningen","name":"Zeg - maar Nancy","id":175677982,"id_str":"175677982","indices":[0,15]},{"screen_name":"woukevscherrenb","name":"wouke - van scherrenbu","id":116425407,"id_str":"116425407","indices":[16,32]},{"screen_name":"trouw","name":"Trouw","id":3103511,"id_str":"3103511","indices":[33,39]},{"screen_name":"dvhn_nl","name":"Dagblad - v\/h Noorden","id":18549902,"id_str":"18549902","indices":[40,48]}],"urls":[{"url":"https:\/\/t.co\/UWSrV089Mj","expanded_url":"https:\/\/www.rtlnieuws.nl\/nieuws\/nederland\/artikel\/5044106\/coronavirus-skien-italie-reisadvies-studentenvereniging-vindicat","display_url":"rtlnieuws.nl\/nieuws\/nederla\u2026","indices":[90,113]}]},"metadata":{"iso_language_code":"nl","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1235229201667633154,"in_reply_to_status_id_str":"1235229201667633154","in_reply_to_user_id":175677982,"in_reply_to_user_id_str":"175677982","in_reply_to_screen_name":"NancyGroningen","user":{"id":382304033,"id_str":"382304033","name":"Marretje - \ud83c\udf39","screen_name":"ZegmaarMarretje","location":"Nederland","description":"Moeder - van: Zoon met verstandelijke beperking en autisme, dochter met CVS+fybro, - lieve man, 1 hond, 11 kippen, aquarium. En 2 fantastische kleinkinderen! \ud83d\ude0d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1223,"friends_count":1076,"listed_count":56,"created_at":"Thu - Sep 29 20:52:05 +0000 2011","favourites_count":42682,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":93001,"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\/1211334731587035136\/ty3ua_kW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211334731587035136\/ty3ua_kW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/382304033\/1493580876","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"},"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":"nl"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684533338112,"id_str":"1235246684533338112","text":"RT - @brfootball: A reporter asked Jurgen Klopp about coronavirus after the defeat - to Chelsea.\n\nKlopp: \"Why me?... I wear a baseball cap and\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brfootball","name":"B\/R - Football","id":1561123663,"id_str":"1561123663","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1568549552,"id_str":"1568549552","name":"Ahmed","screen_name":"AHElSaka","location":"Giza, - Egypt","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":315,"friends_count":75,"listed_count":3,"created_at":"Thu - Jul 04 16:25:18 +0000 2013","favourites_count":126,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15504,"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\/1234881463893536768\/KvXTwlPk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234881463893536768\/KvXTwlPk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1568549552\/1582848232","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:59:51 +0000 2020","id":1235188206150316033,"id_str":"1235188206150316033","text":"A - reporter asked Jurgen Klopp about coronavirus after the defeat to Chelsea.\n\nKlopp: - \"Why me?... I wear a baseball\u2026 https:\/\/t.co\/PqspfAGy4K","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PqspfAGy4K","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235188206150316033","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1561123663,"id_str":"1561123663","name":"B\/R - Football","screen_name":"brfootball","location":"","description":"Get the - Free B\/R App \u2b07\ufe0f","url":"https:\/\/t.co\/CFXD5md1KQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CFXD5md1KQ","expanded_url":"https:\/\/br.app.link\/get-the-BR-app","display_url":"br.app.link\/get-the-BR-app","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1529171,"friends_count":1099,"listed_count":7949,"created_at":"Mon - Jul 01 17:51:17 +0000 2013","favourites_count":2771,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":96010,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1003913979448741888\/FSzCtZWH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1003913979448741888\/FSzCtZWH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1561123663\/1582021079","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3061,"favorite_count":15543,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3061,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684512415756,"id_str":"1235246684512415756","text":"RT - @ilsecoloxix: Per prenderci cura della nostra salute dobbiamo iniziare a difendere - il pianeta @OfficialTozzi \n#coronavirus \nhttps:\/\/t.co\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[113,125]}],"symbols":[],"user_mentions":[{"screen_name":"ilsecoloxix","name":"Il - Secolo XIX","id":48835437,"id_str":"48835437","indices":[3,15]},{"screen_name":"OfficialTozzi","name":"Mario - Tozzi \u26cf","id":1106181225453142017,"id_str":"1106181225453142017","indices":[97,111]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185722558,"id_str":"185722558","name":"OssMeteoGeoRaffaelli - dal 1883","screen_name":"Ossmeteobargone","location":"Bargone di Casarza Lig, - Italia","description":"Osservatorio Meteorologico,Agrario,Geologico Prof. - Don Gian Carlo Raffaelli Fondato nel 1883 a Bargone Casarza Ligure GE osservatorioraffaelli1883@gmail.com","url":"https:\/\/t.co\/yFSRihqpI1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yFSRihqpI1","expanded_url":"http:\/\/www.osservatorioraffaelli.com","display_url":"osservatorioraffaelli.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3999,"friends_count":4991,"listed_count":239,"created_at":"Wed - Sep 01 17:43:40 +0000 2010","favourites_count":245931,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":378967,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709685","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\/1022735128450228229\/08RSSSsV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022735128450228229\/08RSSSsV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185722558\/1446124573","profile_link_color":"000DFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 10:08:00 +0000 2020","id":1235144959742930945,"id_str":"1235144959742930945","text":"Per - prenderci cura della nostra salute dobbiamo iniziare a difendere il pianeta - @OfficialTozzi \n#coronavirus \nhttps:\/\/t.co\/MJGYEvJFYG","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[96,108]}],"symbols":[],"user_mentions":[{"screen_name":"OfficialTozzi","name":"Mario - Tozzi \u26cf","id":1106181225453142017,"id_str":"1106181225453142017","indices":[80,94]}],"urls":[{"url":"https:\/\/t.co\/MJGYEvJFYG","expanded_url":"https:\/\/www.ilsecoloxix.it\/italia-mondo\/cronaca\/2020\/03\/04\/news\/deforestazione-e-allevamenti-intensivi-i-danni-all-ambiente-fanno-esplodere-i-virus-1.38546507","display_url":"ilsecoloxix.it\/italia-mondo\/c\u2026","indices":[110,133]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48835437,"id_str":"48835437","name":"Il - Secolo XIX","screen_name":"ilsecoloxix","location":"Genova, Italia","description":"Benvenuti - a Il Secolo XIX, la voce ligure del giornalismo italiano. Commentate notizie - e avvenimenti assieme ai nostri lettori e giornalisti.","url":"http:\/\/t.co\/GXzqvaSc6F","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GXzqvaSc6F","expanded_url":"http:\/\/www.ilsecoloxix.it","display_url":"ilsecoloxix.it","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":56442,"friends_count":1586,"listed_count":717,"created_at":"Fri - Jun 19 21:29:09 +0000 2009","favourites_count":946,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":121242,"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\/458885971371491328\/aJUNUhu9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458885971371491328\/aJUNUhu9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48835437\/1398241931","profile_link_color":"254B9E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684512366592,"id_str":"1235246684512366592","text":"Doesn''t - this decision indicate, well, a lack of faith? https:\/\/t.co\/cf3Vd8OZlb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cf3Vd8OZlb","expanded_url":"http:\/\/cny.org\/stories\/lourdes-shrine-closes-healing-pools-as-precaution-against-coronavirus,20662","display_url":"cny.org\/stories\/lourde\u2026","indices":[55,78]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2547893780,"id_str":"2547893780","name":"Philip - Coggan","screen_name":"econbartleby","location":"","description":"Economist - columnist, opinions my own, typos always my fault. Author of Paper Promises, - The Money Machine and now More, a history of the world economy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12827,"friends_count":523,"listed_count":379,"created_at":"Thu - Jun 05 10:54:27 +0000 2014","favourites_count":1223,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13236,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1000320536768073728\/Cl0lZKb5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1000320536768073728\/Cl0lZKb5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:14 +0000 2020","id":1235246684483006465,"id_str":"1235246684483006465","text":"RT - @MollyJongFast: This is shocking https:\/\/t.co\/5uaEB4VY4X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MollyJongFast","name":"Molly - Jong-Fast","id":14298769,"id_str":"14298769","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/5uaEB4VY4X","expanded_url":"https:\/\/www.thedailybeast.com\/the-us-embassy-in-tokyo-refused-to-test-exposed-staff-for-coronavirus","display_url":"thedailybeast.com\/the-us-embassy\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":780554655159898112,"id_str":"780554655159898112","name":"CountryoverParty123","screen_name":"Dolphin_Tj34698","location":"","description":"#Resist - #persist When hate is loud, love cannot be silent.\ud83c\udd98 #RightMatters","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4237,"friends_count":4841,"listed_count":6,"created_at":"Mon - Sep 26 23:48:26 +0000 2016","favourites_count":87070,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54056,"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\/1079746068097781760\/BEsIx4iW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1079746068097781760\/BEsIx4iW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780554655159898112\/1550367221","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:27:48 +0000 2020","id":1235180138263916545,"id_str":"1235180138263916545","text":"This - is shocking https:\/\/t.co\/5uaEB4VY4X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5uaEB4VY4X","expanded_url":"https:\/\/www.thedailybeast.com\/the-us-embassy-in-tokyo-refused-to-test-exposed-staff-for-coronavirus","display_url":"thedailybeast.com\/the-us-embassy\u2026","indices":[18,41]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14298769,"id_str":"14298769","name":"Molly - Jong-Fast","screen_name":"MollyJongFast","location":"","description":"Editor - at large @thedailybeast. https:\/\/t.co\/c9JzH8VPTP","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/c9JzH8VPTP","expanded_url":"https:\/\/www.instagram.com\/mollyjongfast\/?hl=en","display_url":"instagram.com\/mollyjongfast\/\u2026","indices":[37,60]}]}},"protected":false,"followers_count":433247,"friends_count":5562,"listed_count":2702,"created_at":"Fri - Apr 04 01:41:30 +0000 2008","favourites_count":747658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":184227,"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\/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\/1221616560252559360\/d29_Rmsb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221616560252559360\/d29_Rmsb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14298769\/1560033873","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2695,"favorite_count":3884,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2695,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246684403355648,"id_str":"1235246684403355648","text":"RT - @molerogascon: J\u00fcrgen Klopp sobre el coronavirus:\n\u201cNo entiendo - ni me gusta que simplemente por el hecho de ser famoso mi opini\u00f3n sea - rel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"molerogascon","name":"Pep - Molero","id":213982456,"id_str":"213982456","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1007549151549247488,"id_str":"1007549151549247488","name":"82jferrera","screen_name":"82jferrera","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":1474,"listed_count":0,"created_at":"Fri - Jun 15 09:03:31 +0000 2018","favourites_count":70,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1440,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1010923727482183680\/j8uhGxoV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1010923727482183680\/j8uhGxoV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:36:57 +0000 2020","id":1234986149283631105,"id_str":"1234986149283631105","text":"J\u00fcrgen - Klopp sobre el coronavirus:\n\u201cNo entiendo ni me gusta que simplemente - por el hecho de ser famoso mi opini\u00f3n s\u2026 https:\/\/t.co\/xFVIWkrBWR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xFVIWkrBWR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234986149283631105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33979,"favorite_count":118199,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":33979,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246684264960002,"id_str":"1235246684264960002","text":"RT - @adsfriends_: Coronavirus na Romeu kkkk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"adsfriends_","name":"maroxas\ud83e\udd2a","id":1000010214865866753,"id_str":"1000010214865866753","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1140524133031251968,"id_str":"1140524133031251968","name":"\ud835\udd44\ud835\udd52\ud835\udd55\ud835\udd52 - \u263e","screen_name":"madalena_psilva","location":"Almada, Portugal","description":"ig: - madap.silva\n R\u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":264,"friends_count":398,"listed_count":0,"created_at":"Mon - Jun 17 07:38:38 +0000 2019","favourites_count":4552,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5848,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233100099812831233\/BmFQ3orH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233100099812831233\/BmFQ3orH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1140524133031251968\/1583159100","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 22:13:35 +0000 2020","id":1234965167970177025,"id_str":"1234965167970177025","text":"Coronavirus - na Romeu kkkk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1000010214865866753,"id_str":"1000010214865866753","name":"maroxas\ud83e\udd2a","screen_name":"adsfriends_","location":"","description":"Have - you met Maroxas?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":342,"friends_count":456,"listed_count":0,"created_at":"Fri - May 25 13:46:29 +0000 2018","favourites_count":6754,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34202,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218500684548595714\/ljDf057Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218500684548595714\/ljDf057Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1000010214865866753\/1577913754","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":19,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246684210372614,"id_str":"1235246684210372614","text":"RT - @guidoar_: Ahora que est\u00e1 el CORONAVIRUS en Argentina es momento de recordar - las medidas de prevenci\u00f3n B\u00c1SICAS. Estas rigen para cualqui\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"guidoar_","name":"guido - \ud83c\udf40","id":127859520,"id_str":"127859520","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2841827957,"id_str":"2841827957","name":"junior","screen_name":"juniorr_bg","location":"","description":"ni - idea","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":340,"listed_count":0,"created_at":"Thu - Oct 23 10:24:56 +0000 2014","favourites_count":5331,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1596,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223775173721120776\/5GPoOBfz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223775173721120776\/5GPoOBfz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2841827957\/1580605433","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 20:57:58 +0000 2020","id":1234946140908523526,"id_str":"1234946140908523526","text":"Ahora - que est\u00e1 el CORONAVIRUS en Argentina es momento de recordar las medidas - de prevenci\u00f3n B\u00c1SICAS. Estas rigen pa\u2026 https:\/\/t.co\/jSIba7NF1c","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jSIba7NF1c","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234946140908523526","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127859520,"id_str":"127859520","name":"guido - \ud83c\udf40","screen_name":"guidoar_","location":"Buenos Aires, Argentina","description":"no - soy perfecto soy guapo","url":"https:\/\/t.co\/yuAwl1xDxN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yuAwl1xDxN","expanded_url":"http:\/\/www.Instagram.com\/guidoarmaando","display_url":"Instagram.com\/guidoarmaando","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20963,"friends_count":308,"listed_count":9,"created_at":"Tue - Mar 30 13:09:37 +0000 2010","favourites_count":20107,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41475,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"25D979","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\/1228727644663009282\/B7IWXGNa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228727644663009282\/B7IWXGNa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127859520\/1567287972","profile_link_color":"B72121","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2768,"favorite_count":8332,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":2768,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246684101365765,"id_str":"1235246684101365765","text":"RT - @eldiariodedross: No sab\u00eda que M\u00e9xico report\u00f3 5 casos de Coronavirus. - Me enorgullece que en lugar de haber miedo, le hayan dedicado una\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eldiariodedross","name":"Dross","id":78324623,"id_str":"78324623","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":728909444,"id_str":"728909444","name":"Guegorov","screen_name":"Guegorov","location":"\u5730\u7403","description":"\u79c1\u306e\u672c\u5f53\u306e\u540d\u524d\u306f\u30c0\u30cb\u30a8\u30eb\u3067\u3059\u3001\u305d\u3057\u3066 - \u305f\u304f\u3055\u3093\u3059\u3054\u3044\u30e2\u30c7\u30eb\u3092\u4f5c\u308a\u305f\u3044\u3001MMD\u30e2\u30c7\u30e9\u30fc\u306b\u306a\u308a\u305f\u3044\u3067\u3059\u3002\nBowlroll: - https:\/\/t.co\/uklI8hl4kL\nPixiv: https:\/\/t.co\/KoAGvSnnGH\u2026","url":"https:\/\/t.co\/Zp3GgU7z40","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Zp3GgU7z40","expanded_url":"https:\/\/www.deviantart.com\/guegorov","display_url":"deviantart.com\/guegorov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/uklI8hl4kL","expanded_url":"https:\/\/bowlroll.net\/user\/15880","display_url":"bowlroll.net\/user\/15880","indices":[61,84]},{"url":"https:\/\/t.co\/KoAGvSnnGH","expanded_url":"http:\/\/pixiv.net\/en\/users\/14476","display_url":"pixiv.net\/en\/users\/14476","indices":[92,115]}]}},"protected":false,"followers_count":248,"friends_count":209,"listed_count":5,"created_at":"Tue - Jul 31 18:03:34 +0000 2012","favourites_count":70820,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41991,"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\/2452699153\/Rinnosuke-Kun_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2452699153\/Rinnosuke-Kun_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/728909444\/1459807275","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:51:20 +0000 2020","id":1235216262336311296,"id_str":"1235216262336311296","text":"No - sab\u00eda que M\u00e9xico report\u00f3 5 casos de Coronavirus. Me enorgullece - que en lugar de haber miedo, le hayan dedicado u\u2026 https:\/\/t.co\/vxABYrz1JX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vxABYrz1JX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235216262336311296","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78324623,"id_str":"78324623","name":"Dross","screen_name":"eldiariodedross","location":"En - la estaci\u00f3n Shenzhou","description":"Genocida de youtubers de salseo. - Scare Master Supreme. Sugar Daddy profesional. Exitoso escritor de horror. - Balcony beefcake.","url":"https:\/\/t.co\/lKohPsCg6N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lKohPsCg6N","expanded_url":"https:\/\/www.youtube.com\/user\/DrossRotzank","display_url":"youtube.com\/user\/DrossRotz\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2978039,"friends_count":67,"listed_count":2161,"created_at":"Tue - Sep 29 14:32:01 +0000 2009","favourites_count":25691,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":29311,"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\/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\/1229426343739133952\/tqlI0U27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229426343739133952\/tqlI0U27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78324623\/1568328119","profile_link_color":"6E6E6E","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1591,"favorite_count":15701,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":1591,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246684088737792,"id_str":"1235246684088737792","text":"RT - @ChorcheT: La ausencia de casos de coronavirus en Murcia indica a los investigadores - que el virus necesita agua para propagarse.\n\n#Coron\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChorcheT","name":"Chorcherichia - Coli","id":935107570594975744,"id_str":"935107570594975744","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":739549897,"id_str":"739549897","name":"Rain.","screen_name":"Raain07","location":"Alhama - de Murcia, Regi\u00f3n de Mu","description":"20% D''7\u2764\nBacon & Hela - \ud83d\udc36\ud83d\udc15","url":"https:\/\/t.co\/j6wu7QgqNU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/j6wu7QgqNU","expanded_url":"http:\/\/www.Instagram.com\/Raain07","display_url":"Instagram.com\/Raain07","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":465,"friends_count":137,"listed_count":0,"created_at":"Mon - Aug 06 00:52:15 +0000 2012","favourites_count":1336,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1222,"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\/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\/675400605440045056\/BcnQdUVP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/675400605440045056\/BcnQdUVP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/739549897\/1449863026","profile_link_color":"1F98C7","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:37:04 +0000 2020","id":1235242871491571727,"id_str":"1235242871491571727","text":"La - ausencia de casos de coronavirus en Murcia indica a los investigadores que - el virus necesita agua para propagarse.\n\n#CoronavirusESP","truncated":false,"entities":{"hashtags":[{"text":"CoronavirusESP","indices":[119,134]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":935107570594975744,"id_str":"935107570594975744","name":"Chorcherichia - Coli","screen_name":"ChorcheT","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":133,"listed_count":0,"created_at":"Mon - Nov 27 11:26:33 +0000 2017","favourites_count":3660,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1786,"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\/935108190756368385\/EPx854bB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/935108190756368385\/EPx854bB_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246684084420609,"id_str":"1235246684084420609","text":"@TomCottonAR - I hope all of Arkansas\u2019s politicians get coronavirus from going to their - favorite restaurant because t\u2026 https:\/\/t.co\/NiGJf3R6Na","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TomCottonAR","name":"Tom - Cotton","id":343041182,"id_str":"343041182","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/NiGJf3R6Na","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246684084420609","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1235226518814629893,"in_reply_to_status_id_str":"1235226518814629893","in_reply_to_user_id":343041182,"in_reply_to_user_id_str":"343041182","in_reply_to_screen_name":"TomCottonAR","user":{"id":24229562,"id_str":"24229562","name":"Charles - Alex Lanis","screen_name":"alex_lanis","location":"Haiti\/Arkansas\/Oklahoma","description":"Traveler. - Dreamer. Chemin lavi miyo.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":87,"friends_count":289,"listed_count":1,"created_at":"Fri - Mar 13 19:07:21 +0000 2009","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":462,"lang":null,"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\/616718436719136769\/S1HvkoLF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616718436719136769\/S1HvkoLF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24229562\/1435872250","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246684059258880,"id_str":"1235246684059258880","text":"RT - @JuddLegum: How many people have been tested in the US for coronavirus?\n\nThere - are now 128 confirmed cases in the US and 9 deaths. \n\nBut\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JuddLegum","name":"Judd - Legum","id":15464697,"id_str":"15464697","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223335661,"id_str":"3223335661","name":"Tai - Fung","screen_name":"TaiFung_Seattle","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":64,"listed_count":1,"created_at":"Fri - May 22 13:12:41 +0000 2015","favourites_count":6384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":96897,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:37:12 +0000 2020","id":1235242903812870145,"id_str":"1235242903812870145","text":"How - many people have been tested in the US for coronavirus?\n\nThere are now 128 - confirmed cases in the US and 9 deat\u2026 https:\/\/t.co\/1vphuECWKe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1vphuECWKe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242903812870145","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15464697,"id_str":"15464697","name":"Judd - Legum","screen_name":"JuddLegum","location":"Washington, DC","description":"I - write Popular Information, a newsletter about politics and power. \n\nSend - tips: DMs open | judd@popular.info | jlegum@protonmail.com","url":"https:\/\/t.co\/7lEYXJGXf5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7lEYXJGXf5","expanded_url":"http:\/\/Popular.info","display_url":"Popular.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":404917,"friends_count":1305,"listed_count":6205,"created_at":"Thu - Jul 17 05:37:26 +0000 2008","favourites_count":4347,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":56740,"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\/636336373453053952\/yv-YqI5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636336373453053952\/yv-YqI5w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15464697\/1533728641","profile_link_color":"202037","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":470,"favorite_count":1231,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":470,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246684059234305,"id_str":"1235246684059234305","text":"Hello, - You searching a creative logo Design for your company.............see my profile - #logo #Beyhadh2\u2026 https:\/\/t.co\/nWZhTazMB8","truncated":true,"entities":{"hashtags":[{"text":"logo","indices":[88,93]},{"text":"Beyhadh2","indices":[94,103]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nWZhTazMB8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246684059234305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[105,128]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1229661691815899141,"id_str":"1229661691815899141","name":"2D - & 3D logo design ... https:\/\/bit.ly\/39Nmah4","screen_name":"2dLogo","location":"dhaka - bangladesh","description":"Logo Maker\nLogo & Brand Designer #designer #realestatelogodesigner - #logodesign #realestate #logodesigner #propertylogo \nhttps:\/\/t.co\/KqXwJzSTNc","url":"https:\/\/t.co\/o84qjTKrQe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/o84qjTKrQe","expanded_url":"https:\/\/www.fiverr.com\/share\/Ld8ry0","display_url":"fiverr.com\/share\/Ld8ry0","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/KqXwJzSTNc","expanded_url":"http:\/\/fiverr.com\/share\/Ld8ry0","display_url":"fiverr.com\/share\/Ld8ry0","indices":[121,144]}]}},"protected":false,"followers_count":85,"friends_count":926,"listed_count":1,"created_at":"Tue - Feb 18 06:59:58 +0000 2020","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":243,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229755718200414209\/HvRbdQXr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229755718200414209\/HvRbdQXr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1229661691815899141\/1582031591","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683925118977,"id_str":"1235246683925118977","text":"RT - @TimesNow: Is there a need to panic over #CoronavirusOutbreak?\n\nIndia battles - #COVID19.\n\nStay alert, stay safe. | #IndiaFightsBackCorona\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronavirusOutbreak","indices":[44,64]},{"text":"COVID19","indices":[81,89]}],"symbols":[],"user_mentions":[{"screen_name":"TimesNow","name":"TIMES - NOW","id":240649814,"id_str":"240649814","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":635895185,"id_str":"635895185","name":"Rahul - Shivshankar","screen_name":"RShivshankar","location":"New Delhi","description":"Editor-in-Chief, - @TimesNow","url":"https:\/\/t.co\/1r9xZjxI4W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1r9xZjxI4W","expanded_url":"http:\/\/www.timesnownews.com","display_url":"timesnownews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":83019,"friends_count":606,"listed_count":231,"created_at":"Sun - Jul 15 04:29:13 +0000 2012","favourites_count":981,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":32416,"lang":null,"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\/931434861792862213\/K4Bg6SPv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931434861792862213\/K4Bg6SPv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/635895185\/1574666485","profile_link_color":"4A913C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:45:14 +0000 2020","id":1235244923756003328,"id_str":"1235244923756003328","text":"Is - there a need to panic over #CoronavirusOutbreak?\n\nIndia battles #COVID19.\n\nStay - alert, stay safe. |\u2026 https:\/\/t.co\/hAIzJs4zlj","truncated":true,"entities":{"hashtags":[{"text":"CoronavirusOutbreak","indices":[30,50]},{"text":"COVID19","indices":[67,75]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hAIzJs4zlj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235244923756003328","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1235244670369685504,"in_reply_to_status_id_str":"1235244670369685504","in_reply_to_user_id":240649814,"in_reply_to_user_id_str":"240649814","in_reply_to_screen_name":"TimesNow","user":{"id":240649814,"id_str":"240649814","name":"TIMES - NOW","screen_name":"TimesNow","location":"India","description":"TIMES NOW - is India\u2019s most watched English news channel. Follow for lightning fast - #BreakingNews and #Alerts.","url":"https:\/\/t.co\/1r9xZjg7do","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1r9xZjg7do","expanded_url":"http:\/\/www.timesnownews.com","display_url":"timesnownews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9255964,"friends_count":393,"listed_count":4979,"created_at":"Thu - Jan 20 12:17:23 +0000 2011","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":489003,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548508720888442881\/T4tYT9xR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548508720888442881\/T4tYT9xR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240649814\/1582643806","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":25,"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"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683598065665,"id_str":"1235246683598065665","text":"FEDE - BAL TIENE CORONAVIRUS???!!! NO PUEDE SER FEDE BAAAAALLLLLL NO LO PUEDO CREER - TIENE Q SER MENTIRA\n#FuerzaFedeBal \n#FedeBal\n#coronavirus","truncated":false,"entities":{"hashtags":[{"text":"FuerzaFedeBal","indices":[102,116]},{"text":"FedeBal","indices":[118,126]},{"text":"coronavirus","indices":[127,139]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1004529519640895494,"id_str":"1004529519640895494","name":"\uff2a\uff55\uff4c\uff49\u00e1\uff4e\u3000\uff08\u9060\u3044\u30c6\uff09","screen_name":"_xxx_julian","location":"Calabasas, - CA","description":"Me hago el que se de m\u00fasica pero en realidad nada - que ver.\n\n19\n\nCall \uff0b\uff11\uff08\uff17\uff18\uff16\uff09\uff15\uff11\uff19\uff0d\uff13\uff17\uff10\uff18","url":"https:\/\/t.co\/G28C5kUuZa","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/G28C5kUuZa","expanded_url":"http:\/\/instagram.com\/julibrandolin","display_url":"instagram.com\/julibrandolin","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":271,"friends_count":301,"listed_count":0,"created_at":"Thu - Jun 07 01:04:35 +0000 2018","favourites_count":28352,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4781,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169339722352738306\/ItdavGHC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169339722352738306\/ItdavGHC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1004529519640895494\/1561700134","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683426037760,"id_str":"1235246683426037760","text":"RT - @maddyjorr: 3000 deaths in past 2 months due to #coronavirus = too many = - preventative measures must be taken (and are being taken).\n\n~6\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[51,63]}],"symbols":[],"user_mentions":[{"screen_name":"maddyjorr","name":"Madeleine - Orr","id":872754662,"id_str":"872754662","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1301634260,"id_str":"1301634260","name":"Krystn - Orr","screen_name":"KrystnOrr","location":"Hamilton, Ontario","description":"PhD - Candidate | Disability | Inclusion | Qualitative Researcher | Opinions My - Own | She\/Her","url":"https:\/\/t.co\/pgLcKO969R","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pgLcKO969R","expanded_url":"https:\/\/www.researchgate.net\/profile\/Krystn_Orr","display_url":"researchgate.net\/profile\/Krystn\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":310,"friends_count":311,"listed_count":7,"created_at":"Mon - Mar 25 23:42:37 +0000 2013","favourites_count":7306,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1364,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1142191364463104000\/g0kwlOWG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1142191364463104000\/g0kwlOWG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1301634260\/1561154632","profile_link_color":"91D2FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:51:35 +0000 2020","id":1235246524805898240,"id_str":"1235246524805898240","text":"3000 - deaths in past 2 months due to #coronavirus = too many = preventative measures - must be taken (and are being ta\u2026 https:\/\/t.co\/VVHrMr3yj2","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[36,48]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VVHrMr3yj2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246524805898240","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":872754662,"id_str":"872754662","name":"Madeleine - Orr","screen_name":"maddyjorr","location":"Syracuse, NY","description":"Sport - ecologist. Co-Director @SportEcoGroup.\ud83c\udf3f Assistant Prof @CortlandSPMG. - \u26f7\ud83c\udfc0 Yes We Can(ada) \ud83c\udde8\ud83c\udde6 | she\/her","url":"https:\/\/t.co\/S4h4v1KJuw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S4h4v1KJuw","expanded_url":"http:\/\/sportecology.org","display_url":"sportecology.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":807,"friends_count":1131,"listed_count":8,"created_at":"Thu - Oct 11 00:54:28 +0000 2012","favourites_count":3190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"510800","profile_background_image_url":"http:\/\/abs.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\/1067975948295913472\/pvR6HvI0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1067975948295913472\/pvR6HvI0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/872754662\/1538068831","profile_link_color":"0B6121","profile_sidebar_border_color":"3D0702","profile_sidebar_fill_color":"2C1703","profile_text_color":"E0912A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":19,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683379949570,"id_str":"1235246683379949570","text":"@alvarohernandec - @CoronaVid19 @lavozdealmeria Joder. Pues eso me parece -para los afectados- - mucho m\u00e1s grave que el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alvarohernandec","name":"\u00c1lvaro - Hern\u00e1ndez Castillo","id":259958479,"id_str":"259958479","indices":[0,16]},{"screen_name":"CoronaVid19","name":"Coronavirus","id":1082014807161798656,"id_str":"1082014807161798656","indices":[17,29]},{"screen_name":"lavozdealmeria","name":"La - Voz de Almer\u00eda","id":258292587,"id_str":"258292587","indices":[30,45]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1235246199684444162,"in_reply_to_status_id_str":"1235246199684444162","in_reply_to_user_id":259958479,"in_reply_to_user_id_str":"259958479","in_reply_to_screen_name":"alvarohernandec","user":{"id":254691080,"id_str":"254691080","name":"Pablo - Garc\u00eda","screen_name":"PabloGarciaB","location":"","description":"Redactor - de El Independiente\n\npablo.garcia@elindependiente.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2316,"friends_count":1149,"listed_count":65,"created_at":"Sat - Feb 19 20:10:20 +0000 2011","favourites_count":19807,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47383,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/774252573096378368\/4_PAjXFz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/774252573096378368\/4_PAjXFz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683283501056,"id_str":"1235246683283501056","text":"RT - @MilagrosDwarf: Tengo m\u00e1s posibilidades de morirme por ser mujer que - por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MilagrosDwarf","name":"Milagros.","id":976869942,"id_str":"976869942","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752531252469792769,"id_str":"752531252469792769","name":"narut\u00f8","screen_name":"awitamarfil","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":395,"listed_count":1,"created_at":"Mon - Jul 11 15:53:27 +0000 2016","favourites_count":22163,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5542,"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\/1232027710953852931\/EKmMa5vH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232027710953852931\/EKmMa5vH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752531252469792769\/1575713759","profile_link_color":"CEF6EC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:16:11 +0000 2020","id":1234905423574118401,"id_str":"1234905423574118401","text":"Tengo - m\u00e1s posibilidades de morirme por ser mujer que por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":976869942,"id_str":"976869942","name":"Milagros.","screen_name":"MilagrosDwarf","location":"Por - el oeste de baires.","description":"Para verme feliz buscame en alg\u00fan - recital. Trabajo Social (UNLaM).","url":"https:\/\/t.co\/XccD9S7kPe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XccD9S7kPe","expanded_url":"http:\/\/instagram.com\/Milagrosdwarf","display_url":"instagram.com\/Milagrosdwarf","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11021,"friends_count":3230,"listed_count":199,"created_at":"Wed - Nov 28 20:13:25 +0000 2012","favourites_count":18088,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"070A09","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\/882409103896846337\/W3k0lJR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882409103896846337\/W3k0lJR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/976869942\/1471396693","profile_link_color":"F5ABB5","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54481,"favorite_count":116911,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":54481,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683241533446,"id_str":"1235246683241533446","text":"RT - @fafataveras: En el campo de la Pol\u00edtica, el Gobierno es el Coronavirus - que ser\u00e1 barrido por el CORONA LUIS.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fafataveras","name":"Fafa - Taveras","id":136389206,"id_str":"136389206","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4377345376,"id_str":"4377345376","name":"Josefina - Nunez","screen_name":"josefinano19","location":"National District, Dominican - R","description":"Fin de la corrupci\u00f3n y la impunidad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":855,"friends_count":249,"listed_count":0,"created_at":"Sat - Dec 05 00:00:46 +0000 2015","favourites_count":5580,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15312,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976914794468052993\/dGvn8N81_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976914794468052993\/dGvn8N81_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4377345376\/1521749815","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:50:37 +0000 2020","id":1235185883621531649,"id_str":"1235185883621531649","text":"En - el campo de la Pol\u00edtica, el Gobierno es el Coronavirus que ser\u00e1 - barrido por el CORONA LUIS.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136389206,"id_str":"136389206","name":"Fafa - Taveras","screen_name":"fafataveras","location":"","description":"Pol\u00edtico, - padre, abuelo, amigo.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47129,"friends_count":3615,"listed_count":77,"created_at":"Fri - Apr 23 20:25:30 +0000 2010","favourites_count":721,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16263,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638069243511074816\/ltGHdybg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638069243511074816\/ltGHdybg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":19,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683149275137,"id_str":"1235246683149275137","text":"RT - @QuimeyHerrera01: MIR\u00c1 ESOS COLORES!!!!! \u00bfel coronavirus? DE BOKITA - PAP\u00c1 \ud83d\udc99\ud83d\udc9b\ud83d\udc99\ud83d\udc9b\ud83d\udc99\ud83d\udc9b\ud83d\udc99\ud83d\udc9b\ud83d\udc99","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"QuimeyHerrera01","name":"Quimey - Herrera","id":1081914993535270912,"id_str":"1081914993535270912","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148108277,"id_str":"148108277","name":"mr - sweet dreams tennessee","screen_name":"aom__2095","location":"Lima, Per\u00fa","description":"chibolo, - feo y misio","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":318,"friends_count":406,"listed_count":5,"created_at":"Tue - May 25 21:32:46 +0000 2010","favourites_count":13741,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16651,"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\/1235256433605738497\/OGsh2M0G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235256433605738497\/OGsh2M0G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148108277\/1569135955","profile_link_color":"0C1214","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:44:36 +0000 2020","id":1234897478291513346,"id_str":"1234897478291513346","text":"MIR\u00c1 - ESOS COLORES!!!!! \u00bfel coronavirus? DE BOKITA PAP\u00c1 \ud83d\udc99\ud83d\udc9b\ud83d\udc99\ud83d\udc9b\ud83d\udc99\ud83d\udc9b\ud83d\udc99\ud83d\udc9b\ud83d\udc99 - https:\/\/t.co\/1j3NU3tyIm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1j3NU3tyIm","expanded_url":"https:\/\/twitter.com\/porquetendencia\/status\/1234896061870768130","display_url":"twitter.com\/porquetendenci\u2026","indices":[65,88]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1081914993535270912,"id_str":"1081914993535270912","name":"Quimey - Herrera","screen_name":"QuimeyHerrera01","location":"","description":"Soy - actor. Soy un boludo. Soy hermoso. Amo a Schunke.\nYo estoy en el Instagram - de Maradona.\nGajes del oficio.","url":"https:\/\/t.co\/KQutBfUGsn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KQutBfUGsn","expanded_url":"https:\/\/www.instagram.com\/quimeyherrera1\/","display_url":"instagram.com\/quimeyherrera1\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":27541,"friends_count":378,"listed_count":13,"created_at":"Sun - Jan 06 14:06:50 +0000 2019","favourites_count":12856,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7062,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223795877782937600\/3a8PIcVq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223795877782937600\/3a8PIcVq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081914993535270912\/1574965971","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234896061870768130,"quoted_status_id_str":"1234896061870768130","quoted_status":{"created_at":"Tue - Mar 03 17:38:59 +0000 2020","id":1234896061870768130,"id_str":"1234896061870768130","text":"\"Bienvenido - a la Argentina\":\nPor quienes le dan la bienvenida al coronavirus tras la - confirmaci\u00f3n del primer caso e\u2026 https:\/\/t.co\/O9zBbh4Jqh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/O9zBbh4Jqh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234896061870768130","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":973302847654760448,"id_str":"973302847654760448","name":"\u00bfPor - qu\u00e9 es tendencia?","screen_name":"porquetendencia","location":"Tendencias, - Argentina","description":"Enterate la raz\u00f3n de las tendencias en #TwitterArgentina","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":268576,"friends_count":173,"listed_count":146,"created_at":"Mon - Mar 12 21:00:56 +0000 2018","favourites_count":916,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16348,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207065838165090309\/A9c-nRTD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207065838165090309\/A9c-nRTD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/973302847654760448\/1573768651","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1181,"favorite_count":10317,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":6576,"favorite_count":50692,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1234896061870768130,"quoted_status_id_str":"1234896061870768130","retweet_count":6576,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683128320000,"id_str":"1235246683128320000","text":"RT - @RepMichaelWaltz: Congress should have been here last weekend to pass a #coronavirus - funding bill.\n\nBut here we are, with no bill to vot\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[75,87]}],"symbols":[],"user_mentions":[{"screen_name":"RepMichaelWaltz","name":"Rep. - Michael Waltz","id":1082416697380913152,"id_str":"1082416697380913152","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2245273230,"id_str":"2245273230","name":"Nancy - Bond","screen_name":"bondnbond3007","location":"Sioux Falls, SD","description":"Honest, - caring, bold","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":67,"listed_count":0,"created_at":"Sat - Dec 14 08:51:41 +0000 2013","favourites_count":19724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220185305438916610\/TrKAvbQb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220185305438916610\/TrKAvbQb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:28:32 +0000 2020","id":1235240723517255681,"id_str":"1235240723517255681","text":"Congress - should have been here last weekend to pass a #coronavirus funding bill.\n\nBut - here we are, with no bill to\u2026 https:\/\/t.co\/VV9vzn9IfS","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[54,66]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VV9vzn9IfS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235240723517255681","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1082416697380913152,"id_str":"1082416697380913152","name":"Rep. - Michael Waltz","screen_name":"RepMichaelWaltz","location":"","description":"Congressman - for #FL6 (Volusia, Flagler, Lake, St Johns Counties), Green Beret, National - Guard Lt. Col., former CEO, Author of \"Warrior Diplomat,\" Father.","url":"https:\/\/t.co\/QOB7UQmYz2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QOB7UQmYz2","expanded_url":"http:\/\/waltz.house.gov","display_url":"waltz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18308,"friends_count":511,"listed_count":224,"created_at":"Mon - Jan 07 23:20:25 +0000 2019","favourites_count":877,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":1976,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215019343739838464\/ZGNl7bHe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215019343739838464\/ZGNl7bHe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1082416697380913152\/1560377890","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235236383112998912,"quoted_status_id_str":"1235236383112998912","quoted_status":{"created_at":"Wed - Mar 04 16:11:17 +0000 2020","id":1235236383112998912,"id_str":"1235236383112998912","text":"Congress - should''ve already passed a funding bill to combat coronavirus. Period. But - Democrats are hellbent on sneak\u2026 https:\/\/t.co\/26hKMBMO4s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/26hKMBMO4s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235236383112998912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19739126,"id_str":"19739126","name":"Kevin - McCarthy","screen_name":"GOPLeader","location":"Bakersfield, CA","description":"Republican - Leader and Representative of California''s 23rd District in the House of Representatives.\nhttps:\/\/t.co\/ZqWsqD6L0T","url":"https:\/\/t.co\/eB1lud6Yi3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eB1lud6Yi3","expanded_url":"http:\/\/republicanleader.gov","display_url":"republicanleader.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZqWsqD6L0T","expanded_url":"https:\/\/www.instagram.com\/repkevinmccarthy\/","display_url":"instagram.com\/repkevinmccart\u2026","indices":[100,123]}]}},"protected":false,"followers_count":708094,"friends_count":1388,"listed_count":4807,"created_at":"Thu - Jan 29 22:28:48 +0000 2009","favourites_count":1829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12552,"lang":null,"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\/1144683452064833536\/fZbuxrtg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144683452064833536\/fZbuxrtg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19739126\/1582230846","profile_link_color":"0A2644","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"122C73","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12035,"favorite_count":31046,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":688,"favorite_count":1637,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235236383112998912,"quoted_status_id_str":"1235236383112998912","retweet_count":688,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246683002417154,"id_str":"1235246683002417154","text":"RT - @makdavicho1974: IMSS desmiente a Loret: Falso que 4T haya comprado caretas - de alba\u00f1il y guantes de intendente por Coronavirus \n\nEste pe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"makdavicho1974","name":"DAVE - #RedChairoMx","id":3399646822,"id_str":"3399646822","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":988206282845904897,"id_str":"988206282845904897","name":"Javier - R\u00e1bago \ud83c\uddf2\ud83c\uddfdSonora","screen_name":"Francis82019365","location":"Sonora","description":"Sonorense. - Amo a mi pa\u00eds. Enemigo de la injusticia, Me gusta caminar, la m\u00fasica - mexicana tradicional. Detesto la basura. Feliz con mis nietos. \u26be\ufe0f. - #RedAMLO","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8297,"friends_count":7540,"listed_count":4,"created_at":"Mon - Apr 23 00:01:52 +0000 2018","favourites_count":86520,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72204,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1193610361796214784\/73z4dx7m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193610361796214784\/73z4dx7m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/988206282845904897\/1533846141","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:55:24 +0000 2020","id":1235202186835111936,"id_str":"1235202186835111936","text":"IMSS - desmiente a Loret: Falso que 4T haya comprado caretas de alba\u00f1il y guantes - de intendente por Coronavirus \n\nEst\u2026 https:\/\/t.co\/WcwnAaxG7n","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WcwnAaxG7n","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235202186835111936","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3399646822,"id_str":"3399646822","name":"DAVE - #RedChairoMx","screen_name":"makdavicho1974","location":"Chimalhuac\u00e1n, - M\u00e9xico","description":"AMLOVER\ud83d\udcaf SCARLETT JOHANSSON y PATRICIA - NAVIDAD SON MI ADORACION\ud83d\ude18\ud83d\ude18\ud83d\ude18\ud83d\ude18 #RedAMLOVE - #RedChairoMx #LoBuenoDeAMLO","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4910,"friends_count":5191,"listed_count":9,"created_at":"Sun - Aug 02 03:38:16 +0000 2015","favourites_count":58490,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32027,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212490087570821121\/0e6AE9CG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212490087570821121\/0e6AE9CG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3399646822\/1565452602","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":289,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":243,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682788552705,"id_str":"1235246682788552705","text":"RT - @luubruguiere: En Argentina tenes m\u00e1s probabilidades de morir por ser - mujer que por coronavirus sin embargo no veo que los medios digan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"luubruguiere","name":"Lourdes - \ud83d\udcab","id":373124167,"id_str":"373124167","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1007407950854610944,"id_str":"1007407950854610944","name":"\ud835\udc73\ud835\udc96","screen_name":"luluselvetti","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":144,"listed_count":0,"created_at":"Thu - Jun 14 23:42:27 +0000 2018","favourites_count":5298,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2284,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221998957489987584\/iBxOdqno_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221998957489987584\/iBxOdqno_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007407950854610944\/1578119041","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 02:03:34 +0000 2020","id":1235023045930041344,"id_str":"1235023045930041344","text":"En - Argentina tenes m\u00e1s probabilidades de morir por ser mujer que por coronavirus - sin embargo no veo que los medios\u2026 https:\/\/t.co\/g9B879GqMp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/g9B879GqMp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235023045930041344","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":373124167,"id_str":"373124167","name":"Lourdes - \ud83d\udcab","screen_name":"luubruguiere","location":"Argentina","description":"No - soy de carcajadas mentirosas \nEstudiante de medicina - \ud83d\udc89\ud83d\udc9b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":400,"friends_count":344,"listed_count":0,"created_at":"Wed - Sep 14 01:24:35 +0000 2011","favourites_count":19053,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18491,"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\/1112002601464279040\/B-a0r7Lg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1112002601464279040\/B-a0r7Lg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/373124167\/1548432077","profile_link_color":"F58EA8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":64,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682784309248,"id_str":"1235246682784309248","text":"RT - @REAndRAdeOk: Dato, no opini\u00f3n: El protagonista de la noticia vol\u00f3 - en business y aguard\u00f3 en la Cl\u00ednica y Maternidad Suizo Argentina - de B\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"REAndRAdeOk","name":"Rodrigo - E. Andrade","id":452181966,"id_str":"452181966","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160198048,"id_str":"160198048","name":"Claudio - O. Giardino \ud83d\udc9a","screen_name":"cogaie","location":"","description":"Contador - P\u00fablico U.B.A. Boquense de coraz\u00f3n. Defensor de los Clubes en manos - de sus Socios. Mi religi\u00f3n: La \u00fanica lucha que se pierde es la que - se abandona","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6313,"friends_count":298,"listed_count":47,"created_at":"Sun - Jun 27 13:29:02 +0000 2010","favourites_count":11238,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27721,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1080895193778401280\/s9bsU9jA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080895193778401280\/s9bsU9jA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160198048\/1506976920","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:01:38 +0000 2020","id":1235173553974239232,"id_str":"1235173553974239232","text":"Dato, - no opini\u00f3n: El protagonista de la noticia vol\u00f3 en business y aguard\u00f3 - en la Cl\u00ednica y Maternidad Suizo Argenti\u2026 https:\/\/t.co\/o7iU7OKzlg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/o7iU7OKzlg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235173553974239232","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":452181966,"id_str":"452181966","name":"Rodrigo - E. Andrade","screen_name":"REAndRAdeOk","location":"Buenos Aires, Argentina","description":"Jefe - de @iJudicial en @ConsejoMCABA \u2696\ufe0f \/ Proyecto de tesis aprobado - en @MaePeriodismo \ud83d\udcda \/ Posgrado @ComPolUCA \ud83d\udce2 \/ Socio - @FOPEA \ud83d\uddde\ufe0f\/ Licenciado en Periodismo","url":"https:\/\/t.co\/98T88InIwH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/98T88InIwH","expanded_url":"http:\/\/instagram.com\/reandradeok","display_url":"instagram.com\/reandradeok","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9352,"friends_count":4316,"listed_count":72,"created_at":"Sun - Jan 01 14:34:59 +0000 2012","favourites_count":40589,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32256,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FA743E","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\/1225400894646374407\/bPtVD2VG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225400894646374407\/bPtVD2VG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/452181966\/1582242553","profile_link_color":"FF691F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":539,"favorite_count":3006,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":539,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682696110081,"id_str":"1235246682696110081","text":"RT - @BloombergAsia: South Korea unveils a plan for an extra 11.7 trillion won - ($9.8 billion) to help businesses hit by the world\u2019s second-la\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BloombergAsia","name":"Bloomberg - Asia","id":588261604,"id_str":"588261604","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1234881690150924291,"id_str":"1234881690150924291","name":"JaneBBBPetty","screen_name":"BbbPetty","location":"","description":"I - love america & politics.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":61,"listed_count":0,"created_at":"Tue - Mar 03 16:42:05 +0000 2020","favourites_count":304,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":484,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234881945516961792\/HOhH9cMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234881945516961792\/HOhH9cMz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 03:25:33 +0000 2020","id":1235043678642532353,"id_str":"1235043678642532353","text":"South - Korea unveils a plan for an extra 11.7 trillion won ($9.8 billion) to help - businesses hit by the world\u2019s seco\u2026 https:\/\/t.co\/hzvbn6p9cj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hzvbn6p9cj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235043678642532353","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":588261604,"id_str":"588261604","name":"Bloomberg - Asia","screen_name":"BloombergAsia","location":"","description":"The official - Twitter account for Bloomberg in Asia, bringing you the top stories in business - from the region and around the world.","url":"https:\/\/t.co\/Uox38VgXYE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Uox38VgXYE","expanded_url":"http:\/\/www.bloomberg.com\/asia","display_url":"bloomberg.com\/asia","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":59711,"friends_count":568,"listed_count":1018,"created_at":"Wed - May 23 12:43:25 +0000 2012","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":144355,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/778129630284902401\/gXjFkqGM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/778129630284902401\/gXjFkqGM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/588261604\/1547170119","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":355,"favorite_count":805,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":355,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682616532993,"id_str":"1235246682616532993","text":"RT - @atrupar: \u201cThis isn\u2019t altruism. This is an investment in public - relations as he profits off his high office.\u201d -- @waltshaub on Trump - \"do\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"atrupar","name":"Aaron - Rupar","id":288277167,"id_str":"288277167","indices":[3,11]},{"screen_name":"waltshaub","name":"Walter - Shaub","id":830908366377611266,"id_str":"830908366377611266","indices":[116,126]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333530860,"id_str":"2333530860","name":"Serena","screen_name":"SerenaGbw","location":"","description":"Concerned - human on Earth\ud83d\ude0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":124,"listed_count":0,"created_at":"Sat - Feb 08 14:06:32 +0000 2014","favourites_count":71202,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3075,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233143932084772864\/1MToODrR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233143932084772864\/1MToODrR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:45:56 +0000 2020","id":1235245099996639234,"id_str":"1235245099996639234","text":"\u201cThis - isn\u2019t altruism. This is an investment in public relations as he profits - off his high office.\u201d -- @waltshaub o\u2026 https:\/\/t.co\/56qxKHVJdy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"waltshaub","name":"Walter - Shaub","id":830908366377611266,"id_str":"830908366377611266","indices":[103,113]}],"urls":[{"url":"https:\/\/t.co\/56qxKHVJdy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245099996639234","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":288277167,"id_str":"288277167","name":"Aaron - Rupar","screen_name":"atrupar","location":"","description":"journalist @voxdotcom","url":"https:\/\/t.co\/RnqX4a5AQt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RnqX4a5AQt","expanded_url":"http:\/\/vox.com","display_url":"vox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247705,"friends_count":999,"listed_count":2854,"created_at":"Tue - Apr 26 15:22:47 +0000 2011","favourites_count":96174,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":70554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288277167\/1469538346","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":391,"favorite_count":1193,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":391,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682557648897,"id_str":"1235246682557648897","text":"Petition - to cancel #SXSW is now at 42,500 signatures and climbing fast. https:\/\/t.co\/uXtrO5lWiN","truncated":false,"entities":{"hashtags":[{"text":"SXSW","indices":[19,24]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uXtrO5lWiN","expanded_url":"https:\/\/www.change.org\/p\/petition-to-have-sxsw-cancelled-amid-coronavirus-outbreak?recruiter=925528137&utm_source=share_petition&utm_medium=twitter&utm_campaign=psf_combo_share_initial&recruited_by_id=b09a8d00-09b5-11e9-87e3-f98cc8a81390","display_url":"change.org\/p\/petition-to-\u2026","indices":[72,95]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8241232,"id_str":"8241232","name":"Anthony - Quintano","screen_name":"AnthonyQuintano","location":"New Jersey","description":"Photojournalist - \/ Previously: NBC News, Recode, Honolulu Civil Beat. Moving from Colorado - to New Jersey soon.","url":"https:\/\/t.co\/YJHhvCOrYI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YJHhvCOrYI","expanded_url":"https:\/\/linktr.ee\/anthonyquintano","display_url":"linktr.ee\/anthonyquintano","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":27853,"friends_count":6770,"listed_count":1382,"created_at":"Fri - Aug 17 09:34:00 +0000 2007","favourites_count":62530,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":85471,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E0E0E0","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\/1224294024812670981\/7zY2nnpS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224294024812670981\/7zY2nnpS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8241232\/1579468652","profile_link_color":"0C79CC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682549424128,"id_str":"1235246682549424128","text":"RT - @SkyNews: BREAKING: The number of confirmed #coronavirus cases in the UK - has reached 85, according to the department of health. \n\nMore\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[48,60]}],"symbols":[],"user_mentions":[{"screen_name":"SkyNews","name":"Sky - News","id":7587032,"id_str":"7587032","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":250703920,"id_str":"250703920","name":"aimeestravels\ud83e\udd76","screen_name":"oxotash","location":"Manchester, - England","description":"positive energy is the best energy. ||ig: aimeestravels - || Bisexual\ud83c\udf08 || SOLO TRAVEL VLOGGER","url":"https:\/\/t.co\/ofhJK1B8LJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ofhJK1B8LJ","expanded_url":"https:\/\/youtu.be\/yOSQfKXRIF4","display_url":"youtu.be\/yOSQfKXRIF4","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1144,"listed_count":31,"created_at":"Fri - Feb 11 16:45:21 +0000 2011","favourites_count":36170,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":151168,"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\/1213442715817562112\/eWLKjGq7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213442715817562112\/eWLKjGq7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250703920\/1582746746","profile_link_color":"F58EA8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:21:25 +0000 2020","id":1235208734353354753,"id_str":"1235208734353354753","text":"BREAKING: The - number of confirmed #coronavirus cases in the UK has reached 85, according - to the department of heal\u2026 https:\/\/t.co\/P5Ht4mTbew","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[35,47]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/P5Ht4mTbew","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235208734353354753","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/grabyo.com\" rel=\"nofollow\"\u003eGrabyo\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7587032,"id_str":"7587032","name":"Sky - News","screen_name":"SkyNews","location":"London, UK","description":"We take - you to the heart of the stories that shape our world. \n\nFor breaking news, - follow @SkyNewsBreak","url":"https:\/\/t.co\/SnOv0usOtw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SnOv0usOtw","expanded_url":"http:\/\/news.sky.com\/","display_url":"news.sky.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5536965,"friends_count":27,"listed_count":25879,"created_at":"Thu - Jul 19 14:42:53 +0000 2007","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":381645,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/953341660813021185\/o2IGXWqj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/953341660813021185\/o2IGXWqj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7587032\/1516873161","profile_link_color":"385FAC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDEDED","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":92,"favorite_count":161,"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"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682318786560,"id_str":"1235246682318786560","text":"RT - @molerogascon: J\u00fcrgen Klopp sobre el coronavirus:\n\u201cNo entiendo - ni me gusta que simplemente por el hecho de ser famoso mi opini\u00f3n sea - rel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"molerogascon","name":"Pep - Molero","id":213982456,"id_str":"213982456","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312254943,"id_str":"312254943","name":"Lautaro","screen_name":"AlonsoLautaro","location":"Mendoza, - Argentina","description":"Intento de programador \u2022 Comunicaci\u00f3n - UNCUYO","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2599,"friends_count":908,"listed_count":8,"created_at":"Mon - Jun 06 20:40:37 +0000 2011","favourites_count":58877,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26095,"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\/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\/1210585756529500166\/I20QKiCC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210585756529500166\/I20QKiCC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312254943\/1535506062","profile_link_color":"0000FF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:36:57 +0000 2020","id":1234986149283631105,"id_str":"1234986149283631105","text":"J\u00fcrgen - Klopp sobre el coronavirus:\n\u201cNo entiendo ni me gusta que simplemente - por el hecho de ser famoso mi opini\u00f3n s\u2026 https:\/\/t.co\/xFVIWkrBWR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xFVIWkrBWR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234986149283631105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33979,"favorite_count":118199,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":33979,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682310238208,"id_str":"1235246682310238208","text":"RT - @RepMattGaetz: Coronavirus does not belong to a political party and it should - not be a political tool. https:\/\/t.co\/WRvO5lw1Nw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepMattGaetz","name":"Rep. - Matt Gaetz","id":818948638890217473,"id_str":"818948638890217473","indices":[3,16]}],"urls":[],"media":[{"id":1234493692809011205,"id_str":"1234493692809011205","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","url":"https:\/\/t.co\/WRvO5lw1Nw","display_url":"pic.twitter.com\/WRvO5lw1Nw","expanded_url":"https:\/\/twitter.com\/RepMattGaetz\/status\/1235241370073300992\/video\/1","type":"photo","sizes":{"large":{"w":1296,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"}},"source_status_id":1235241370073300992,"source_status_id_str":"1235241370073300992","source_user_id":818948638890217473,"source_user_id_str":"818948638890217473"}]},"extended_entities":{"media":[{"id":1234493692809011205,"id_str":"1234493692809011205","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","url":"https:\/\/t.co\/WRvO5lw1Nw","display_url":"pic.twitter.com\/WRvO5lw1Nw","expanded_url":"https:\/\/twitter.com\/RepMattGaetz\/status\/1235241370073300992\/video\/1","type":"video","sizes":{"large":{"w":1296,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"}},"source_status_id":1235241370073300992,"source_status_id_str":"1235241370073300992","source_user_id":818948638890217473,"source_user_id_str":"818948638890217473","video_info":{"aspect_ratio":[9,5],"duration_millis":35367,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/1296x720\/M8LBBUr_1nRYMHse.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/648x360\/ycNUVC_kyl6X8OKg.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/486x270\/IeWSFJzPdm9W1PoE.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/pl\/Srbcmh9S32YWMyK7.m3u8?tag=13"}]},"additional_media_info":{"title":"Coronavirus - Does Not Belong to a Political Party","description":"Local officials are going - to help us defeat this virus, not Democrats using it to weaponize politics - against the president. ","call_to_actions":{"watch_now":{"url":"https:\/\/youtu.be\/GhYP8Qgr24E"}},"embeddable":true,"monetizable":false,"source_user":{"id":818948638890217473,"id_str":"818948638890217473","name":"Rep. - Matt Gaetz","screen_name":"RepMattGaetz","location":"","description":"Official - Twitter for Congressman Matt Gaetz. Proud conservative who is honored to serve - the First District of Florida.","url":"https:\/\/t.co\/GcjK1dZCtR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GcjK1dZCtR","expanded_url":"http:\/\/Gaetz.house.gov","display_url":"Gaetz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":655055,"friends_count":856,"listed_count":2237,"created_at":"Tue - Jan 10 22:32:25 +0000 2017","favourites_count":612,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5249,"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\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818948638890217473\/1546465602","profile_link_color":"BB1A2A","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1074326317,"id_str":"1074326317","name":"\ud83c\uddfa\ud83c\uddf8B. - Swim","screen_name":"calccoach","location":"Arizona, USA","description":"Love - to travel. Geocaching. Family!! #MAGA #KAG","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2411,"friends_count":2794,"listed_count":3,"created_at":"Wed - Jan 09 17:01:11 +0000 2013","favourites_count":61615,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39649,"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\/1112412209961816064\/9rNT1U9v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1112412209961816064\/9rNT1U9v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1074326317\/1562096936","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:31:06 +0000 2020","id":1235241370073300992,"id_str":"1235241370073300992","text":"Coronavirus - does not belong to a political party and it should not be a political tool. - https:\/\/t.co\/WRvO5lw1Nw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234493692809011205,"id_str":"1234493692809011205","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","url":"https:\/\/t.co\/WRvO5lw1Nw","display_url":"pic.twitter.com\/WRvO5lw1Nw","expanded_url":"https:\/\/twitter.com\/RepMattGaetz\/status\/1235241370073300992\/video\/1","type":"photo","sizes":{"large":{"w":1296,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234493692809011205,"id_str":"1234493692809011205","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234493692809011205\/img\/avC7hjvM4c5vnBq6.jpg","url":"https:\/\/t.co\/WRvO5lw1Nw","display_url":"pic.twitter.com\/WRvO5lw1Nw","expanded_url":"https:\/\/twitter.com\/RepMattGaetz\/status\/1235241370073300992\/video\/1","type":"video","sizes":{"large":{"w":1296,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"}},"video_info":{"aspect_ratio":[9,5],"duration_millis":35367,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/1296x720\/M8LBBUr_1nRYMHse.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/648x360\/ycNUVC_kyl6X8OKg.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/vid\/486x270\/IeWSFJzPdm9W1PoE.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234493692809011205\/pl\/Srbcmh9S32YWMyK7.m3u8?tag=13"}]},"additional_media_info":{"title":"Coronavirus - Does Not Belong to a Political Party","description":"Local officials are going - to help us defeat this virus, not Democrats using it to weaponize politics - against the president. ","call_to_actions":{"watch_now":{"url":"https:\/\/youtu.be\/GhYP8Qgr24E"}},"embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":818948638890217473,"id_str":"818948638890217473","name":"Rep. - Matt Gaetz","screen_name":"RepMattGaetz","location":"","description":"Official - Twitter for Congressman Matt Gaetz. Proud conservative who is honored to serve - the First District of Florida.","url":"https:\/\/t.co\/GcjK1dZCtR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GcjK1dZCtR","expanded_url":"http:\/\/Gaetz.house.gov","display_url":"Gaetz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":655055,"friends_count":856,"listed_count":2237,"created_at":"Tue - Jan 10 22:32:25 +0000 2017","favourites_count":612,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5249,"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\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818948638890217473\/1546465602","profile_link_color":"BB1A2A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2453,"favorite_count":10612,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2453,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682020995073,"id_str":"1235246682020995073","text":"RT - @BloombergQuint: @drharshvardhan The total number of people tested positive - for #coronavirus in India has risen to 28: Union Health Mini\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[83,95]}],"symbols":[],"user_mentions":[{"screen_name":"BloombergQuint","name":"BloombergQuint","id":714731566828793857,"id_str":"714731566828793857","indices":[3,18]},{"screen_name":"drharshvardhan","name":"Dr - Harsh Vardhan","id":77732185,"id_str":"77732185","indices":[20,35]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232367656285560834,"id_str":"1232367656285560834","name":"Ps - Reddy","screen_name":"PsReddy46563338","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":46,"listed_count":0,"created_at":"Tue - Feb 25 18:13:00 +0000 2020","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233839481989607426\/w9pdkAtW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233839481989607426\/w9pdkAtW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232367656285560834\/1583005251","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 08:11:18 +0000 2020","id":1235115587333808128,"id_str":"1235115587333808128","text":"@drharshvardhan - The total number of people tested positive for #coronavirus in India has risen - to 28: Union Health\u2026 https:\/\/t.co\/PVq09vpWwf","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[63,75]}],"symbols":[],"user_mentions":[{"screen_name":"drharshvardhan","name":"Dr - Harsh Vardhan","id":77732185,"id_str":"77732185","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/PVq09vpWwf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235115587333808128","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1235104315909390336,"in_reply_to_status_id_str":"1235104315909390336","in_reply_to_user_id":714731566828793857,"in_reply_to_user_id_str":"714731566828793857","in_reply_to_screen_name":"BloombergQuint","user":{"id":714731566828793857,"id_str":"714731566828793857","name":"BloombergQuint","screen_name":"BloombergQuint","location":"Mumbai, - India","description":"#India\u2019s premier multi-platform #business and financial - #news company.\n\nFor #BQBlue subscription queries email: support@bloombergquint.com","url":"https:\/\/t.co\/l1ejmXbd7v","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l1ejmXbd7v","expanded_url":"http:\/\/www.bloombergquint.com\/","display_url":"bloombergquint.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":118022,"friends_count":193,"listed_count":1104,"created_at":"Tue - Mar 29 08:30:59 +0000 2016","favourites_count":90,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":188725,"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\/913063487613440001\/oU9k6XU7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913063487613440001\/oU9k6XU7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/714731566828793857\/1581330265","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":316,"favorite_count":636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":316,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246682012610561,"id_str":"1235246682012610561","text":"Ils - sont venus leur d\u00e9sinfecter leur maison du coronavirus \ud83e\udd23\ud83e\udd23\ud83e\udd23 - https:\/\/t.co\/gO2Krbu4gj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235246677419794434,"id_str":"1235246677419794434","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6TvmWoAIyFdc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6TvmWoAIyFdc.jpg","url":"https:\/\/t.co\/gO2Krbu4gj","display_url":"pic.twitter.com\/gO2Krbu4gj","expanded_url":"https:\/\/twitter.com\/mister_caius\/status\/1235246682012610561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"},"small":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235246677419794434,"id_str":"1235246677419794434","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6TvmWoAIyFdc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6TvmWoAIyFdc.jpg","url":"https:\/\/t.co\/gO2Krbu4gj","display_url":"pic.twitter.com\/gO2Krbu4gj","expanded_url":"https:\/\/twitter.com\/mister_caius\/status\/1235246682012610561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"},"small":{"w":480,"h":640,"resize":"fit"}}},{"id":1235246679986708482,"id_str":"1235246679986708482","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6T5KWoAITg9q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6T5KWoAITg9q.jpg","url":"https:\/\/t.co\/gO2Krbu4gj","display_url":"pic.twitter.com\/gO2Krbu4gj","expanded_url":"https:\/\/twitter.com\/mister_caius\/status\/1235246682012610561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":540,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":720,"h":540,"resize":"fit"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1436306688,"id_str":"1436306688","name":"Mister_Caius","screen_name":"mister_caius","location":"","description":"Here - to avoid fb friends","url":"https:\/\/t.co\/aIJlCw2zYx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aIJlCw2zYx","expanded_url":"https:\/\/www.amazon.fr\/dp\/363952229X\/ref=cm_sw_r_","display_url":"amazon.fr\/dp\/363952229X\/\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":207,"friends_count":2005,"listed_count":4,"created_at":"Fri - May 17 18:10:17 +0000 2013","favourites_count":7295,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5333,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233135533301411840\/bqau8NUN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233135533301411840\/bqau8NUN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1436306688\/1415995464","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681945501698,"id_str":"1235246681945501698","text":"RT - @MiguelDelaney: Klopp asked about potential effect of coronavirus.\n\n\"I''m - a football manager. I shouldn''t be asked on these things. I''m n\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MiguelDelaney","name":"Miguel - Delaney","id":157381435,"id_str":"157381435","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113877822395834368,"id_str":"1113877822395834368","name":"Karl - smith","screen_name":"Karlsmi00479109","location":"","description":"I respond - positively to good people! No DMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":947,"listed_count":1,"created_at":"Thu - Apr 04 18:55:42 +0000 2019","favourites_count":8948,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 22:19:44 +0000 2020","id":1234966715655753734,"id_str":"1234966715655753734","text":"Klopp - asked about potential effect of coronavirus.\n\n\"I''m a football manager. - I shouldn''t be asked on these things.\u2026 https:\/\/t.co\/LXmzgVYOI4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LXmzgVYOI4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234966715655753734","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":157381435,"id_str":"157381435","name":"Miguel - Delaney","screen_name":"MiguelDelaney","location":"London","description":"Chief - football writer at @independent. Irish-Spanish. DMs open. Miguel.Delaney@independent.co.uk - https:\/\/t.co\/weZCIhlK9u","url":"https:\/\/t.co\/bYUGCIaKgn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bYUGCIaKgn","expanded_url":"http:\/\/migueldelaney.com","display_url":"migueldelaney.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/weZCIhlK9u","expanded_url":"https:\/\/www.facebook.com\/DelaneyMiguel\/?fref=ts","display_url":"facebook.com\/DelaneyMiguel\/\u2026","indices":[97,120]}]}},"protected":false,"followers_count":132070,"friends_count":3580,"listed_count":2736,"created_at":"Sat - Jun 19 16:50:51 +0000 2010","favourites_count":26410,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":266843,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1209190350281162758\/4gO5stjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209190350281162758\/4gO5stjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/157381435\/1530023923","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1513,"favorite_count":17051,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1513,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681861640192,"id_str":"1235246681861640192","text":"RT - @JuddLegum: Trump blames his administration''s failure to conduct testing - for the coronavirus (less than 500 tests as of last Friday) on\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JuddLegum","name":"Judd - Legum","id":15464697,"id_str":"15464697","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1417921,"id_str":"1417921","name":"Brian - K","screen_name":"bktandem","location":"Central NJ, USA","description":"Blogger, - podcaster, writer, PR person, runner\/triathlete and musician in central NJ.","url":"https:\/\/t.co\/xVE3H3DIas","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xVE3H3DIas","expanded_url":"http:\/\/tandemwiththerandom.com","display_url":"tandemwiththerandom.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":728,"friends_count":1925,"listed_count":73,"created_at":"Sun - Mar 18 14:20:42 +0000 2007","favourites_count":26513,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":115549,"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\/1214223134544539648\/08Om1v6c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214223134544539648\/08Om1v6c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1417921\/1578328331","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:46:42 +0000 2020","id":1235245295707066375,"id_str":"1235245295707066375","text":"Trump - blames his administration''s failure to conduct testing for the coronavirus - (less than 500 tests as of last Fr\u2026 https:\/\/t.co\/MQZs1lU13l","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MQZs1lU13l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245295707066375","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15464697,"id_str":"15464697","name":"Judd - Legum","screen_name":"JuddLegum","location":"Washington, DC","description":"I - write Popular Information, a newsletter about politics and power. \n\nSend - tips: DMs open | judd@popular.info | jlegum@protonmail.com","url":"https:\/\/t.co\/7lEYXJGXf5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7lEYXJGXf5","expanded_url":"http:\/\/Popular.info","display_url":"Popular.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":404917,"friends_count":1305,"listed_count":6205,"created_at":"Thu - Jul 17 05:37:26 +0000 2008","favourites_count":4347,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":56740,"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\/636336373453053952\/yv-YqI5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636336373453053952\/yv-YqI5w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15464697\/1533728641","profile_link_color":"202037","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235243899674939392,"quoted_status_id_str":"1235243899674939392","quoted_status":{"created_at":"Wed - Mar 04 16:41:10 +0000 2020","id":1235243899674939392,"id_str":"1235243899674939392","text":"Trump - on coronavirus testing: \"The Obama administration made a decision on testing - that turned out to be very detri\u2026 https:\/\/t.co\/dC3optnUmF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dC3optnUmF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235243899674939392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":288277167,"id_str":"288277167","name":"Aaron - Rupar","screen_name":"atrupar","location":"","description":"journalist @voxdotcom","url":"https:\/\/t.co\/RnqX4a5AQt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RnqX4a5AQt","expanded_url":"http:\/\/vox.com","display_url":"vox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247705,"friends_count":999,"listed_count":2854,"created_at":"Tue - Apr 26 15:22:47 +0000 2011","favourites_count":96174,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":70554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816281781011959808\/aGIAz8Qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288277167\/1469538346","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3556,"favorite_count":12531,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3770,"favorite_count":9844,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235243899674939392,"quoted_status_id_str":"1235243899674939392","retweet_count":3770,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681735692288,"id_str":"1235246681735692288","text":"RT - @W7VOA: #Coronavirus again a focus of @POTUS and @VP here today: https:\/\/t.co\/P1LbqZK8iS","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[11,23]}],"symbols":[],"user_mentions":[{"screen_name":"W7VOA","name":"Steve - Herman","id":17919393,"id_str":"17919393","indices":[3,9]},{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[41,47]},{"screen_name":"VP","name":"Vice - President Mike Pence","id":818910970567344128,"id_str":"818910970567344128","indices":[52,55]}],"urls":[{"url":"https:\/\/t.co\/P1LbqZK8iS","expanded_url":"https:\/\/twitter.com\/davidshepardson\/status\/1235241633878290434","display_url":"twitter.com\/davidshepardso\u2026","indices":[68,91]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2713172484,"id_str":"2713172484","name":"Infectious - Diseases","screen_name":"InfectiousDz","location":"NYC","description":"Writing - about Infectious Diseases here, there, and everywhere. Posts on infectious - disease in English. Retweets in Spanish, French, Portuguese, maybe more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21081,"friends_count":7601,"listed_count":555,"created_at":"Wed - Aug 06 23:33:17 +0000 2014","favourites_count":87465,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49332,"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\/516740964337999872\/IaWgfADW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516740964337999872\/IaWgfADW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2713172484\/1412035762","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:33:34 +0000 2020","id":1235241987567243264,"id_str":"1235241987567243264","text":"#Coronavirus - again a focus of @POTUS and @VP here today: https:\/\/t.co\/P1LbqZK8iS","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[30,36]},{"screen_name":"VP","name":"Vice - President Mike Pence","id":818910970567344128,"id_str":"818910970567344128","indices":[41,44]}],"urls":[{"url":"https:\/\/t.co\/P1LbqZK8iS","expanded_url":"https:\/\/twitter.com\/davidshepardson\/status\/1235241633878290434","display_url":"twitter.com\/davidshepardso\u2026","indices":[57,80]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17919393,"id_str":"17919393","name":"Steve - Herman","screen_name":"W7VOA","location":"Washington, DC ","description":"@WhiteHouse - bureau chief @VOANews. Member: @aaja, @opcofamerica, @pressclubdc, @sajahq, - @whca. Past president: @fccjapan, @SeoulFCC. Ex @AP, @Discovery. \ud83d\udce1","url":"https:\/\/t.co\/Gxigiw7BPO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Gxigiw7BPO","expanded_url":"https:\/\/www.steveherman.press","display_url":"steveherman.press","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":94961,"friends_count":2000,"listed_count":4256,"created_at":"Sat - Dec 06 08:56:45 +0000 2008","favourites_count":7054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":119961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","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\/1193608032158175232\/P9ggH9b4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193608032158175232\/P9ggH9b4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17919393\/1540929053","profile_link_color":"002868","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"191622","profile_text_color":"993B00","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235241633878290434,"quoted_status_id_str":"1235241633878290434","quoted_status":{"created_at":"Wed - Mar 04 16:32:09 +0000 2020","id":1235241633878290434,"id_str":"1235241633878290434","text":"Trump - joins meetings with airline CEOs https:\/\/t.co\/mNCwEn6DMd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mNCwEn6DMd","expanded_url":"https:\/\/twitter.com\/HowardMortman\/status\/1235241543310639105","display_url":"twitter.com\/HowardMortman\/\u2026","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26283307,"id_str":"26283307","name":"David - Shepardson","screen_name":"davidshepardson","location":"Washington, DC","description":"@Reuters - reporter in DC covering aviation, autos + (anything that moves) @fcc tech - Pvs @DetroitNews Michigan native. Father of three, husband","url":"https:\/\/t.co\/SG0tCF9rQx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SG0tCF9rQx","expanded_url":"http:\/\/www.reuters.com\/journalists\/david-shepardson","display_url":"reuters.com\/journalists\/da\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18082,"friends_count":7174,"listed_count":842,"created_at":"Tue - Mar 24 17:47:50 +0000 2009","favourites_count":21056,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":103136,"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\/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\/202644841\/n650203102_2079561_8492-1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/202644841\/n650203102_2079561_8492-1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26283307\/1362714163","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1235241543310639105,"quoted_status_id_str":"1235241543310639105","retweet_count":6,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":24,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235241633878290434,"quoted_status_id_str":"1235241633878290434","retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681685463044,"id_str":"1235246681685463044","text":"RT - @AmitShah: Holi is a very important festival for we Indians but in the wake - of Coronavirus, i have decided not to participate in any Hol\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmitShah","name":"Amit - Shah","id":1447949844,"id_str":"1447949844","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":884067805,"id_str":"884067805","name":"Satish - Rautela","screen_name":"satishRautela2","location":"Delhi, India","description":"\u092e\u0947\u0930\u0947 - \u092d\u093e\u0930\u0924 \u0915\u094b \u092e\u0941\u092b\u094d\u0924\u0916\u094b\u0930\u0940 - \u0938\u0947 \u092c\u091a\u093e\u0913\u0964","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1660,"friends_count":1499,"listed_count":1,"created_at":"Tue - Oct 16 09:10:05 +0000 2012","favourites_count":119603,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":90195,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/420469599134416896\/gcDviGxL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/420469599134416896\/gcDviGxL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/884067805\/1559198233","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 07:32:27 +0000 2020","id":1235105813418479616,"id_str":"1235105813418479616","text":"Holi - is a very important festival for we Indians but in the wake of Coronavirus, - i have decided not to participate\u2026 https:\/\/t.co\/vtGFZzaCSR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vtGFZzaCSR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235105813418479616","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1447949844,"id_str":"1447949844","name":"Amit - Shah","screen_name":"AmitShah","location":"","description":"Union Home Minister, - Government of India | MP, Gandhinagar Lok Sabha.","url":"https:\/\/t.co\/T8qyKz0gq5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/T8qyKz0gq5","expanded_url":"http:\/\/www.amitshah.co.in","display_url":"amitshah.co.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17655694,"friends_count":295,"listed_count":3239,"created_at":"Wed - May 22 04:43:54 +0000 2013","favourites_count":123,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10637,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1180491411172413440\/AunoqDQW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180491411172413440\/AunoqDQW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447949844\/1483460817","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9146,"favorite_count":51746,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9146,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681656037376,"id_str":"1235246681656037376","text":"RT - @Yusuf_Ahmed92: Anti-Coronavirus protocol:\n\n- wash hands up to wrist\n- - take water in your hand and bring to nose, breathe water in (clea\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Yusuf_Ahmed92","name":"Yusuf - Ahmed","id":2504949828,"id_str":"2504949828","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":980455717256777729,"id_str":"980455717256777729","name":"Fa\u2615\ufe0fma","screen_name":"fatimabham16","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":109,"listed_count":0,"created_at":"Sun - Apr 01 14:43:53 +0000 2018","favourites_count":3420,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":553,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159869525501911042\/WcKFMmkI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159869525501911042\/WcKFMmkI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/980455717256777729\/1563287699","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:24:31 +0000 2020","id":1234983018684485632,"id_str":"1234983018684485632","text":"Anti-Coronavirus - protocol:\n\n- wash hands up to wrist\n- take water in your hand and bring - to nose, breathe water in\u2026 https:\/\/t.co\/y0yzeKNt2F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/y0yzeKNt2F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234983018684485632","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2504949828,"id_str":"2504949828","name":"Yusuf - Ahmed","screen_name":"Yusuf_Ahmed92","location":"Toronto, Canada","description":"Interested - in: Physical Training \ud83c\udfcb\ufe0f\u200d\u2640\ufe0f | History \ud83d\udcdc| - Storytelling \ud83d\udcdd","url":"https:\/\/t.co\/q1F7GOgDJj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/q1F7GOgDJj","expanded_url":"https:\/\/yusufahmedwriting.us14.list-manage.com\/subscribe?id=a34179a785&u=d8a5678fa43441e1b50626128","display_url":"yusufahmedwriting.us14.list-manage.com\/subscribe?id=a\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":75,"listed_count":12,"created_at":"Sun - May 18 16:49:59 +0000 2014","favourites_count":2356,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2042,"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\/1200499818122153984\/iQfVRBJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1200499818122153984\/iQfVRBJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2504949828\/1575056438","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21651,"favorite_count":50848,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":21651,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681584783361,"id_str":"1235246681584783361","text":"RT - @dearra: No joke, this Coronavirus is legit scary af. Lord protect everyone\ud83d\ude4f\ud83c\udffd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dearra","name":"De''arra - Taylor","id":237833328,"id_str":"237833328","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":934428369416048640,"id_str":"934428369416048640","name":"RawAsEva\ud83e\udd23","screen_name":"princessmyiiah","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":585,"listed_count":0,"created_at":"Sat - Nov 25 14:27:38 +0000 2017","favourites_count":3639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1580,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213647604145369088\/aFrIiklc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213647604145369088\/aFrIiklc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/934428369416048640\/1578191113","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 03:41:37 +0000 2020","id":1234685335478497281,"id_str":"1234685335478497281","text":"No - joke, this Coronavirus is legit scary af. Lord protect everyone\ud83d\ude4f\ud83c\udffd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237833328,"id_str":"237833328","name":"De''arra - Taylor","screen_name":"dearra","location":"Always Traveling \u2708\ufe0f ","description":"#DK4L - \u2764\ufe0f| Snapchat: dk_4l | 7+ MILLION subbies #DKGANG strong | Our YouTube - channel \u2935\ufe0f","url":"https:\/\/t.co\/GrDoWZmAcf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GrDoWZmAcf","expanded_url":"http:\/\/youtube.com\/dk4l","display_url":"youtube.com\/dk4l","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1148671,"friends_count":1,"listed_count":904,"created_at":"Thu - Jan 13 18:58:08 +0000 2011","favourites_count":35146,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":113261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1205229605839347712\/-ow69sm-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205229605839347712\/-ow69sm-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237833328\/1581127360","profile_link_color":"F5ABB5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9825,"favorite_count":28572,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9825,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681488269313,"id_str":"1235246681488269313","text":"RT - @KALEDIAN: Cosas que quedan claras a causa de la puta alarma del Coronavirus:\n\n1- - Tenemos un sistema p\u00fablico que funciona DE PUTA MADRE.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KALEDIAN","name":"Mr. - Icelander \ud83d\udc80\ud83d\udd3b","id":138705871,"id_str":"138705871","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":574660688,"id_str":"574660688","name":"rose - \ud83c\udf3b","screen_name":"RocioMatilla29","location":"Galicia, Espa\u00f1a","description":"Odiar - a los pijos no es una personalidad es una obligaci\u00f3n. Magisterio infantil - USC \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udde8\ud83c\uddfa","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":512,"friends_count":172,"listed_count":1,"created_at":"Tue - May 08 17:50:02 +0000 2012","favourites_count":25891,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33543,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1212808488717565961\/lpr0ICaW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212808488717565961\/lpr0ICaW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/574660688\/1527334100","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 12:30:13 +0000 2020","id":1234818359272800257,"id_str":"1234818359272800257","text":"Cosas - que quedan claras a causa de la puta alarma del Coronavirus:\n\n1- Tenemos - un sistema p\u00fablico que funciona DE P\u2026 https:\/\/t.co\/XDVfJn1wKR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XDVfJn1wKR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234818359272800257","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138705871,"id_str":"138705871","name":"Mr. - Icelander \ud83d\udc80\ud83d\udd3b","screen_name":"KALEDIAN","location":"HELL\u00b4S - KITCHEN","description":"Las mentes cerradas suelen tener la boca muy abierta.","url":"https:\/\/t.co\/m0B0AYpWhJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m0B0AYpWhJ","expanded_url":"https:\/\/www.behance.net\/kaledian","display_url":"behance.net\/kaledian","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4053,"friends_count":963,"listed_count":98,"created_at":"Fri - Apr 30 10:06:48 +0000 2010","favourites_count":51974,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":172679,"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\/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\/1123545904647147520\/oVTswf81_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123545904647147520\/oVTswf81_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138705871\/1478536317","profile_link_color":"ABB8C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11589,"favorite_count":36601,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":11589,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681303719937,"id_str":"1235246681303719937","text":"RT - @FutbolBible: Jurgen Klopp''s response when asked about Coronavirus is absolutely - class. This man speaks so much sense, absolutely spot o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FutbolBible","name":"FutbolBible","id":1123488680,"id_str":"1123488680","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2179903196,"id_str":"2179903196","name":"Lexzymase","screen_name":"lexzymase","location":"Lagos, - Nigeria","description":"lexzymase. Arsenal impeded into my veins, all for - the gunners. Sport lover. Aspiring sport journalist\/analyst. photographer.\n\/Human - kinetic n sport development","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1344,"friends_count":1983,"listed_count":16,"created_at":"Thu - Nov 07 11:25:29 +0000 2013","favourites_count":110720,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":58702,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211013176827006978\/VPjR3mKp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211013176827006978\/VPjR3mKp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2179903196\/1580512487","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 09:49:27 +0000 2020","id":1235140289825853440,"id_str":"1235140289825853440","text":"Jurgen - Klopp''s response when asked about Coronavirus is absolutely class. This man - speaks so much sense, absolutely\u2026 https:\/\/t.co\/s5ob7HdqwI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s5ob7HdqwI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235140289825853440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1123488680,"id_str":"1123488680","name":"FutbolBible","screen_name":"FutbolBible","location":"England, - United Kingdom","description":"\u26bd\ufe0f If you love football then simply - click that follow button. We post the best football tweets. For promotion - contact us via DM or FutbolBible@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":249934,"friends_count":14933,"listed_count":1053,"created_at":"Sat - Jan 26 23:50:04 +0000 2013","favourites_count":6854,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4504,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000305","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261582636645\/55e9a4980b50801ab91c8e13e5c77f40_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261582636645\/55e9a4980b50801ab91c8e13e5c77f40_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1123488680\/1555466861","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41766,"favorite_count":174270,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":41766,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681089855489,"id_str":"1235246681089855489","text":"RT - @YoFermina: BUENO. Mientras el coronavirus es portada de todos los diarios, - van 3 d\u00edas de marzo y ya son 5 las mujeres asesinadas por va\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YoFermina","name":"Paula - B. Gim\u00e9nez \ud83d\udc9a","id":50406560,"id_str":"50406560","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":704457175809310728,"id_str":"704457175809310728","name":"Federico - Musso","screen_name":"mussofj","location":"","description":"Estereotipo ambulante.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":244,"friends_count":871,"listed_count":2,"created_at":"Tue - Mar 01 00:04:13 +0000 2016","favourites_count":98150,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6402,"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\/955267225061117952\/wCu5B3Ag_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/955267225061117952\/wCu5B3Ag_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/704457175809310728\/1468814126","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:36:13 +0000 2020","id":1235242653748523014,"id_str":"1235242653748523014","text":"BUENO. - Mientras el coronavirus es portada de todos los diarios, van 3 d\u00edas de - marzo y ya son 5 las mujeres asesinad\u2026 https:\/\/t.co\/Np4z2eMvWd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Np4z2eMvWd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235242653748523014","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50406560,"id_str":"50406560","name":"Paula - B. Gim\u00e9nez \ud83d\udc9a","screen_name":"YoFermina","location":"","description":"G\u00e9nero - en @filonewsok. Escrib\u00ed un libro sobre nutrici\u00f3n y perspectiva de - g\u00e9nero y se vende ac\u00e1: https:\/\/t.co\/rYAquxHwdf","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/rYAquxHwdf","expanded_url":"http:\/\/abrecultura.com\/peseloquepese","display_url":"abrecultura.com\/peseloquepese","indices":[96,119]}]}},"protected":false,"followers_count":25379,"friends_count":1200,"listed_count":252,"created_at":"Wed - Jun 24 19:27:33 +0000 2009","favourites_count":83322,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83970,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3F1551","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\/1183762053565161473\/c40rKcud_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183762053565161473\/c40rKcud_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50406560\/1534244103","profile_link_color":"670E60","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FEE0B9","profile_text_color":"BF2071","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1539,"favorite_count":2816,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":1539,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681068883968,"id_str":"1235246681068883968","text":"Pennsylvania - begins coronavirus testing at state lab in Exton https:\/\/t.co\/LlYJsDMjvK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LlYJsDMjvK","expanded_url":"https:\/\/www.wgal.com\/article\/pennsylvania-begins-coronavirus-testing-at-state-owned-lab-in-exton\/31214431","display_url":"wgal.com\/article\/pennsy\u2026","indices":[62,85]}]},"metadata":{"iso_language_code":"ro","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2482094665,"id_str":"2482094665","name":"BarbaraBarrWGAL","screen_name":"BarbaraBarrWGAL","location":"Lancaster, - PA","description":"Reporter at WGAL News 8 in Pennsylvania''s Susquehanna - Valley. Links & RTs aren\u2019t endorsements. Opinions are my own.","url":"https:\/\/t.co\/WNPJZnFwpr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WNPJZnFwpr","expanded_url":"http:\/\/www.wgal.com","display_url":"wgal.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1711,"friends_count":245,"listed_count":47,"created_at":"Wed - May 07 13:08:17 +0000 2014","favourites_count":2086,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6883,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/751986959338213376\/mWr5smyv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/751986959338213376\/mWr5smyv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2482094665\/1399468325","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ro"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246681014206464,"id_str":"1235246681014206464","text":"Arabia - Saud\u00ed cancela peregrinaci\u00f3n a La Meca por coronavirus\n\nArabia - Saud\u00ed prohibi\u00f3 a sus ciudadanos y residentes r\u2026 https:\/\/t.co\/Jq5naphMQb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Jq5naphMQb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246681014206464","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1024017798799011840,"id_str":"1024017798799011840","name":"El - Escrutador","screen_name":"ElEscrutadorMx","location":"Cuauht\u00e9moc, Distrito - Federal","description":"El Escrutador es un proyecto para informar los hechos - m\u00e1s relevantes en M\u00e9xico. Buscamos ofrecer una alternativa seria - y objetiva para que est\u00e9s actualizado.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":234,"listed_count":0,"created_at":"Mon - Jul 30 19:44:03 +0000 2018","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":852,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1024022787193753601\/wSdED5iC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1024022787193753601\/wSdED5iC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1024017798799011840\/1550251082","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680989200384,"id_str":"1235246680989200384","text":"RT - @ali11iverson: La Tunisie qui met \"en quarantaine\" le contamin\u00e9 du - coronavirus \ud83d\ude2d : https:\/\/t.co\/G5pXghJJ01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ali11iverson","name":"AliChwerreb(\u0639\u0644\u064a - \u0634\u0648\u0631\u0628)\ud83c\uddf9\ud83c\uddf3\ud83c\udde8\ud83c\uddf5","id":918577011718873088,"id_str":"918577011718873088","indices":[3,16]}],"urls":[],"media":[{"id":1234993245651951616,"id_str":"1234993245651951616","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","url":"https:\/\/t.co\/G5pXghJJ01","display_url":"pic.twitter.com\/G5pXghJJ01","expanded_url":"https:\/\/twitter.com\/ali11iverson\/status\/1234993248638132226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":719,"h":540,"resize":"fit"},"large":{"w":719,"h":540,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}},"source_status_id":1234993248638132226,"source_status_id_str":"1234993248638132226","source_user_id":918577011718873088,"source_user_id_str":"918577011718873088"}]},"extended_entities":{"media":[{"id":1234993245651951616,"id_str":"1234993245651951616","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","url":"https:\/\/t.co\/G5pXghJJ01","display_url":"pic.twitter.com\/G5pXghJJ01","expanded_url":"https:\/\/twitter.com\/ali11iverson\/status\/1234993248638132226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":719,"h":540,"resize":"fit"},"large":{"w":719,"h":540,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}},"source_status_id":1234993248638132226,"source_status_id_str":"1234993248638132226","source_user_id":918577011718873088,"source_user_id_str":"918577011718873088"}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033989964810383360,"id_str":"1033989964810383360","name":"ivan_93","screen_name":"ivan93blk","location":"","description":"\ud83c\uddf7\ud83c\uddfa","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":191,"listed_count":0,"created_at":"Mon - Aug 27 08:09:52 +0000 2018","favourites_count":4521,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1699,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232266452520067072\/9SsU1DtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232266452520067072\/9SsU1DtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033989964810383360\/1573081114","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 00:05:10 +0000 2020","id":1234993248638132226,"id_str":"1234993248638132226","text":"La - Tunisie qui met \"en quarantaine\" le contamin\u00e9 du coronavirus \ud83d\ude2d - : https:\/\/t.co\/G5pXghJJ01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234993245651951616,"id_str":"1234993245651951616","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","url":"https:\/\/t.co\/G5pXghJJ01","display_url":"pic.twitter.com\/G5pXghJJ01","expanded_url":"https:\/\/twitter.com\/ali11iverson\/status\/1234993248638132226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":719,"h":540,"resize":"fit"},"large":{"w":719,"h":540,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234993245651951616,"id_str":"1234993245651951616","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESOT0EsXYAAFUwr.jpg","url":"https:\/\/t.co\/G5pXghJJ01","display_url":"pic.twitter.com\/G5pXghJJ01","expanded_url":"https:\/\/twitter.com\/ali11iverson\/status\/1234993248638132226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":719,"h":540,"resize":"fit"},"large":{"w":719,"h":540,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":918577011718873088,"id_str":"918577011718873088","name":"AliChwerreb(\u0639\u0644\u064a - \u0634\u0648\u0631\u0628)\ud83c\uddf9\ud83c\uddf3\ud83c\udde8\ud83c\uddf5","screen_name":"ali11iverson","location":"","description":"Be - careful what you wish for","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2065,"friends_count":2033,"listed_count":1,"created_at":"Thu - Oct 12 20:40:00 +0000 2017","favourites_count":9560,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7487,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1201443972050235392\/ar3cGFLS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1201443972050235392\/ar3cGFLS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/918577011718873088\/1576340342","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12555,"favorite_count":44868,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":12555,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680909332483,"id_str":"1235246680909332483","text":"RT - @Anu1021996: \u091a\u094c\u0915\u0940\u0926\u093e\u0930 \u0914\u0930 \ud83d\udc36 - \u092e\u0947 \u0915\u092d\u0940 \u092c\u0928 \u0928\u0939\u0940 \u0938\u0915\u0924\u0940,\u091a\u094c\u0915\u0940\u0926\u093e\u0930 - \u092c\u093f\u0928\u093e \u0921\u0902\u0921\u093e \u0926\u093f\u0916\u093e\u090f - \u0928\u0939\u0940 \u0930\u0939\u0947\u0917\u093e\ud83d\udc36\u092d\u094c\u0902\u0915\u0947 - \u092c\u093f\u0928\u093e \u0928\u0939\u0940 \u0930\u0939 \u0938\u0915\u0924\u0947\ud83d\ude09\n\n\u0905\u0917\u0930 - 2014 \u092e\u0947 #\u092e\u094b\u0926\u0940\u091c\u0940 \u0928\u0939\u0940 - \u0906\u0924\u0947 \u0924\u094b\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u092e\u094b\u0926\u0940\u091c\u0940","indices":[119,126]}],"symbols":[],"user_mentions":[{"screen_name":"Anu1021996","name":"Shu\u00dfhra_Sharma..","id":729271806943760384,"id_str":"729271806943760384","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1115662505953517568,"id_str":"1115662505953517568","name":"Jay - Randeria \ud83d\udea9","screen_name":"Jayranderia_4","location":"\u0917\u0941\u091c\u0930\u093e\u0924, - \u092d\u093e\u0930\u0924","description":"[Har Har Mahadev \ud83d\udd31][Army - lover \u2694 ]\n[Shraddha kapoor Fans \u2764] [Msd Fans\ud83d\ude0d][Music - lover \ud83c\udfb5]","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2147,"friends_count":926,"listed_count":0,"created_at":"Tue - Apr 09 17:07:24 +0000 2019","favourites_count":581,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54003,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234059271555493891\/I5PCg-pA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234059271555493891\/I5PCg-pA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1115662505953517568\/1582798052","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:18:16 +0000 2020","id":1235192839119622144,"id_str":"1235192839119622144","text":"\u091a\u094c\u0915\u0940\u0926\u093e\u0930 - \u0914\u0930 \ud83d\udc36 \u092e\u0947 \u0915\u092d\u0940 \u092c\u0928 \u0928\u0939\u0940 - \u0938\u0915\u0924\u0940,\u091a\u094c\u0915\u0940\u0926\u093e\u0930 \u092c\u093f\u0928\u093e - \u0921\u0902\u0921\u093e \u0926\u093f\u0916\u093e\u090f \u0928\u0939\u0940 - \u0930\u0939\u0947\u0917\u093e\ud83d\udc36\u092d\u094c\u0902\u0915\u0947 \u092c\u093f\u0928\u093e - \u0928\u0939\u0940 \u0930\u0939 \u0938\u0915\u0924\u0947\ud83d\ude09\n\n\u0905\u0917\u0930 - 2014 \u092e\u0947 #\u092e\u094b\u0926\u0940\u091c\u0940 \u0928\u0939\u0940\u2026 - https:\/\/t.co\/tpJF5w4B7f","truncated":true,"entities":{"hashtags":[{"text":"\u092e\u094b\u0926\u0940\u091c\u0940","indices":[103,110]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tpJF5w4B7f","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235192839119622144","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":729271806943760384,"id_str":"729271806943760384","name":"Shu\u00dfhra_Sharma..","screen_name":"Anu1021996","location":"Delhi, - India","description":"Proud Indian...\ud83c\uddee\ud83c\uddf3..Proud of my - Sanatan Sanskriti..\ud83d\udea9Proud of My PM Modi...\n#\u091c\u092f_\u0939\u093f\u0902\u0926\n RTs\u2716 - Endorsement\n.....My Tweets in\ud83d\udc96","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6576,"friends_count":157,"listed_count":35,"created_at":"Sun - May 08 11:28:42 +0000 2016","favourites_count":1329,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":63203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235243014735319042\/fj5sTCON_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235243014735319042\/fj5sTCON_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729271806943760384\/1583476069","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116,"favorite_count":88,"favorited":false,"retweeted":false,"lang":"hi"},"is_quote_status":false,"retweet_count":116,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680875905025,"id_str":"1235246680875905025","text":"RT - @AFP: #BREAKING Germany bans export of medical protection gear over #coronavirus - https:\/\/t.co\/Gf1YqEB7fn","truncated":false,"entities":{"hashtags":[{"text":"BREAKING","indices":[9,18]},{"text":"coronavirus","indices":[71,83]}],"symbols":[],"user_mentions":[{"screen_name":"AFP","name":"AFP - news agency","id":380648579,"id_str":"380648579","indices":[3,7]}],"urls":[],"media":[{"id":1235151778913583105,"id_str":"1235151778913583105","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQj_7HWAAE6DRv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQj_7HWAAE6DRv.png","url":"https:\/\/t.co\/Gf1YqEB7fn","display_url":"pic.twitter.com\/Gf1YqEB7fn","expanded_url":"https:\/\/twitter.com\/AFP\/status\/1235151840276123650\/photo\/1","type":"photo","sizes":{"small":{"w":506,"h":253,"resize":"fit"},"large":{"w":506,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":506,"h":253,"resize":"fit"}},"source_status_id":1235151840276123650,"source_status_id_str":"1235151840276123650","source_user_id":380648579,"source_user_id_str":"380648579"}]},"extended_entities":{"media":[{"id":1235151778913583105,"id_str":"1235151778913583105","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQj_7HWAAE6DRv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQj_7HWAAE6DRv.png","url":"https:\/\/t.co\/Gf1YqEB7fn","display_url":"pic.twitter.com\/Gf1YqEB7fn","expanded_url":"https:\/\/twitter.com\/AFP\/status\/1235151840276123650\/photo\/1","type":"photo","sizes":{"small":{"w":506,"h":253,"resize":"fit"},"large":{"w":506,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":506,"h":253,"resize":"fit"}},"source_status_id":1235151840276123650,"source_status_id_str":"1235151840276123650","source_user_id":380648579,"source_user_id_str":"380648579"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1952855342,"id_str":"1952855342","name":"WarMonitor","screen_name":"TheWarMonitor","location":"Earth","description":"Questioning - questionable political and geopolitical events from around the world. OSINT. - Moderate & unaffiliated politically. Please note that RT \u2260 endorsement.","url":"http:\/\/t.co\/HWGDHEf06w","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/HWGDHEf06w","expanded_url":"http:\/\/www.warmonitor.net","display_url":"warmonitor.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":39732,"friends_count":1241,"listed_count":606,"created_at":"Thu - Oct 10 23:30:33 +0000 2013","favourites_count":25995,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65084,"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\/1025987521367310336\/eM_La3wq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025987521367310336\/eM_La3wq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1952855342\/1561614881","profile_link_color":"6B8E23","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 10:35:21 +0000 2020","id":1235151840276123650,"id_str":"1235151840276123650","text":"#BREAKING - Germany bans export of medical protection gear over #coronavirus https:\/\/t.co\/Gf1YqEB7fn","truncated":false,"entities":{"hashtags":[{"text":"BREAKING","indices":[0,9]},{"text":"coronavirus","indices":[62,74]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235151778913583105,"id_str":"1235151778913583105","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQj_7HWAAE6DRv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQj_7HWAAE6DRv.png","url":"https:\/\/t.co\/Gf1YqEB7fn","display_url":"pic.twitter.com\/Gf1YqEB7fn","expanded_url":"https:\/\/twitter.com\/AFP\/status\/1235151840276123650\/photo\/1","type":"photo","sizes":{"small":{"w":506,"h":253,"resize":"fit"},"large":{"w":506,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":506,"h":253,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235151778913583105,"id_str":"1235151778913583105","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESQj_7HWAAE6DRv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESQj_7HWAAE6DRv.png","url":"https:\/\/t.co\/Gf1YqEB7fn","display_url":"pic.twitter.com\/Gf1YqEB7fn","expanded_url":"https:\/\/twitter.com\/AFP\/status\/1235151840276123650\/photo\/1","type":"photo","sizes":{"small":{"w":506,"h":253,"resize":"fit"},"large":{"w":506,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":506,"h":253,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":380648579,"id_str":"380648579","name":"AFP - news agency","screen_name":"AFP","location":"France","description":"Top news - and features from AFP''s reporters around the world. Elsewhere on Twitter: - https:\/\/t.co\/4pIm8k2HLC","url":"https:\/\/t.co\/kqhCI1T6KT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kqhCI1T6KT","expanded_url":"http:\/\/www.afp.com\/en","display_url":"afp.com\/en","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/4pIm8k2HLC","expanded_url":"http:\/\/u.afp.com\/AFPTwitter","display_url":"u.afp.com\/AFPTwitter","indices":[83,106]}]}},"protected":false,"followers_count":1783418,"friends_count":671,"listed_count":22250,"created_at":"Tue - Sep 27 00:35:10 +0000 2011","favourites_count":2459,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":226240,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","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\/697343883630481408\/c08JBfBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/697343883630481408\/c08JBfBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380648579\/1583459170","profile_link_color":"0084B4","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":586,"favorite_count":541,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":586,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680825569281,"id_str":"1235246680825569281","text":"Pattaya - City cancels or postpones nearly every City sponsored event through September - due to Covid-19 Coronavirus,\u2026 https:\/\/t.co\/Mn6XXmhTu7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Mn6XXmhTu7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246680825569281","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.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,"user":{"id":32587749,"id_str":"32587749","name":"Pattaya - One Media","screen_name":"PattayaOne","location":"Pattaya, Thailand","description":"The - leading source of local news, since 2002, updated every day direct from Pattaya - City, Thailand","url":"http:\/\/t.co\/EqghjDIvSd","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/EqghjDIvSd","expanded_url":"http:\/\/www.pattayaone.net","display_url":"pattayaone.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":5064,"friends_count":60,"listed_count":69,"created_at":"Fri - Apr 17 21:12:32 +0000 2009","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43635,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E62929","profile_background_image_url":"http:\/\/abs.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\/679922786614272000\/08l8nw2t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/679922786614272000\/08l8nw2t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32587749\/1490887038","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680779493377,"id_str":"1235246680779493377","text":"RT - @AlanBarrosoA: El an\u00e1lisis para ver si tienes el Coronavirus en EEUU - cuesta 3000 d\u00f3lares. En Espa\u00f1a es gratis. Bendita sanidad p\u00fablica.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlanBarrosoA","name":"Al\u00e1n - Barroso","id":1624130744,"id_str":"1624130744","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1078951083173691392,"id_str":"1078951083173691392","name":"\u00e1ngela\ud83e\udd18\ud83c\udffc","screen_name":"angelaavn","location":"","description":"i - am already sorry i was ever born","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":56,"listed_count":0,"created_at":"Sat - Dec 29 09:49:18 +0000 2018","favourites_count":2945,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3797,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223324176439808002\/TxsvVc0a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223324176439808002\/TxsvVc0a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1078951083173691392\/1580498185","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 11:21:48 +0000 2020","id":1234801142892199940,"id_str":"1234801142892199940","text":"El - an\u00e1lisis para ver si tienes el Coronavirus en EEUU cuesta 3000 d\u00f3lares. - En Espa\u00f1a es gratis. Bendita sanidad p\u00fab\u2026 https:\/\/t.co\/ZNgkEGqrCU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZNgkEGqrCU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234801142892199940","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1624130744,"id_str":"1624130744","name":"Al\u00e1n - Barroso","screen_name":"AlanBarrosoA","location":"Madrid - Teruel - Barcelona","description":"En - construcci\u00f3n. No es patria el suelo que se pisa, sino el suelo que se - labra. Polit\u00f3logo. Viva Espa\u00f1a Progresista.","url":"https:\/\/t.co\/p1M1CMPgEN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1M1CMPgEN","expanded_url":"https:\/\/www.instagram.com\/alanbaaa","display_url":"instagram.com\/alanbaaa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7250,"friends_count":414,"listed_count":19,"created_at":"Fri - Jul 26 23:48:34 +0000 2013","favourites_count":24901,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233411296869175296\/tA7FcyPj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233411296869175296\/tA7FcyPj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1624130744\/1576455694","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19572,"favorite_count":73633,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":19572,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680758530048,"id_str":"1235246680758530048","text":"RT - @irmoralesl: El areopuerto internacional de la Ciudad de M\u00e9xico sigue - sin ning\u00fan protocolo por el Coronavirus. En verdad tenemos un gobi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"irmoralesl","name":"Ignacio - R. Morales Lechuga","id":844581135371964418,"id_str":"844581135371964418","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":322629769,"id_str":"322629769","name":"\ud83c\udd7c\ud83c\udd30\ud83c\udd81\ud83c\udd38\ud83c\udd75\ud83c\udd34\ud83c\udd81","screen_name":"MafeeLinares","location":"","description":"\ud835\udd93\ud835\udd8a\ud835\udd9b\ud835\udd8a\ud835\udd97\ud835\udd92\ud835\udd8e\ud835\udd93\ud835\udd89","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":968,"friends_count":711,"listed_count":2,"created_at":"Thu - Jun 23 13:58:19 +0000 2011","favourites_count":6056,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":44755,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1226343262639841281\/nugfGeai_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226343262639841281\/nugfGeai_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322629769\/1577162566","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:40:24 +0000 2020","id":1234503832769454080,"id_str":"1234503832769454080","text":"El - areopuerto internacional de la Ciudad de M\u00e9xico sigue sin ning\u00fan - protocolo por el Coronavirus. En verdad tenemos un gobierno ausente.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":844581135371964418,"id_str":"844581135371964418","name":"Ignacio - R. Morales Lechuga","screen_name":"irmoralesl","location":"Ciudad de M\u00e9xico","description":"Notario - 116 de la CDMX, Ex Procurador General de la Rep\u00fablica y de la CDMX, Embajador - de M\u00e9xico en Francia, Abogado, Ex- Rector y Profesor de la ELD","url":"https:\/\/t.co\/OyUj37KtIT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OyUj37KtIT","expanded_url":"http:\/\/notaria116df.mx\/","display_url":"notaria116df.mx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16538,"friends_count":205,"listed_count":55,"created_at":"Wed - Mar 22 16:06:49 +0000 2017","favourites_count":924,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5004,"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\/1086347767948005376\/S0bTHOwa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086347767948005376\/S0bTHOwa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/844581135371964418\/1490199661","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2604,"favorite_count":7305,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":2604,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680691400704,"id_str":"1235246680691400704","text":"New - York coronavirus patient''s wife, children and neighbor test positive for - virus https:\/\/t.co\/5lRS9nWlfw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235246586625744897,"id_str":"1235246586625744897","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6OdXXYAEjRMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6OdXXYAEjRMf.jpg","url":"https:\/\/t.co\/5lRS9nWlfw","display_url":"pic.twitter.com\/5lRS9nWlfw","expanded_url":"https:\/\/twitter.com\/GoodVsEvil17\/status\/1235246680691400704\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":403,"resize":"fit"},"large":{"w":1246,"h":739,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":712,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235246586625744897,"id_str":"1235246586625744897","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/ESR6OdXXYAEjRMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESR6OdXXYAEjRMf.jpg","url":"https:\/\/t.co\/5lRS9nWlfw","display_url":"pic.twitter.com\/5lRS9nWlfw","expanded_url":"https:\/\/twitter.com\/GoodVsEvil17\/status\/1235246680691400704\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":403,"resize":"fit"},"large":{"w":1246,"h":739,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":712,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1235195214572195841,"in_reply_to_status_id_str":"1235195214572195841","in_reply_to_user_id":1202891758042058752,"in_reply_to_user_id_str":"1202891758042058752","in_reply_to_screen_name":"GoodVsEvil17","user":{"id":1202891758042058752,"id_str":"1202891758042058752","name":"Good - Vs Evil","screen_name":"GoodVsEvil17","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":575,"friends_count":1064,"listed_count":1,"created_at":"Fri - Dec 06 10:05:44 +0000 2019","favourites_count":9233,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7480,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1202892302563319808\/PdK2srt6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202892302563319808\/PdK2srt6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1202891758042058752\/1583466832","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680657756160,"id_str":"1235246680657756160","text":"RT - @KALEDIAN: Cosas que quedan claras a causa de la puta alarma del Coronavirus:\n\n1- - Tenemos un sistema p\u00fablico que funciona DE PUTA MADRE.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KALEDIAN","name":"Mr. - Icelander \ud83d\udc80\ud83d\udd3b","id":138705871,"id_str":"138705871","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":376227295,"id_str":"376227295","name":"Germ\u00e1n - Blanco G\u00f3mez","screen_name":"GermanBlanco85","location":"Caldes D''Estrac","description":"Estad\u00edstico - de Barcelona, interesado en deportes, literatura y pasarlo bien.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":503,"listed_count":0,"created_at":"Mon - Sep 19 14:40:53 +0000 2011","favourites_count":4019,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3220,"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\/806938691029663744\/YX-lVdsK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/806938691029663744\/YX-lVdsK_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 12:30:13 +0000 2020","id":1234818359272800257,"id_str":"1234818359272800257","text":"Cosas - que quedan claras a causa de la puta alarma del Coronavirus:\n\n1- Tenemos - un sistema p\u00fablico que funciona DE P\u2026 https:\/\/t.co\/XDVfJn1wKR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XDVfJn1wKR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234818359272800257","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138705871,"id_str":"138705871","name":"Mr. - Icelander \ud83d\udc80\ud83d\udd3b","screen_name":"KALEDIAN","location":"HELL\u00b4S - KITCHEN","description":"Las mentes cerradas suelen tener la boca muy abierta.","url":"https:\/\/t.co\/m0B0AYpWhJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m0B0AYpWhJ","expanded_url":"https:\/\/www.behance.net\/kaledian","display_url":"behance.net\/kaledian","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4053,"friends_count":963,"listed_count":98,"created_at":"Fri - Apr 30 10:06:48 +0000 2010","favourites_count":51974,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":172679,"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\/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\/1123545904647147520\/oVTswf81_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123545904647147520\/oVTswf81_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138705871\/1478536317","profile_link_color":"ABB8C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11589,"favorite_count":36601,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":11589,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680632684549,"id_str":"1235246680632684549","text":"RT - @ShakespeareinDC: Public health tip: If you aren''t sure how long to wash - your hands, just remember Lady Macbeth''s speech! #ShakespeareSa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShakespeareinDC","name":"Shakespeare - Theatre Company","id":9021022,"id_str":"9021022","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76711960,"id_str":"76711960","name":"La - gata bajo la lluvia","screen_name":"lalariquecanta","location":"CDMX","description":"Sirena - de cl\u00f3set.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":994,"friends_count":847,"listed_count":12,"created_at":"Wed - Sep 23 18:11:13 +0000 2009","favourites_count":8354,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44657,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF4FB9","profile_background_image_url":"http:\/\/abs.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\/1232757084711682050\/V2ALcG0s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232757084711682050\/V2ALcG0s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76711960\/1577964168","profile_link_color":"080404","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D64285","profile_text_color":"E66CBF","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 22:15:52 +0000 2020","id":1234965741817991168,"id_str":"1234965741817991168","text":"Public - health tip: If you aren''t sure how long to wash your hands, just remember - Lady Macbeth''s speech!\u2026 https:\/\/t.co\/Hy05QKKe3k","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Hy05QKKe3k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234965741817991168","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[105,128]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9021022,"id_str":"9021022","name":"Shakespeare - Theatre Company","screen_name":"ShakespeareinDC","location":"Washington, D.C.","description":"Official - Twitter for the Shakespeare Theatre Company in Washington, D.C., the nation\u2019s - foremost classical theatre company. Welcome!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15588,"friends_count":517,"listed_count":537,"created_at":"Fri - Sep 21 20:04:05 +0000 2007","favourites_count":7342,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13844,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFE4B5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1145804788061364225\/NYPPiyCj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145804788061364225\/NYPPiyCj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9021022\/1582309333","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"454445","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1246,"favorite_count":1937,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1246,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680552943616,"id_str":"1235246680552943616","text":"people - keep asking why Tulsi is still running like it''s not obvious... she''s playing - the long game and hoping the o\u2026 https:\/\/t.co\/qLoxkneQ3d","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qLoxkneQ3d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246680552943616","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":359368472,"id_str":"359368472","name":"James - Mac Gabhann","screen_name":"JamesFGordy","location":"","description":"i know - the human being and fish can coexist peacefully (he\/him)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":232,"listed_count":0,"created_at":"Sun - Aug 21 13:28:01 +0000 2011","favourites_count":2741,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1465,"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\/825153514276012033\/LWAR3P38_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825153514276012033\/LWAR3P38_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/359368472\/1488910121","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680468905984,"id_str":"1235246680468905984","text":"RT - @senatemajldr: This moment calls for collaboration and unity to combat the - coronavirus. Bicameral, bipartisan talks have made great head\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"senatemajldr","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83175752,"id_str":"83175752","name":"CADY","screen_name":"CADYHUGHES","location":"","description":"Love - God, USA, University of Louisville Cardinals","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1688,"friends_count":3157,"listed_count":34,"created_at":"Sat - Oct 17 17:13:02 +0000 2009","favourites_count":43926,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":67259,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1062324261686296577\/HRSQBviB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062324261686296577\/HRSQBviB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83175752\/1521886162","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:00:49 +0000 2020","id":1235233746607013888,"id_str":"1235233746607013888","text":"This - moment calls for collaboration and unity to combat the coronavirus. Bicameral, - bipartisan talks have made grea\u2026 https:\/\/t.co\/OX6CC7E9oL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OX6CC7E9oL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235233746607013888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1249982359,"id_str":"1249982359","name":"Leader - McConnell","screen_name":"senatemajldr","location":"Washington, DC","description":"U.S. - Senate Majority Leader Mitch McConnell","url":"https:\/\/t.co\/J5RQpHiTgo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J5RQpHiTgo","expanded_url":"http:\/\/republicanleader.senate.gov","display_url":"republicanleader.senate.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1386046,"friends_count":104,"listed_count":5322,"created_at":"Thu - Mar 07 20:21:15 +0000 2013","favourites_count":109,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":3982,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0066CC","profile_background_image_url":"http:\/\/abs.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\/732596482336002049\/JYMrr9_4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/732596482336002049\/JYMrr9_4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1249982359\/1563547854","profile_link_color":"AD0000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1564,"favorite_count":6625,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1564,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680376823810,"id_str":"1235246680376823810","text":"RT - @RMedzhitov: ''The failures to contain the outbreak and to understand the - scale and scope of its threat stem from an underinvestment in a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RMedzhitov","name":"Ruslan - Medzhitov","id":1035903572846804992,"id_str":"1035903572846804992","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1030755015844081664,"id_str":"1030755015844081664","name":"Florian - Sparber","screen_name":"Florian32264554","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":75,"listed_count":0,"created_at":"Sat - Aug 18 09:55:21 +0000 2018","favourites_count":44,"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\/1030756366615556096\/572YSOpv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1030756366615556096\/572YSOpv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:57:02 +0000 2020","id":1235187494766993408,"id_str":"1235187494766993408","text":"''The - failures to contain the outbreak and to understand the scale and scope of - its threat stem from an underinvestm\u2026 https:\/\/t.co\/7jzuekD0yf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7jzuekD0yf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235187494766993408","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1035903572846804992,"id_str":"1035903572846804992","name":"Ruslan - Medzhitov","screen_name":"RMedzhitov","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3736,"friends_count":95,"listed_count":17,"created_at":"Sat - Sep 01 14:53:52 +0000 2018","favourites_count":536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":177,"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\/1035912028672602112\/6f-jDE38_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1035912028672602112\/6f-jDE38_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":222,"favorite_count":550,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":222,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680334688256,"id_str":"1235246680334688256","text":"\"Hay - 96 millones de mexicanas y mexicanos con exceso de peso, \u00a1Y nos asusta - el coronavirus pero no nos asustan las\u2026 https:\/\/t.co\/ydFM53aAPs","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ydFM53aAPs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246680334688256","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1235246116813172737,"in_reply_to_status_id_str":"1235246116813172737","in_reply_to_user_id":774105176,"in_reply_to_user_id_str":"774105176","in_reply_to_screen_name":"Contrapesomx","user":{"id":774105176,"id_str":"774105176","name":"ContraPESO","screen_name":"Contrapesomx","location":"Ciudad - de M\u00e9xico","description":"Coalici\u00f3n ContraPESO: Plataforma Estrat\u00e9gica - contra el #Sobrepeso y la #Obesidad Integrada por Organizaciones de la Sociedad - Civil que trabajan con #ENTs","url":"https:\/\/t.co\/OepVDmuSaG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OepVDmuSaG","expanded_url":"http:\/\/coalicioncontrapeso.org\/","display_url":"coalicioncontrapeso.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8796,"friends_count":2357,"listed_count":98,"created_at":"Wed - Aug 22 17:14:53 +0000 2012","favourites_count":6441,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17697,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"480652","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\/2535711557\/i13s0tmk9pfedjzlmjg0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2535711557\/i13s0tmk9pfedjzlmjg0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/774105176\/1569887431","profile_link_color":"FF0000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680313909254,"id_str":"1235246680313909254","text":"RT - @Pklesse: Ministerio de salud anuncia la creaci\u00f3n de un nuevo hospital - en 9 d\u00edas para combatir el coronavirus!!... Lo har\u00e1n al lado del\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pklesse","name":"\u2764\ufe0fpaola - klesse Renuncia Pi\u00f1era !","id":1495640604,"id_str":"1495640604","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148515107,"id_str":"148515107","name":"ale - pi\u00f1ats phillippi","screen_name":"alegua187","location":"San Fernando","description":"San - Fernandino,Liceano, Albo,Apoyando una nueva constituci\u00f3n, #fueraPi\u00f1era","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":518,"friends_count":1671,"listed_count":0,"created_at":"Wed - May 26 22:26:35 +0000 2010","favourites_count":1009,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":831,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194421861024772097\/pG4Fr_l4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194421861024772097\/pG4Fr_l4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:30:49 +0000 2020","id":1235241295104192514,"id_str":"1235241295104192514","text":"Ministerio - de salud anuncia la creaci\u00f3n de un nuevo hospital en 9 d\u00edas para - combatir el coronavirus!!... Lo har\u00e1n a\u2026 https:\/\/t.co\/whpDrUoyAB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/whpDrUoyAB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235241295104192514","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1495640604,"id_str":"1495640604","name":"\u2764\ufe0fpaola - klesse Renuncia Pi\u00f1era !","screen_name":"Pklesse","location":"Osorno, - Los Lagos","description":"Mujer, feminista,agn\u00f3stica, socialista, casada - y un hermoso hijo. Donante, Dirigente Social, colaboradora Centro Cultural - AFO , No fumo, bailo cueca !","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3293,"friends_count":3550,"listed_count":16,"created_at":"Sun - Jun 09 13:54:08 +0000 2013","favourites_count":100942,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":81720,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232010000752615427\/mm3gGQ8p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232010000752615427\/mm3gGQ8p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1495640604\/1489968832","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":101,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680280268813,"id_str":"1235246680280268813","text":"RT - @RTultimahora: \u00daLTIMA HORA\n\nEl condado de Los \u00c1ngeles declara - una emergencia local tras registrar 6 nuevos casos de coronavirus https:\/\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RTultimahora","name":"RT - \u00daltima Hora","id":961925545809281024,"id_str":"961925545809281024","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2402409264,"id_str":"2402409264","name":"esther - escobar","screen_name":"estherescobar15","location":"Caracas","description":"Convencida - de que el socialismo es la clave para el buen vivir. Fiel y Leal a la revoluci\u00f3n. - Ch\u00e1vez Vive!!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5991,"friends_count":6432,"listed_count":8,"created_at":"Sat - Mar 22 01:23:51 +0000 2014","favourites_count":21337,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":91122,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473612540736315392\/cOBb-Ydi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473612540736315392\/cOBb-Ydi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2402409264\/1401752971","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:49:03 +0000 2020","id":1235245884260089867,"id_str":"1235245884260089867","text":"\u00daLTIMA - HORA\n\nEl condado de Los \u00c1ngeles declara una emergencia local tras registrar - 6 nuevos casos de coronavirus\u2026 https:\/\/t.co\/oLAz6G8s1k","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oLAz6G8s1k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235245884260089867","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":961925545809281024,"id_str":"961925545809281024","name":"RT - \u00daltima Hora","screen_name":"RTultimahora","location":"Mosc\u00fa, Rusia","description":"\ud83d\udd34Las - \u00faltimas noticias del acontecer internacional. \n\ud83d\udd34La informaci\u00f3n - m\u00e1s relevante al minuto. \n\ud83d\udce3Una cuenta m\u00e1s del equipo - de redes sociales de @ActualidadRT \ud83d\ude4c","url":"https:\/\/t.co\/lo2KB3neoz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lo2KB3neoz","expanded_url":"https:\/\/actualidad.rt.com\/","display_url":"actualidad.rt.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":123892,"friends_count":1,"listed_count":596,"created_at":"Fri - Feb 09 11:31:36 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14739,"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\/1220722924308639752\/wRoIz1Nr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220722924308639752\/wRoIz1Nr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961925545809281024\/1579878001","profile_link_color":"B80F0A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":208,"favorite_count":254,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":208,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:13 +0000 2020","id":1235246680267616258,"id_str":"1235246680267616258","text":"RT - @RWalensky: Stigma is not the response to someone who chooses to self-isolate - for COVID-19. The correct response is Thank You for doing\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RWalensky","name":"Rochelle - Walensky, MD, MPH","id":1048687402137600002,"id_str":"1048687402137600002","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":377358084,"id_str":"377358084","name":"Jacqueline - Chu","screen_name":"jacquelinetchu","location":"","description":"ID\/PCP @mgh_id - and MGH Chelsea, HIV\/Ryan White program provider, passionate about reducing - barriers to care and challenging my own biases.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":149,"listed_count":1,"created_at":"Wed - Sep 21 13:07:45 +0000 2011","favourites_count":103,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":141,"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\/1702694015\/Slide1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1702694015\/Slide1_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 14:11:22 +0000 2020","id":1235206201882759168,"id_str":"1235206201882759168","text":"Stigma - is not the response to someone who chooses to self-isolate for COVID-19. The - correct response is Thank You f\u2026 https:\/\/t.co\/bVZHEgKjHr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bVZHEgKjHr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235206201882759168","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1048687402137600002,"id_str":"1048687402137600002","name":"Rochelle - Walensky, MD, MPH","screen_name":"RWalensky","location":"Massachusetts, USA","description":"Chief - of Infectious Diseases, MGH, Decision science researcher, Mother of boys","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1322,"friends_count":242,"listed_count":7,"created_at":"Sat - Oct 06 21:32:15 +0000 2018","favourites_count":1237,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":548,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229556535535206402\/dqH7QjiG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229556535535206402\/dqH7QjiG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":false,"retweet_count":16,"favorite_count":42,"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"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246680079052800,"id_str":"1235246680079052800","text":"RT - @FareedZakaria: That didn\u2019t take long: Pres. Trump casts coronavirus - as evidence in favor of closed-border immigration policies \nhttps:\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FareedZakaria","name":"Fareed - Zakaria","id":41814169,"id_str":"41814169","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1192791110902566913,"id_str":"1192791110902566913","name":"Margaret - purcell","screen_name":"Margare78933761","location":"","description":"Mag - is a hag","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":551,"listed_count":0,"created_at":"Fri - Nov 08 13:09:17 +0000 2019","favourites_count":8741,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17820,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192791490285776898\/h2LRMm5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192791490285776898\/h2LRMm5F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:44:43 +0000 2020","id":1235244794596732928,"id_str":"1235244794596732928","text":"That - didn\u2019t take long: Pres. Trump casts coronavirus as evidence in favor - of closed-border immigration policies \nhttps:\/\/t.co\/YDLzI8LnYh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YDLzI8LnYh","expanded_url":"https:\/\/www.politico.com\/news\/magazine\/2020\/03\/03\/trump-rally-coronavirus-119480","display_url":"politico.com\/news\/magazine\/\u2026","indices":[113,136]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41814169,"id_str":"41814169","name":"Fareed - Zakaria","screen_name":"FareedZakaria","location":"New York, NY","description":"WaPo - columnist. Host of CNN''s GPS: Sunday @ 10am and 1pm ET in the U.S. Subscribe - to my newsletter at https:\/\/t.co\/0GzwMEiOPt. Retweets are not endorsements.","url":"http:\/\/t.co\/Mg215EOokH","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Mg215EOokH","expanded_url":"http:\/\/www.cnn.com\/shows\/fareed-zakaria-gps","display_url":"cnn.com\/shows\/fareed-z\u2026","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/0GzwMEiOPt","expanded_url":"http:\/\/cnn.it\/globalbriefing","display_url":"cnn.it\/globalbriefing","indices":[102,125]}]}},"protected":false,"followers_count":949205,"friends_count":427,"listed_count":11486,"created_at":"Fri - May 22 13:46:35 +0000 2009","favourites_count":1258,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":8601,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94E096","profile_background_image_url":"http:\/\/abs.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\/1113110574039252992\/vc0VBYEg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1113110574039252992\/vc0VBYEg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41814169\/1554158598","profile_link_color":"0084B4","profile_sidebar_border_color":"94E096","profile_sidebar_fill_color":"F7FCF7","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":189,"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"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679735046145,"id_str":"1235246679735046145","text":"Le - #coronavirus? Je m''en lave les mains...","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[3,15]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":820054962,"id_str":"820054962","name":"jose - shungu","screen_name":"joseshungu","location":"","description":"","url":"https:\/\/t.co\/Igx7t1yRDV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Igx7t1yRDV","expanded_url":"http:\/\/laderniereblog.blogspot.fr","display_url":"laderniereblog.blogspot.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":89,"listed_count":5,"created_at":"Wed - Sep 12 18:02:20 +0000 2012","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3619,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/777157746017927168\/Sgun5a8a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/777157746017927168\/Sgun5a8a_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679709716480,"id_str":"1235246679709716480","text":"It - begins..\n https:\/\/t.co\/dcrOoiyl9R","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dcrOoiyl9R","expanded_url":"https:\/\/www.foxnews.com\/health\/new-york-coronavirus-patients-wife-children-neighbor-test-positive","display_url":"foxnews.com\/health\/new-yor\u2026","indices":[13,36]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535554692,"id_str":"535554692","name":"Thomas","screen_name":"Thomas_195813","location":"The - Palm of God''s Right Hand","description":"Multiculturalism is code for \nLet - me use your good manners against you to get access to your home to destroy - you.\n#ProIsrael\n#ProLife\n#Conservative","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5139,"friends_count":5644,"listed_count":162,"created_at":"Sat - Mar 24 17:43:17 +0000 2012","favourites_count":60833,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":395508,"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\/831922048091955200\/npkMDdss_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/831922048091955200\/npkMDdss_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535554692\/1577766053","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":"regular"},"geo":null,"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"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679697354752,"id_str":"1235246679697354752","text":"RT - @LeoinAbuja: Lassa Fever is deadlier than Coronavirus. If you like argue with - your keypads...\n\nThere are FACTS.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeoinAbuja","name":"Mayor - of Gwarinpa \ud83c\udf04","id":1022419075862024192,"id_str":"1022419075862024192","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2628341589,"id_str":"2628341589","name":"Chima - Chigozie","screen_name":"CallMeGozie","location":"Eastern, \ud83c\uddf3\ud83c\uddec.","description":"Manchester - United\u00d7Forever \nI Invest In People, Great Ideas And I Also Advise.\n\n\nChemical - Engineer|| Philanthropist|| Football.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9901,"friends_count":7018,"listed_count":10,"created_at":"Sat - Jun 21 11:59:05 +0000 2014","favourites_count":35512,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":65209,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233615636103864320\/7GqX9wso_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233615636103864320\/7GqX9wso_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2628341589\/1556328243","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 15:29:55 +0000 2020","id":1235225972519194626,"id_str":"1235225972519194626","text":"Lassa - Fever is deadlier than Coronavirus. If you like argue with your keypads...\n\nThere - are FACTS. https:\/\/t.co\/aLPeZqfjbo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aLPeZqfjbo","expanded_url":"https:\/\/twitter.com\/NOIPolls\/status\/1235163563083390976","display_url":"twitter.com\/NOIPolls\/statu\u2026","indices":[99,122]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022419075862024192,"id_str":"1022419075862024192","name":"Mayor - of Gwarinpa \ud83c\udf04","screen_name":"LeoinAbuja","location":"Abuja, Nigeria","description":"New - Media strategist | Strategic Communications Officer | Accounting Graduate - | Graphic Designer at @ravenousca_\n#AbujaTwitterCommunity\n@LFC \ud83d\udd34 - for Life","url":"https:\/\/t.co\/23OdzUeU0d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/23OdzUeU0d","expanded_url":"https:\/\/www.behance.net\/louisehimi7678","display_url":"behance.net\/louisehimi7678","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16525,"friends_count":10024,"listed_count":23,"created_at":"Thu - Jul 26 09:51:18 +0000 2018","favourites_count":29090,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":58709,"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\/1235081442331328512\/Wew4iRyM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235081442331328512\/Wew4iRyM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022419075862024192\/1580056353","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"},"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":true,"quoted_status_id":1235163563083390976,"quoted_status_id_str":"1235163563083390976","quoted_status":{"created_at":"Wed - Mar 04 11:21:56 +0000 2020","id":1235163563083390976,"id_str":"1235163563083390976","text":"In - 2018, Nigerians indicated an 80% awareness rate on the outbreak of Lassa Fever, - however, in 2020, there is a dec\u2026 https:\/\/t.co\/0UzJ434cIl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0UzJ434cIl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235163563083390976","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":628408717,"id_str":"628408717","name":"NOIPolls","screen_name":"NOIPolls","location":"Abuja - Nigeria","description":"No.1 for country-specific #polling #services in #Nigeria - and #West #Africa","url":"http:\/\/t.co\/0V4SjUmfqR","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/0V4SjUmfqR","expanded_url":"http:\/\/www.noi-polls.com","display_url":"noi-polls.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":12395,"friends_count":1374,"listed_count":121,"created_at":"Fri - Jul 06 14:00:32 +0000 2012","favourites_count":2198,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":53189,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F3B20E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1113753669374304263\/QD1xVWuW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1113753669374304263\/QD1xVWuW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/628408717\/1554374530","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":16,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":9,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1235163563083390976,"quoted_status_id_str":"1235163563083390976","retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679554699264,"id_str":"1235246679554699264","text":"RT - @cwarzel: Best Treatment for the Coronavirus? Paid Sick Leave. https:\/\/t.co\/lxRACcSmRQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cwarzel","name":"Charlie - Warzel","id":20178419,"id_str":"20178419","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/lxRACcSmRQ","expanded_url":"https:\/\/www.nytimes.com\/2020\/03\/03\/opinion\/trump-coronavirus-sick-leave.html","display_url":"nytimes.com\/2020\/03\/03\/opi\u2026","indices":[66,89]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128144328,"id_str":"128144328","name":"Jennifer - Baty","screen_name":"JenBaty","location":"Chicago, IL","description":"[BAY-tee] - \u2022 Former Wealth Management Pro and Campaign Consultant \u2022 Manage - @AdvisorChat \u2022 #NeverTrump #nytxw","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1712,"friends_count":1440,"listed_count":98,"created_at":"Wed - Mar 31 06:40:32 +0000 2010","favourites_count":44975,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25024,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CCCCCC","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\/1217279226455511041\/IHhmwiK__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217279226455511041\/IHhmwiK__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128144328\/1579056959","profile_link_color":"0323CB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E8EAED","profile_text_color":"0F0E0F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:44:13 +0000 2020","id":1235244668708782080,"id_str":"1235244668708782080","text":"Best - Treatment for the Coronavirus? Paid Sick Leave. https:\/\/t.co\/lxRACcSmRQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lxRACcSmRQ","expanded_url":"https:\/\/www.nytimes.com\/2020\/03\/03\/opinion\/trump-coronavirus-sick-leave.html","display_url":"nytimes.com\/2020\/03\/03\/opi\u2026","indices":[53,76]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20178419,"id_str":"20178419","name":"Charlie - Warzel","screen_name":"cwarzel","location":"","description":"writer-at-large - for The New York Times Opinion page. I cover the information wars. charlie.warzel@nytimes.com - DMs open.","url":"https:\/\/t.co\/sVtsQWuJrd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sVtsQWuJrd","expanded_url":"https:\/\/www.nytimes.com\/newsletters\/privacy-project","display_url":"nytimes.com\/newsletters\/pr\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":135872,"friends_count":1577,"listed_count":1911,"created_at":"Thu - Feb 05 19:36:10 +0000 2009","favourites_count":14641,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19679,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531522450190651393\/HuRaqDlp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531522450190651393\/HuRaqDlp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20178419\/1567456016","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":136,"favorite_count":365,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":136,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679483453441,"id_str":"1235246679483453441","text":"RT - @OmarKhayyamCha1: Why is W.H.O spending 600 million US Dollars to find coronavirus\u2019s - cure ?\n\nMy family Whatsapp group already has like 1\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OmarKhayyamCha1","name":"Omar - Khayyam Chaudhary","id":1083724681096675328,"id_str":"1083724681096675328","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3295662522,"id_str":"3295662522","name":"AaGaZ","screen_name":"aagazkhan_","location":"","description":"Student - - JAMIA MILLIA ISLAMIA UNIVERSITY\u2665\ufe0f\n.\nLove - Basketball \ud83c\udfc0","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":165,"listed_count":0,"created_at":"Sun - Jul 26 17:25:48 +0000 2015","favourites_count":1699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234366933161697281\/He6oB1qW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234366933161697281\/He6oB1qW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3295662522\/1578480836","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:30:03 +0000 2020","id":1235241102858305537,"id_str":"1235241102858305537","text":"Why - is W.H.O spending 600 million US Dollars to find coronavirus\u2019s cure ?\n\nMy - family Whatsapp group already has lik\u2026 https:\/\/t.co\/bhH3LEJ9Qx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bhH3LEJ9Qx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235241102858305537","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1083724681096675328,"id_str":"1083724681096675328","name":"Omar - Khayyam Chaudhary","screen_name":"OmarKhayyamCha1","location":"","description":"Jamia - Millia Islamia | Student Activist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":121,"listed_count":0,"created_at":"Fri - Jan 11 13:57:53 +0000 2019","favourites_count":620,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":257,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1083725382250041344\/3yq2nZdo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083725382250041344\/3yq2nZdo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679416283142,"id_str":"1235246679416283142","text":"RT - @ROSNALJU: Coronavirus or not \n\nYou shouldn\u2019t have to be told to wash - your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ROSNALJU","name":"RO$NA","id":224805342,"id_str":"224805342","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2429950051,"id_str":"2429950051","name":"andria - \u2661","screen_name":"andriapataky","location":"","description":"u can probably - find me with mary howell or blake werner","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":265,"friends_count":314,"listed_count":2,"created_at":"Sun - Apr 06 05:29:10 +0000 2014","favourites_count":11009,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2942,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230330959041572864\/L9M71Nd4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230330959041572864\/L9M71Nd4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2429950051\/1580661859","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 19:48:03 +0000 2020","id":1234566154523275265,"id_str":"1234566154523275265","text":"Coronavirus - or not \n\nYou shouldn\u2019t have to be told to wash your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224805342,"id_str":"224805342","name":"RO$NA","screen_name":"ROSNALJU","location":"SLC","description":"IG - @ROSNALJU","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2460,"friends_count":585,"listed_count":12,"created_at":"Thu - Dec 09 22:32:46 +0000 2010","favourites_count":17407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"40030B","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\/1227249944861401088\/100hmgPB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227249944861401088\/100hmgPB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224805342\/1510187001","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"959FA6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86347,"favorite_count":208738,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":86347,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679386808323,"id_str":"1235246679386808323","text":"RT - @ClayTravis: Soccer coach is asked about coronavirus, gives fantastic response. - https:\/\/t.co\/nIgS8OmZcm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ClayTravis","name":"Clay - Travis","id":50772918,"id_str":"50772918","indices":[3,14]}],"urls":[],"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/nIgS8OmZcm","display_url":"pic.twitter.com\/nIgS8OmZcm","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"photo","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456"}]},"extended_entities":{"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/nIgS8OmZcm","display_url":"pic.twitter.com\/nIgS8OmZcm","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"video","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456","video_info":{"aspect_ratio":[1,1],"duration_millis":46880,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/pl\/uLotCLQdV_n4LAgh.m3u8?tag=10"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/320x320\/_yWeEcgBUyFvmz40.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/480x480\/3i5K4kvhdMP6yAxW.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175279347,"id_str":"175279347","name":"Christian - Amador","screen_name":"_Christian_Dean","location":"","description":"","url":"http:\/\/www.facebook.com\/#!\/profile.php?id=100000628675178","entities":{"url":{"urls":[{"url":"http:\/\/www.facebook.com\/#!\/profile.php?id=100000628675178","expanded_url":null,"indices":[0,57]}]},"description":{"urls":[]}},"protected":false,"followers_count":322,"friends_count":547,"listed_count":8,"created_at":"Fri - Aug 06 04:42:58 +0000 2010","favourites_count":18015,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3753,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/573354542831570944\/_CQfY6OG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/573354542831570944\/_CQfY6OG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175279347\/1401230757","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 13:16:54 +0000 2020","id":1235192497162399744,"id_str":"1235192497162399744","text":"Soccer - coach is asked about coronavirus, gives fantastic response. https:\/\/t.co\/nIgS8OmZcm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/nIgS8OmZcm","display_url":"pic.twitter.com\/nIgS8OmZcm","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"photo","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456"}]},"extended_entities":{"media":[{"id":1234986114403971072,"id_str":"1234986114403971072","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234986114403971072\/pu\/img\/ldqNoOSH0URNOGBy.jpg","url":"https:\/\/t.co\/nIgS8OmZcm","display_url":"pic.twitter.com\/nIgS8OmZcm","expanded_url":"https:\/\/twitter.com\/molerogascon\/status\/1234986149283631105\/video\/1","type":"video","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1234986149283631105,"source_status_id_str":"1234986149283631105","source_user_id":213982456,"source_user_id_str":"213982456","video_info":{"aspect_ratio":[1,1],"duration_millis":46880,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/pl\/uLotCLQdV_n4LAgh.m3u8?tag=10"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/320x320\/_yWeEcgBUyFvmz40.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234986114403971072\/pu\/vid\/480x480\/3i5K4kvhdMP6yAxW.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":213982456,"id_str":"213982456","name":"Pep - Molero","screen_name":"molerogascon","location":"Barcelona","description":"Periodista - licenciado. Hijo de andaluz y aragonesa. No reniego de mis or\u00edgenes, - pero odio las olivas. Edito programas y hablo en @movistarfutbol y @laligatvbar","url":"https:\/\/t.co\/VUWO4mEbNP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VUWO4mEbNP","expanded_url":"https:\/\/es.linkedin.com\/in\/josepmolero","display_url":"es.linkedin.com\/in\/josepmolero","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1085,"friends_count":684,"listed_count":13,"created_at":"Wed - Nov 10 07:58:45 +0000 2010","favourites_count":3951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4573,"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\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223939249092866049\/xBvJHP9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213982456\/1474566017","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50772918,"id_str":"50772918","name":"Clay - Travis","screen_name":"ClayTravis","location":"Nashville","description":"https:\/\/t.co\/Ut3ejMNAQd, - @outkick @foxsportsradio 6-9 am et & @lockitinonfs1 TV show 4:30 et, author, - Republicans Buy Sneakers Too, dad of three boys, lawyer","url":"https:\/\/t.co\/c46ZljJT0b","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c46ZljJT0b","expanded_url":"http:\/\/www.outkick.com","display_url":"outkick.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Ut3ejMNAQd","expanded_url":"http:\/\/Outkick.com","display_url":"Outkick.com","indices":[0,23]}]}},"protected":false,"followers_count":652914,"friends_count":353,"listed_count":3729,"created_at":"Thu - Jun 25 21:16:40 +0000 2009","favourites_count":8303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":102451,"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\/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\/668983225860034564\/PIdSf23G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668983225860034564\/PIdSf23G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50772918\/1448333179","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32760,"favorite_count":130270,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32760,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679307190275,"id_str":"1235246679307190275","text":"RT - @ROSNALJU: Coronavirus or not \n\nYou shouldn\u2019t have to be told to wash - your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ROSNALJU","name":"RO$NA","id":224805342,"id_str":"224805342","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239781455,"id_str":"3239781455","name":"Natasha","screen_name":"natashakell","location":"in - bed","description":"\u201cdo you think I\u2019m playin\u2019 games?\u201d - \/\/ M\ud83d\udc93","url":"https:\/\/t.co\/3Z27tHwgfo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3Z27tHwgfo","expanded_url":"https:\/\/m.youtube.com\/watch?v=zxke4iYuR28","display_url":"m.youtube.com\/watch?v=zxke4i\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":404,"friends_count":267,"listed_count":3,"created_at":"Thu - May 07 01:26:23 +0000 2015","favourites_count":32807,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12731,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226647755960942594\/mHu7RI4__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226647755960942594\/mHu7RI4__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239781455\/1583004757","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 19:48:03 +0000 2020","id":1234566154523275265,"id_str":"1234566154523275265","text":"Coronavirus - or not \n\nYou shouldn\u2019t have to be told to wash your fckin hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224805342,"id_str":"224805342","name":"RO$NA","screen_name":"ROSNALJU","location":"SLC","description":"IG - @ROSNALJU","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2460,"friends_count":585,"listed_count":12,"created_at":"Thu - Dec 09 22:32:46 +0000 2010","favourites_count":17407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"40030B","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\/1227249944861401088\/100hmgPB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227249944861401088\/100hmgPB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224805342\/1510187001","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"959FA6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86347,"favorite_count":208738,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":86347,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679294701568,"id_str":"1235246679294701568","text":"RT - @janogarcia_: - Anunciamos una muerte causada por coronavirus \u00a1de hace - 3 semanas!\n\n- Suspendemos la asistencia a un partido, pero no a ''\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"janogarcia_","name":"Jano - Garc\u00eda","id":3359284941,"id_str":"3359284941","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":461454363,"id_str":"461454363","name":"Javier - Vaquero","screen_name":"JavierVaquero13","location":"","description":"\u27b0 - S\u00e9 humilde, puesto que hasta el sol con su enorme grandeza se pone y - deja que la luna brille\u27b0","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":327,"friends_count":314,"listed_count":1,"created_at":"Wed - Jan 11 20:36:18 +0000 2012","favourites_count":1958,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4349,"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\/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\/638347920140574720\/hz64MG7v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638347920140574720\/hz64MG7v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/461454363\/1421601974","profile_link_color":"AF69F0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 23:22:23 +0000 2020","id":1234982483323604992,"id_str":"1234982483323604992","text":"- - Anunciamos una muerte causada por coronavirus \u00a1de hace 3 semanas!\n\n- - Suspendemos la asistencia a un partido, pero\u2026 https:\/\/t.co\/CDijHiUxXl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CDijHiUxXl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234982483323604992","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3359284941,"id_str":"3359284941","name":"Jano - Garc\u00eda","screen_name":"janogarcia_","location":"","description":"Actualmente - escribo en @esferalibros. Director del programa En Libertad. Mis libros publicados - est\u00e1n disponibles en Amazon \ud83d\udcda","url":"https:\/\/t.co\/cyPnanHpZX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cyPnanHpZX","expanded_url":"https:\/\/www.amazon.es\/Jano-Garc%C3%ADa\/e\/B0755PWSXK\/","display_url":"amazon.es\/Jano-Garc%C3%A\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37643,"friends_count":1058,"listed_count":116,"created_at":"Sat - Jul 04 21:03:35 +0000 2015","favourites_count":802,"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":"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\/1090758955431804928\/Ig-jr3XF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1090758955431804928\/Ig-jr3XF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3359284941\/1537854797","profile_link_color":"A19C07","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1114,"favorite_count":2778,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1114,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679290515457,"id_str":"1235246679290515457","text":"RT - @sciencevs: Freaking out is not an effective anti- viral. Listen to Science - Vs to find out what is #coronavirus https:\/\/t.co\/CS4t0LiN2i","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[102,114]}],"symbols":[],"user_mentions":[{"screen_name":"sciencevs","name":"Science - Vs","id":4562173852,"id_str":"4562173852","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/CS4t0LiN2i","expanded_url":"https:\/\/open.spotify.com\/episode\/1oOmPmtzHT72PwGmQql1ef?si=lYGcbg5sRZy98QvO3zkXew","display_url":"open.spotify.com\/episode\/1oOmPm\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27996299,"id_str":"27996299","name":"Everton - Lopes Batista","screen_name":"everlopes","location":"S\u00e3o Paulo, Brasil","description":"Interesses - m\u00faltiplos no espa\u00e7o-tempo limitado. Paranaense. Corinthiano. Rep\u00f3rter - na Folha de S.Paulo: https:\/\/t.co\/cigefVswvL","url":"https:\/\/t.co\/7n9zqKXslY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7n9zqKXslY","expanded_url":"https:\/\/www.instagram.com\/everlopes42\/","display_url":"instagram.com\/everlopes42\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/cigefVswvL","expanded_url":"https:\/\/bit.ly\/33G4u4H","display_url":"bit.ly\/33G4u4H","indices":[102,125]}]}},"protected":false,"followers_count":810,"friends_count":964,"listed_count":8,"created_at":"Tue - Mar 31 23:39:58 +0000 2009","favourites_count":20967,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":21304,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069583606807449602\/AyDu2bFW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069583606807449602\/AyDu2bFW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27996299\/1405382244","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:49:57 +0000 2020","id":1235246113164341255,"id_str":"1235246113164341255","text":"Freaking - out is not an effective anti- viral. Listen to Science Vs to find out what - is #coronavirus https:\/\/t.co\/CS4t0LiN2i","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[87,99]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CS4t0LiN2i","expanded_url":"https:\/\/open.spotify.com\/episode\/1oOmPmtzHT72PwGmQql1ef?si=lYGcbg5sRZy98QvO3zkXew","display_url":"open.spotify.com\/episode\/1oOmPm\u2026","indices":[100,123]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4562173852,"id_str":"4562173852","name":"Science - Vs","screen_name":"sciencevs","location":"Brooklyn, NY","description":"A podcast - that pits facts against everything else. Hosted by @wendyzuk w @rosenrimler - @merylEhorn @experimentpod & @krupplexi. Edited @Blytheterrell & @CateK","url":"https:\/\/t.co\/rrczsZCoPU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rrczsZCoPU","expanded_url":"https:\/\/gimletmedia.com\/shows\/science-vs","display_url":"gimletmedia.com\/shows\/science-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18299,"friends_count":945,"listed_count":303,"created_at":"Tue - Dec 22 00:06:58 +0000 2015","favourites_count":4796,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":3130,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1103748688118276097\/lfsIs7c9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1103748688118276097\/lfsIs7c9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4562173852\/1551988547","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":23,"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"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679273676803,"id_str":"1235246679273676803","text":"RT - @GPonlinenews: Practice with 20,000 patients in two-week shutdown as UK coronavirus - cases spike\nhttps:\/\/t.co\/urVHGjA98v #GPnews #coronav\u2026","truncated":false,"entities":{"hashtags":[{"text":"GPnews","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"GPonlinenews","name":"GPonline.com","id":19180007,"id_str":"19180007","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/urVHGjA98v","expanded_url":"https:\/\/www.gponline.com\/practice-20000-patients-two-week-shutdown-uk-coronavirus-cases-spike\/article\/1675968","display_url":"gponline.com\/practice-20000\u2026","indices":[99,122]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":524822187,"id_str":"524822187","name":"Louise - Kennedy \ud83d\udd36","screen_name":"LouIseAKennedy","location":"Bristol, - England","description":"\ud83c\udf0e \ud83c\udf31\ud83d\udc1d\ud83c\udf3f - #COVID19, #NHS Former NHS doctor #StandTogetherAgainstCoronaVirus #HumanRights - #LibDems","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1072,"friends_count":2157,"listed_count":8,"created_at":"Wed - Mar 14 23:12:35 +0000 2012","favourites_count":18574,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11383,"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\/1032205491760521216\/UeyQHKNF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032205491760521216\/UeyQHKNF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/524822187\/1546078020","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 16:49:34 +0000 2020","id":1235246016431034368,"id_str":"1235246016431034368","text":"Practice - with 20,000 patients in two-week shutdown as UK coronavirus cases spike\nhttps:\/\/t.co\/urVHGjA98v - #GPnews #coronavirus","truncated":false,"entities":{"hashtags":[{"text":"GPnews","indices":[105,112]},{"text":"coronavirus","indices":[113,125]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/urVHGjA98v","expanded_url":"https:\/\/www.gponline.com\/practice-20000-patients-two-week-shutdown-uk-coronavirus-cases-spike\/article\/1675968","display_url":"gponline.com\/practice-20000\u2026","indices":[81,104]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":19180007,"id_str":"19180007","name":"GPonline.com","screen_name":"GPonlinenews","location":"London, - UK","description":"https:\/\/t.co\/meLID204Qx provides daily news, CPD & careers - advice for UK GPs. Also at @MedeconomicsUK @mimsonline @InCommissioning @mimslearning. - Follow #gpnews","url":"http:\/\/t.co\/xJsot9qMOI","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/xJsot9qMOI","expanded_url":"http:\/\/www.gponline.com","display_url":"gponline.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/meLID204Qx","expanded_url":"http:\/\/GPonline.com","display_url":"GPonline.com","indices":[0,23]}]}},"protected":false,"followers_count":21425,"friends_count":1706,"listed_count":393,"created_at":"Mon - Jan 19 11:14:58 +0000 2009","favourites_count":94,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18685,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CD0722","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/482550134639579136\/6WCsUF_L_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/482550134639579136\/6WCsUF_L_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19180007\/1480939912","profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D2D6D6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"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"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679260946433,"id_str":"1235246679260946433","text":"the - day after super tuesday, all of a sudden (it\u2019s not \u201call of THE sudden,\u2019 - btw) LA County declares a local emergen\u2026 https:\/\/t.co\/HstuU70y9a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HstuU70y9a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246679260946433","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1113517130207490048,"id_str":"1113517130207490048","name":"NiDieuxNiMaitres","screen_name":"julesbell27","location":"Los - Angeles","description":"new acct bc trump\/\/atheist. liberal dem. anti animal - cruelty. anti everything repub. fascism isnt a joke; its happening. pls dont - spread bs, google. think, ffs.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":473,"friends_count":612,"listed_count":0,"created_at":"Wed - Apr 03 19:02:26 +0000 2019","favourites_count":18093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18227,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222936092254408704\/W06ReVAZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222936092254408704\/W06ReVAZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113517130207490048\/1583010046","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679181451264,"id_str":"1235246679181451264","text":"RT - @AnfieldWatch: \ud83e\udda0 Jurgen Klopp when asked for his opinion on Coronavirus: - \n\n\u201cI don''t understand why with a very serious thing a football\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnfieldWatch","name":"Anfield - Watch","id":2525206496,"id_str":"2525206496","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":705544204,"id_str":"705544204","name":"Aldis - P.","screen_name":"aldispaegle","location":"","description":"Tikai un vien\u012bgi - person\u012bgais viedoklis. RT ir tikai RT.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":161,"listed_count":3,"created_at":"Tue - Oct 08 21:25:51 +0000 2013","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3631,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179823974861156355\/leEfWYXv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179823974861156355\/leEfWYXv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 10:44:03 +0000 2020","id":1235154031498100736,"id_str":"1235154031498100736","text":"\ud83e\udda0 - Jurgen Klopp when asked for his opinion on Coronavirus: \n\n\u201cI don''t - understand why with a very serious thing a foo\u2026 https:\/\/t.co\/kcwZDBA8T1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kcwZDBA8T1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235154031498100736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2525206496,"id_str":"2525206496","name":"Anfield - Watch","screen_name":"AnfieldWatch","location":"United Kingdom","description":"Independent - Liverpool FC Website \u2022 All the latest @LFC news \u2022 Contact \ud83d\udc49 - https:\/\/t.co\/9ZWu28JqWr","url":"https:\/\/t.co\/saq6GmD8AQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/saq6GmD8AQ","expanded_url":"http:\/\/anfieldwatch.co.uk","display_url":"anfieldwatch.co.uk","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9ZWu28JqWr","expanded_url":"http:\/\/anfieldwatch.co.uk\/contact-us","display_url":"anfieldwatch.co.uk\/contact-us","indices":[72,95]}]}},"protected":false,"followers_count":393220,"friends_count":971,"listed_count":1823,"created_at":"Mon - May 26 14:57:04 +0000 2014","favourites_count":20023,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":34428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228345102566875141\/kD4DAszX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228345102566875141\/kD4DAszX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2525206496\/1579988999","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":624,"favorite_count":3420,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":624,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679114252288,"id_str":"1235246679114252288","text":"RT - @Mr_Bugman: Si me llega a agarrar el coronavirus, nada de barbijo. \u00c9ste - va a ser mi look. https:\/\/t.co\/Xfof4Kr8NE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mr_Bugman","name":"Bugman","id":258968955,"id_str":"258968955","indices":[3,13]}],"urls":[],"media":[{"id":1235184170638479366,"id_str":"1235184170638479366","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRBdXsXkAYzpOT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRBdXsXkAYzpOT.jpg","url":"https:\/\/t.co\/Xfof4Kr8NE","display_url":"pic.twitter.com\/Xfof4Kr8NE","expanded_url":"https:\/\/twitter.com\/Mr_Bugman\/status\/1235184177601024000\/photo\/1","type":"photo","sizes":{"large":{"w":1439,"h":905,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":755,"resize":"fit"},"small":{"w":680,"h":428,"resize":"fit"}},"source_status_id":1235184177601024000,"source_status_id_str":"1235184177601024000","source_user_id":258968955,"source_user_id_str":"258968955"}]},"extended_entities":{"media":[{"id":1235184170638479366,"id_str":"1235184170638479366","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRBdXsXkAYzpOT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRBdXsXkAYzpOT.jpg","url":"https:\/\/t.co\/Xfof4Kr8NE","display_url":"pic.twitter.com\/Xfof4Kr8NE","expanded_url":"https:\/\/twitter.com\/Mr_Bugman\/status\/1235184177601024000\/photo\/1","type":"photo","sizes":{"large":{"w":1439,"h":905,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":755,"resize":"fit"},"small":{"w":680,"h":428,"resize":"fit"}},"source_status_id":1235184177601024000,"source_status_id_str":"1235184177601024000","source_user_id":258968955,"source_user_id_str":"258968955"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2266576337,"id_str":"2266576337","name":"Lia.\ud83d\udc9a","screen_name":"noeliappz","location":"Argentina","description":"Derecho, - UBA.","url":"https:\/\/t.co\/oLLsifusDc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oLLsifusDc","expanded_url":"https:\/\/www.instagram.com\/mnoelia.pz","display_url":"instagram.com\/mnoelia.pz","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1181,"friends_count":572,"listed_count":13,"created_at":"Tue - Jan 07 08:47:34 +0000 2014","favourites_count":136506,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41484,"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\/1223381645564301312\/TjFGVWZT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223381645564301312\/TjFGVWZT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2266576337\/1570728474","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 12:43:51 +0000 2020","id":1235184177601024000,"id_str":"1235184177601024000","text":"Si - me llega a agarrar el coronavirus, nada de barbijo. \u00c9ste va a ser mi - look. https:\/\/t.co\/Xfof4Kr8NE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235184170638479366,"id_str":"1235184170638479366","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRBdXsXkAYzpOT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRBdXsXkAYzpOT.jpg","url":"https:\/\/t.co\/Xfof4Kr8NE","display_url":"pic.twitter.com\/Xfof4Kr8NE","expanded_url":"https:\/\/twitter.com\/Mr_Bugman\/status\/1235184177601024000\/photo\/1","type":"photo","sizes":{"large":{"w":1439,"h":905,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":755,"resize":"fit"},"small":{"w":680,"h":428,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235184170638479366,"id_str":"1235184170638479366","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/ESRBdXsXkAYzpOT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESRBdXsXkAYzpOT.jpg","url":"https:\/\/t.co\/Xfof4Kr8NE","display_url":"pic.twitter.com\/Xfof4Kr8NE","expanded_url":"https:\/\/twitter.com\/Mr_Bugman\/status\/1235184177601024000\/photo\/1","type":"photo","sizes":{"large":{"w":1439,"h":905,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":755,"resize":"fit"},"small":{"w":680,"h":428,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":258968955,"id_str":"258968955","name":"Bugman","screen_name":"Mr_Bugman","location":"","description":"Euf\u00f3rico - transgresor blanco. Ignoto. Nac\u00ed a muy temprana edad. Ahora aqu\u00ed - me ven. Lo que sucedi\u00f3 entretanto no viene al caso.","url":"https:\/\/t.co\/eC7kJMG5FG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eC7kJMG5FG","expanded_url":"http:\/\/buguert.blogspot.com","display_url":"buguert.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":71125,"friends_count":2447,"listed_count":383,"created_at":"Mon - Feb 28 22:06:41 +0000 2011","favourites_count":75210,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":245508,"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\/1207663343617662977\/ASbf3N9j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207663343617662977\/ASbf3N9j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/258968955\/1398451237","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":474,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":32,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679030411265,"id_str":"1235246679030411265","text":"RT - @Visitante78: Si cada 23 hs se muriera un argentin@ por coronavirus estariamos - todos en p\u00e1nico. Pero como son femicidios nadie se escand\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Visitante78","name":"#Volvimos\u270c\ud83c\udffe","id":1652676409,"id_str":"1652676409","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1009447029167312896,"id_str":"1009447029167312896","name":"dana\ud83d\udda4","screen_name":"Dana06641434","location":"Sastre, - Santa Fe","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":906,"friends_count":482,"listed_count":0,"created_at":"Wed - Jun 20 14:45:01 +0000 2018","favourites_count":11692,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5415,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232400982430175248\/18l0waaM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232400982430175248\/18l0waaM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1009447029167312896\/1573518224","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 20:29:55 +0000 2020","id":1234576692682903559,"id_str":"1234576692682903559","text":"Si - cada 23 hs se muriera un argentin@ por coronavirus estariamos todos en p\u00e1nico. - Pero como son femicidios nadie se\u2026 https:\/\/t.co\/u4MkfxleLx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u4MkfxleLx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234576692682903559","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1652676409,"id_str":"1652676409","name":"#Volvimos\u270c\ud83c\udffe","screen_name":"Visitante78","location":"Patagonia, - Argentina ","description":"En barrio de ricachones, sin armas ni rencores, - es solo plata y no amores. \/\/Sub\u00ed, despu\u00e9s te explico.\\\\ La - patria es el otro\/\/","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7039,"friends_count":6871,"listed_count":8,"created_at":"Wed - Aug 07 10:49:55 +0000 2013","favourites_count":100651,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65053,"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\/1211059959280078849\/zniLRpBe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211059959280078849\/zniLRpBe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652676409\/1581028846","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18370,"favorite_count":29260,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":18370,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246679022022657,"id_str":"1235246679022022657","text":"RT - @MilagrosDwarf: Tengo m\u00e1s posibilidades de morirme por ser mujer que - por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MilagrosDwarf","name":"Milagros.","id":976869942,"id_str":"976869942","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1181772297612472320,"id_str":"1181772297612472320","name":"Sabrina - Carnebia","screen_name":"CarnebiaSabrina","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":154,"friends_count":931,"listed_count":0,"created_at":"Wed - Oct 09 03:24:17 +0000 2019","favourites_count":8136,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":743,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198838921184120832\/8SX4WfT6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198838921184120832\/8SX4WfT6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 18:16:11 +0000 2020","id":1234905423574118401,"id_str":"1234905423574118401","text":"Tengo - m\u00e1s posibilidades de morirme por ser mujer que por el coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":976869942,"id_str":"976869942","name":"Milagros.","screen_name":"MilagrosDwarf","location":"Por - el oeste de baires.","description":"Para verme feliz buscame en alg\u00fan - recital. Trabajo Social (UNLaM).","url":"https:\/\/t.co\/XccD9S7kPe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XccD9S7kPe","expanded_url":"http:\/\/instagram.com\/Milagrosdwarf","display_url":"instagram.com\/Milagrosdwarf","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11021,"friends_count":3230,"listed_count":199,"created_at":"Wed - Nov 28 20:13:25 +0000 2012","favourites_count":18088,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"070A09","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\/882409103896846337\/W3k0lJR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882409103896846337\/W3k0lJR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/976869942\/1471396693","profile_link_color":"F5ABB5","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54481,"favorite_count":116911,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":54481,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246678975930370,"id_str":"1235246678975930370","text":"HIV - drug successfully treats coronavirus patient in Spain\n\nhttps:\/\/t.co\/Wmd56sZlZz\n\nSent - via @updayUK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"updayUK","name":"upday - for Samsung UK","id":3458918848,"id_str":"3458918848","indices":[93,101]}],"urls":[{"url":"https:\/\/t.co\/Wmd56sZlZz","expanded_url":"https:\/\/f7td5.app.goo.gl\/SkTmjv","display_url":"f7td5.app.goo.gl\/SkTmjv","indices":[59,82]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":608245511,"id_str":"608245511","name":"we - won! we just keep winning! we are the majority!","screen_name":"mermaids76","location":"","description":"Female - (real). Aging fairly disgracefully. BREXITEER. Can''t wait til EU CRUMBLE! - \ud83d\ude0d p.s. still teaching my new phone to spell....\ud83d\ude44","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3101,"friends_count":3953,"listed_count":6,"created_at":"Thu - Jun 14 15:42:42 +0000 2012","favourites_count":53706,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51513,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207669263189921794\/UFn77LpR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207669263189921794\/UFn77LpR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/608245511\/1581971621","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 16:52:12 +0000 2020","id":1235246678950600705,"id_str":"1235246678950600705","text":"RT - @JackedYuhTweets: CORONAVIRUS WARNING: Not to scare anyone but the virus will - soon spread easily in the US. The first means of contamina\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JackedYuhTweets","name":"The - Don","id":1233567627567603713,"id_str":"1233567627567603713","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374874758,"id_str":"374874758","name":"B","screen_name":"xvbrenda","location":"Los - Angeles, CA","description":"","url":"https:\/\/t.co\/vWQj0FiTGE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vWQj0FiTGE","expanded_url":"http:\/\/instagram.com\/xvbrenda","display_url":"instagram.com\/xvbrenda","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2864,"friends_count":910,"listed_count":8,"created_at":"Sat - Sep 17 03:31:45 +0000 2011","favourites_count":30140,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":79612,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"030303","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\/1219043212586651648\/awJcmoSY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219043212586651648\/awJcmoSY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374874758\/1581316755","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 02:34:04 +0000 2020","id":1235030721242099712,"id_str":"1235030721242099712","text":"CORONAVIRUS - WARNING: Not to scare anyone but the virus will soon spread easily in the - US. The first means of contam\u2026 https:\/\/t.co\/fsLNLRRPCA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fsLNLRRPCA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235030721242099712","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1233567627567603713,"id_str":"1233567627567603713","name":"The - Don","screen_name":"JackedYuhTweets","location":"","description":"my avi isn\u2019t - a llama","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":8,"listed_count":0,"created_at":"Sat - Feb 29 01:40:37 +0000 2020","favourites_count":0,"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\/1233568885787561985\/DaO6G0zX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233568885787561985\/DaO6G0zX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":363,"favorite_count":1062,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":363,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.146,"max_id":1235246686437543940,"max_id_str":"1235246686437543940","next_results":"?max_id=1235246678950600704&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1235246686437543940&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=moja%20Warszawa&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234782732829560833/_11kO6DY_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '255088' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:35 GMT - Last-Modified: - - Tue, 03 Mar 2020 10:06:39 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1234782732829560833 - X-Cache: - - MISS - X-Connection-Hash: - - 32d2c6a34413cdbd72364e65238d72e5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:36 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=moja%20Warszawa&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:36 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:36 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1000320536768073728/Cl0lZKb5_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '11636' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:36 GMT - Last-Modified: - - Sat, 26 May 2018 10:17:35 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1000320536768073728 - X-Cache: - - MISS - X-Connection-Hash: - - c4ab02cff3b120de58285c1bb0fbbc04 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:36 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Haiti/Arkansas/Oklahoma&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:36 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:36 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/616718436719136769/S1HvkoLF_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:36 GMT - Last-Modified: - - Thu, 02 Jul 2015 21:19:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/616718436719136769 - X-Cache: - - MISS - X-Connection-Hash: - - 87b04faad43eefd0caeb5028e5e239e5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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H9EatWPfmjC+Wa0NcMdFb1x1S2XQ5kOp1uAnCth6xgcgB30FmBKSfRbfWT+NBEdxYU+kGTEcbV1nbjLM25SpaubzqnD/ABEmlRLRcJ3QLjw3XkSHSy1oGdSwMke7vppUCWR6NO/+In8aK+DXk2orRMfaS2/ryhToAbUAME4PJQyPYKjYsoW1Un8GHEis21zU0vgxflvCMIPoWHGgWjq2IIq98jb71UK23iyGq5sRlOoWqaoNNltWQCBsD7MAUWavGq0YkcxRlmXH8Ntt3OLbQ4QVIBI7e2h3jRlCOEbickApRnPIYWOQojyaoOMwtfCVwSlKirQkgDc/KFadOazIfuP3EgPE4ekTGunjxB0eVAKNvK0qHYoYHI1WvR48WWpqS/HacS3lIVD0DJ5pIIznuPKoki+8SSnS69cbkpWeYcWAPUBsKktX3iF8JjzZD8hjtExjpwP5gT7q9ACy82cev85xtpnlG3MtKDdwiLCE/owYnWPLmcb7E+7xr0iHbXEtOSJLjba8Bt9EfShfavbHfsPwroDYVrESKF5/cHCPcTj/AEp25yrleY7EebPecYj56JAglCUbYwAAKgzoCKeu/Txyg2ntK9cSyoeY0XBa2lHDvUIKRjny7/h40kxLOFKT5zcOE5CugOCf/fGmH7VIQU9C1IdBG5LCk4Pt5015rn/ub/8AIavGow183yI209obcDcO2+bLVdC+84YEkiPjqhWwOojn7K0vI8aAOAGZsS0S0lkoUXwcLGCRpHKivymX/ZCvNaxg2dipsXEIoyxKx3iolxBeguobGtRAwBv20zI+en6o+FLh81+r76yOodSp+sitRBgrPbNujqcllxllxeNwCCrHqOOVVar9bWhpM9Rzg7gn/rRJxl+p0fbp+BrL5nM/Zp+NcZtBjV9tnx7ToDUMU3QrVxHajnNwUfUg7/7aT+cVoAOZ7h/gP9NBFe7aPAYu58e0XinhyOIbStSUic5nO3UP9NLVerYrA8sdOpQQCUkAk7d1BUT52z9cfGn7j+rmftk/E0vA494Wz49o3EPsLTX7UxIjsuJfb0EkaQCDtU/NJa9C39UV2uvixjEgRegmF3LtuM//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:36 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Haiti/Arkansas/Oklahoma&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:37 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235226518814629893.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="6c1496d0262c1628c519f0886e1985cd", - oauth_signature="%2BvX%2FiwwAOAytpvnJ9WEyrqkCb18%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487037", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2698' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:37 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:37 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348703767695695; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:37 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_gDv7ByCTDY/l4WM0cT5EHg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:37 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 4d3bfed4029f84fa8d0761421d38436b - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '881' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '132' - X-Transaction: - - 00761074004aae8c - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 15:32:06 +0000 2020","id":1235226518814629893,"id_str":"1235226518814629893","text":"Whether - it''s Bernie or Biden, all the Democratic candidates have signed on to socialist - ideas. \n\nJoe Biden wants ta\u2026 https:\/\/t.co\/Xo93dTvb7u","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Xo93dTvb7u","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235226518814629893","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":343041182,"id_str":"343041182","name":"Tom - Cotton","screen_name":"TomCottonAR","location":"Dardanelle, AR","description":"U.S. - Senator for Arkansas. For official updates, see @SenTomCotton. RLTW.","url":"https:\/\/t.co\/46xELWPgQF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/46xELWPgQF","expanded_url":"http:\/\/tomcotton.com","display_url":"tomcotton.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":84673,"friends_count":505,"listed_count":1141,"created_at":"Tue - Jul 26 23:57:10 +0000 2011","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4706,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/913779154444840960\/BqrF3BK-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913779154444840960\/BqrF3BK-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343041182\/1533059916","profile_link_color":"141C25","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":577,"favorite_count":1685,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dardanelle,%20AR&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:38 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/913779154444840960/BqrF3BK-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '56090' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:38 GMT - Last-Modified: - - Fri, 29 Sep 2017 14:53:02 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/913779154444840960 - X-Cache: - - MISS - X-Connection-Hash: - - f7270fdc02f4fc30cf37b645ae09c1d0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dardanelle,%20AR&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=dhaka%20bangladesh&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:38 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1229755718200414209/HvRbdQXr_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '194467' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:38 GMT - Last-Modified: - - Tue, 18 Feb 2020 13:11:05 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1229755718200414209 - X-Cache: - - MISS - X-Connection-Hash: - - 7608e6dcb43ee0f1fda2776bfd1274b2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=dhaka%20bangladesh&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Calabasas,%20CA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:39 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:39 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1169339722352738306/ItdavGHC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146305' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:39 GMT - Last-Modified: - - Wed, 04 Sep 2019 19:59:29 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1169339722352738306 - X-Cache: - - MISS - X-Connection-Hash: - - 10927566bccf37ef850e0c207df6784b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:39 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Calabasas,%20CA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:39 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:39 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/774252573096378368/4_PAjXFz_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146534' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:39 GMT - Last-Modified: - - Fri, 09 Sep 2016 14:24:13 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/774252573096378368 - X-Cache: - - MISS - X-Connection-Hash: - - d083140d49d7b95c2f0cafdcb81d5a24 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:39 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1235246199684444162.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="5bda530aad621c9ada4d440bb714cd03", - oauth_signature="cgaOo70dNQi0XZyMTwHOWUsJNms%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487039", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2779' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:40 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:40 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348704021408243; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_18MbQXd9aq9ux2Qt53NYCA=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - a3c48d151b536b6f580ea80e200e0a9a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '880' - X-Rate-Limit-Reset: - - '1583487866' - X-Response-Time: - - '144' - X-Transaction: - - '00142822001a8ac5' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Wed Mar 04 16:50:18 +0000 2020","id":1235246199684444162,"id_str":"1235246199684444162","text":"En - plena crisis del @CoronaVid19, en Almer\u00eda surge otro caso sanitario: - brote de paperas en el IES Nicol\u00e1s Salmer\u00f3n\u2026 https:\/\/t.co\/2bXz0VnnKc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CoronaVid19","name":"Coronavirus","id":1082014807161798656,"id_str":"1082014807161798656","indices":[20,32]}],"urls":[{"url":"https:\/\/t.co\/2bXz0VnnKc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235246199684444162","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,"user":{"id":259958479,"id_str":"259958479","name":"\u00c1lvaro - Hern\u00e1ndez Castillo","screen_name":"alvarohernandec","location":"Extramuros","description":"Periodista. - En @lavozdealmeria contando las cosicas de mi tierra \/\/ Sabina vive, la - lucha sigue \/\/ Rockandroll \/\/ \ud83c\uddee\ud83c\uddf9","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1545,"friends_count":774,"listed_count":49,"created_at":"Wed - Mar 02 23:06:06 +0000 2011","favourites_count":15653,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15006,"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\/1212803527975821318\/hElHCk89_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212803527975821318\/hElHCk89_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259958479\/1527785983","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"es"}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:40 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Extramuros&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:40 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:40 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1212803527975821318/hElHCk89_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '139893' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:40 GMT - Last-Modified: - - Thu, 02 Jan 2020 18:29:08 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1212803527975821318 - X-Cache: - - MISS - X-Connection-Hash: - - 66d75d47fd6264f78354bd0b668c43bc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:40 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Extramuros&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:41 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20Jersey&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:41 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1224294024812670981/7zY2nnpS_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:30:41 GMT - Last-Modified: - - Mon, 03 Feb 2020 11:28:16 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1224294024812670981 - X-Cache: - - MISS - X-Connection-Hash: - - 5901fb8e06feacd2b6001b51f1c48a11 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:41 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20Jersey&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:30:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:41 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="098390bbf9a7d2e3fe0af72d47c8a312", - oauth_signature="S9pkC%2BL36S5wlTBiMFVkPwSdSGI%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487055", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '118200' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:30:55 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:30:55 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348705565235508; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:30:55 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_bGxyO5tm6/6uxRwFHllXeg=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:30:55 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - cdcbdf49f7d74c886b975d37ea3e3bbc - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '174' - X-Rate-Limit-Reset: - - '1583487846' - X-Response-Time: - - '288' - X-Transaction: - - 0007dc78007a94c4 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Fri Mar 06 04:51:24 +0000 2020","id":1235790058575327232,"id_str":"1235790058575327232","text":"Rainy - days at 345 \ud83d\udc99 https:\/\/t.co\/GJQeihDTqS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235790046848040960,"id_str":"1235790046848040960","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/ESZogAdXQAAnUiY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESZogAdXQAAnUiY.jpg","url":"https:\/\/t.co\/GJQeihDTqS","display_url":"pic.twitter.com\/GJQeihDTqS","expanded_url":"https:\/\/twitter.com\/Zammad\/status\/1235790058575327232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235790046848040960,"id_str":"1235790046848040960","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/ESZogAdXQAAnUiY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESZogAdXQAAnUiY.jpg","url":"https:\/\/t.co\/GJQeihDTqS","display_url":"pic.twitter.com\/GJQeihDTqS","expanded_url":"https:\/\/twitter.com\/Zammad\/status\/1235790058575327232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":286,"friends_count":222,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16119,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9373,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"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"},{"created_at":"Thu - Mar 05 07:25:23 +0000 2020","id":1235466420533596160,"id_str":"1235466420533596160","text":"CVE-2020-10099\n\nAn - XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can be - provided by a low-priv\u2026 https:\/\/t.co\/sj1RjEddjG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sj1RjEddjG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235466420533596160","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 07:22:23 +0000 2020","id":1235465665571512321,"id_str":"1235465665571512321","text":"CVE-2020-10097\n\nAn - issue was discovered in Zammad 3.0 through 3.2. It may respond with verbose - error messages that\u2026 https:\/\/t.co\/jh8FxGprxw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jh8FxGprxw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235465665571512321","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 07:19:23 +0000 2020","id":1235464910680670208,"id_str":"1235464910680670208","text":"CVE-2020-10104\n\nAn - issue was discovered in Zammad 3.0 through 3.2. After authentication, it transmits - sensitive inf\u2026 https:\/\/t.co\/OxVbdcReKe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OxVbdcReKe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235464910680670208","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 07:16:23 +0000 2020","id":1235464155458658305,"id_str":"1235464155458658305","text":"CVE-2020-10098\n\nAn - XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can be - provided by a low-priv\u2026 https:\/\/t.co\/30qQZrNLKy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/30qQZrNLKy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235464155458658305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 07:13:22 +0000 2020","id":1235463398684381184,"id_str":"1235463398684381184","text":"CVE-2020-10101\n\nAn - issue was discovered in Zammad 3.0 through 3.2. The WebSocket server crashes - when messages in no\u2026 https:\/\/t.co\/4W7kjTBBx2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4W7kjTBBx2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235463398684381184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 07:10:22 +0000 2020","id":1235462643546087424,"id_str":"1235462643546087424","text":"CVE-2020-10103\n\nAn - XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can be - provided by a low-priv\u2026 https:\/\/t.co\/27RRyNV7QO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/27RRyNV7QO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235462643546087424","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 07:07:22 +0000 2020","id":1235461887426355200,"id_str":"1235461887426355200","text":"CVE-2020-10102\n\nAn - issue was discovered in Zammad 3.0 through 3.2. The Forgot Password functionality - is implemented\u2026 https:\/\/t.co\/T7i8YPlDJm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T7i8YPlDJm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235461887426355200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 07:04:22 +0000 2020","id":1235461132103471105,"id_str":"1235461132103471105","text":"CVE-2020-10096\n\nAn - issue was discovered in Zammad 3.0 through 3.2. It does not prevent caching - of confidential data\u2026 https:\/\/t.co\/4hBeSIBxYm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4hBeSIBxYm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235461132103471105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 07:01:22 +0000 2020","id":1235460376688349184,"id_str":"1235460376688349184","text":"CVE-2020-10100\n\nAn - issue was discovered in Zammad 3.0 through 3.2. It allows for users to view - ticket customer deta\u2026 https:\/\/t.co\/Fr3GCAnapH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Fr3GCAnapH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235460376688349184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 06:58:22 +0000 2020","id":1235459621273272320,"id_str":"1235459621273272320","text":"CVE-2020-10105\n\nAn - issue was discovered in Zammad 3.0 through 3.2. It returns source code of - static resources when\u2026 https:\/\/t.co\/UHr4x973wd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UHr4x973wd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235459621273272320","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/apps.twitter.com\" rel=\"nofollow\"\u003evulmonfff\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941389496771399680,"id_str":"941389496771399680","name":"Vulmon - Vulnerability Feed","screen_name":"VulmonFeeds","location":"","description":"Vulnerability - Feed Bot | Follow @vulmon_ for human-controlled account","url":"https:\/\/t.co\/XBQoPn3m5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XBQoPn3m5M","expanded_url":"https:\/\/vulmon.com","display_url":"vulmon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":865,"friends_count":2,"listed_count":32,"created_at":"Thu - Dec 14 19:28:41 +0000 2017","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56074,"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\/945758793161498625\/67b3PEYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945758793161498625\/67b3PEYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941389496771399680\/1567581100","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"},"geo":null,"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"},{"created_at":"Thu - Mar 05 01:45:14 +0000 2020","id":1235380821328093186,"id_str":"1235380821328093186","text":"CVE-2020-10105 - An issue was discovered in Zammad 3.0 through 3.2. It returns source code - of static resources when s\u2026 https:\/\/t.co\/ZIQIyXKBUE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZIQIyXKBUE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380821328093186","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:14 +0000 2020","id":1235380819461627905,"id_str":"1235380819461627905","text":"CVE-2020-10104 - An issue was discovered in Zammad 3.0 through 3.2. After authentication, it - transmits sensitive info\u2026 https:\/\/t.co\/mmY4exhwXe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mmY4exhwXe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380819461627905","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:13 +0000 2020","id":1235380817347608579,"id_str":"1235380817347608579","text":"CVE-2020-10103 - An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can - be provided by a low-privi\u2026 https:\/\/t.co\/VRuNKa1GH6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VRuNKa1GH6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380817347608579","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:13 +0000 2020","id":1235380815019814912,"id_str":"1235380815019814912","text":"CVE-2020-10102 - An issue was discovered in Zammad 3.0 through 3.2. The Forgot Password functionality - is implemented\u2026 https:\/\/t.co\/Kq9J3LLnrx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Kq9J3LLnrx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380815019814912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:12 +0000 2020","id":1235380812666867715,"id_str":"1235380812666867715","text":"CVE-2020-10101 - An issue was discovered in Zammad 3.0 through 3.2. The WebSocket server crashes - when messages in non\u2026 https:\/\/t.co\/2voMsBIhys","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2voMsBIhys","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380812666867715","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:12 +0000 2020","id":1235380810812993536,"id_str":"1235380810812993536","text":"CVE-2020-10100 - An issue was discovered in Zammad 3.0 through 3.2. It allows for users to - view ticket customer detai\u2026 https:\/\/t.co\/Jq4ImWX1gR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Jq4ImWX1gR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380810812993536","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:11 +0000 2020","id":1235380808191537153,"id_str":"1235380808191537153","text":"CVE-2020-10099 - An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can - be provided by a low-privi\u2026 https:\/\/t.co\/ATnGRXqZli","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ATnGRXqZli","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380808191537153","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:10 +0000 2020","id":1235380805624623104,"id_str":"1235380805624623104","text":"CVE-2020-10098 - An XSS issue was discovered in Zammad 3.0 through 3.2. Malicious code can - be provided by a low-privi\u2026 https:\/\/t.co\/4f7h2Avtn0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4f7h2Avtn0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380805624623104","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:10 +0000 2020","id":1235380802797613062,"id_str":"1235380802797613062","text":"CVE-2020-10097 - An issue was discovered in Zammad 3.0 through 3.2. It may respond with verbose - error messages that d\u2026 https:\/\/t.co\/ywbbEn7Zvk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ywbbEn7Zvk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380802797613062","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Thu - Mar 05 01:45:09 +0000 2020","id":1235380800188755968,"id_str":"1235380800188755968","text":"CVE-2020-10096 - An issue was discovered in Zammad 3.0 through 3.2. It does not prevent caching - of confidential data\u2026 https:\/\/t.co\/T7Elw04Fgg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T7Elw04Fgg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235380800188755968","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/cve.mitre.org\/cve\/\" rel=\"nofollow\"\u003eCVENEW\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821806287461740544,"id_str":"821806287461740544","name":"CVE","screen_name":"CVEnew","location":"","description":"Official - account maintained by the CVE Team to notify the community of new CVE IDs. - For additional data feeds see: https:\/\/t.co\/Q5mNTLbO7i.","url":"https:\/\/t.co\/k9HZz2bu5G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k9HZz2bu5G","expanded_url":"https:\/\/cveform.mitre.org","display_url":"cveform.mitre.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Q5mNTLbO7i","expanded_url":"https:\/\/cve.mitre.org\/cve\/data_feeds.html","display_url":"cve.mitre.org\/cve\/data_feeds\u2026","indices":[115,138]}]}},"protected":false,"followers_count":19412,"friends_count":2,"listed_count":381,"created_at":"Wed - Jan 18 19:47:42 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092458927365738501\/ubDSi_rV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821806287461740544\/1491503268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Wed - Mar 04 11:59:16 +0000 2020","id":1235172958110461955,"id_str":"1235172958110461955","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14697689,"id_str":"14697689","name":"Frank - Schmittlein","screen_name":"schmittlein77","location":"N\u00fcrnberg","description":"Creator - of WP-Dojo (https:\/\/t.co\/r9rbZLn3Q9) and Co-Organisator of N\u00fcrnberg - WordPress Meetup (https:\/\/t.co\/IG65OLgtrE) and Father\u00b3","url":"https:\/\/t.co\/MhS5IRPlWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MhS5IRPlWZ","expanded_url":"https:\/\/frank-schmittlein.de","display_url":"frank-schmittlein.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/r9rbZLn3Q9","expanded_url":"https:\/\/wp-dojo.de\/","display_url":"wp-dojo.de","indices":[20,43]},{"url":"https:\/\/t.co\/IG65OLgtrE","expanded_url":"https:\/\/www.meetup.com\/de-DE\/Nurnberg-WordPress-Meetup\/","display_url":"meetup.com\/de-DE\/Nurnberg\u2026","indices":[94,117]}]}},"protected":false,"followers_count":368,"friends_count":1154,"listed_count":23,"created_at":"Thu - May 08 08:03:22 +0000 2008","favourites_count":1669,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1279,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CEE3E6","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\/639398531393028097\/UBNg7gU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639398531393028097\/UBNg7gU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14697689\/1399559562","profile_link_color":"6A964D","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":606,"friends_count":581,"listed_count":20,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":563,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"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"},{"created_at":"Wed - Mar 04 11:52:11 +0000 2020","id":1235171177179598848,"id_str":"1235171177179598848","text":"Fokus - Security - es gibt ein wichtiges Update f\u00fcr #zammad \n\nhttps:\/\/t.co\/vIQiaeD2MM","truncated":false,"entities":{"hashtags":[{"text":"zammad","indices":[50,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vIQiaeD2MM","expanded_url":"https:\/\/zammad.com\/de\/news\/release-3-3","display_url":"zammad.com\/de\/news\/releas\u2026","indices":[60,83]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14697689,"id_str":"14697689","name":"Frank - Schmittlein","screen_name":"schmittlein77","location":"N\u00fcrnberg","description":"Creator - of WP-Dojo (https:\/\/t.co\/r9rbZLn3Q9) and Co-Organisator of N\u00fcrnberg - WordPress Meetup (https:\/\/t.co\/IG65OLgtrE) and Father\u00b3","url":"https:\/\/t.co\/MhS5IRPlWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MhS5IRPlWZ","expanded_url":"https:\/\/frank-schmittlein.de","display_url":"frank-schmittlein.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/r9rbZLn3Q9","expanded_url":"https:\/\/wp-dojo.de\/","display_url":"wp-dojo.de","indices":[20,43]},{"url":"https:\/\/t.co\/IG65OLgtrE","expanded_url":"https:\/\/www.meetup.com\/de-DE\/Nurnberg-WordPress-Meetup\/","display_url":"meetup.com\/de-DE\/Nurnberg\u2026","indices":[94,117]}]}},"protected":false,"followers_count":368,"friends_count":1154,"listed_count":23,"created_at":"Thu - May 08 08:03:22 +0000 2008","favourites_count":1669,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1279,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CEE3E6","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\/639398531393028097\/UBNg7gU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639398531393028097\/UBNg7gU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14697689\/1399559562","profile_link_color":"6A964D","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"},"geo":null,"coordinates":null,"place":{"id":"26066ea01f9fa118","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/26066ea01f9fa118.json","place_type":"city","name":"Nuremberg","full_name":"Nuremberg, - Germany","country_code":"DE","country":"Germany","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[10.988242,49.331892],[11.282478,49.331892],[11.282478,49.548082],[10.988242,49.548082]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},{"created_at":"Wed - Mar 04 08:46:11 +0000 2020","id":1235124366381404163,"id_str":"1235124366381404163","text":"Wir - sind auf der Suche nach neuen Kollegen und Kolleginnen. Wer hat Lust? Zammad - die Welt rocken... #zammad\u2026 https:\/\/t.co\/NVpi8HBrKv","truncated":true,"entities":{"hashtags":[{"text":"zammad","indices":[100,107]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NVpi8HBrKv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235124366381404163","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14697689,"id_str":"14697689","name":"Frank - Schmittlein","screen_name":"schmittlein77","location":"N\u00fcrnberg","description":"Creator - of WP-Dojo (https:\/\/t.co\/r9rbZLn3Q9) and Co-Organisator of N\u00fcrnberg - WordPress Meetup (https:\/\/t.co\/IG65OLgtrE) and Father\u00b3","url":"https:\/\/t.co\/MhS5IRPlWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MhS5IRPlWZ","expanded_url":"https:\/\/frank-schmittlein.de","display_url":"frank-schmittlein.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/r9rbZLn3Q9","expanded_url":"https:\/\/wp-dojo.de\/","display_url":"wp-dojo.de","indices":[20,43]},{"url":"https:\/\/t.co\/IG65OLgtrE","expanded_url":"https:\/\/www.meetup.com\/de-DE\/Nurnberg-WordPress-Meetup\/","display_url":"meetup.com\/de-DE\/Nurnberg\u2026","indices":[94,117]}]}},"protected":false,"followers_count":368,"friends_count":1154,"listed_count":23,"created_at":"Thu - May 08 08:03:22 +0000 2008","favourites_count":1669,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1279,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CEE3E6","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\/639398531393028097\/UBNg7gU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639398531393028097\/UBNg7gU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14697689\/1399559562","profile_link_color":"6A964D","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"},"geo":null,"coordinates":null,"place":{"id":"26066ea01f9fa118","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/26066ea01f9fa118.json","place_type":"city","name":"Nuremberg","full_name":"Nuremberg, - Germany","country_code":"DE","country":"Germany","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[10.988242,49.331892],[11.282478,49.331892],[11.282478,49.548082],[10.988242,49.548082]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},{"created_at":"Tue - Mar 03 15:01:12 +0000 2020","id":1234856357209280525,"id_str":"1234856357209280525","text":"RT - @call_user_func: [New]dogteam\/zammad Zammad for Laravel https:\/\/t.co\/pbrZ3gNW3o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"call_user_func","name":"function()\u007bexit;\u007d","id":2428165560,"id_str":"2428165560","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/pbrZ3gNW3o","expanded_url":"https:\/\/github.com\/DogTeams\/Zammad","display_url":"github.com\/DogTeams\/Zammad","indices":[59,82]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":46,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":487,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":184,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 14:10:30 +0000 2020","id":1234843595317731329,"id_str":"1234843595317731329","text":"[New]dogteam\/zammad - Zammad for Laravel https:\/\/t.co\/pbrZ3gNW3o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pbrZ3gNW3o","expanded_url":"https:\/\/github.com\/DogTeams\/Zammad","display_url":"github.com\/DogTeams\/Zammad","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/call_user_func\" rel=\"nofollow\"\u003ecomposer_release\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2428165560,"id_str":"2428165560","name":"function()\u007bexit;\u007d","screen_name":"call_user_func","location":"","description":"Packagist - watching, PHP","url":"https:\/\/t.co\/YAOnTQklcV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YAOnTQklcV","expanded_url":"https:\/\/github.com\/uzulla\/call_user_func_twitter_bot","display_url":"github.com\/uzulla\/call_us\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":425,"friends_count":1,"listed_count":104,"created_at":"Sat - Apr 05 02:40:49 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":285674,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453113955255193600\/BMVSw7sC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453113955255193600\/BMVSw7sC_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Tue - Mar 03 14:10:30 +0000 2020","id":1234843595317731329,"id_str":"1234843595317731329","text":"[New]dogteam\/zammad - Zammad for Laravel https:\/\/t.co\/pbrZ3gNW3o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pbrZ3gNW3o","expanded_url":"https:\/\/github.com\/DogTeams\/Zammad","display_url":"github.com\/DogTeams\/Zammad","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/call_user_func\" rel=\"nofollow\"\u003ecomposer_release\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2428165560,"id_str":"2428165560","name":"function()\u007bexit;\u007d","screen_name":"call_user_func","location":"","description":"Packagist - watching, PHP","url":"https:\/\/t.co\/YAOnTQklcV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YAOnTQklcV","expanded_url":"https:\/\/github.com\/uzulla\/call_user_func_twitter_bot","display_url":"github.com\/uzulla\/call_us\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":425,"friends_count":1,"listed_count":104,"created_at":"Sat - Apr 05 02:40:49 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":285674,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453113955255193600\/BMVSw7sC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453113955255193600\/BMVSw7sC_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Sun - Mar 01 21:49:39 +0000 2020","id":1234234369704955910,"id_str":"1234234369704955910","text":"RT - @ladbible: A huge medical breakthrough. \ud83d\udc4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ladbible","name":"LADbible","id":331311644,"id_str":"331311644","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":30,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":47,"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\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 10:59:28 +0000 2020","id":1234070746315526144,"id_str":"1234070746315526144","text":"A - huge medical breakthrough. \ud83d\udc4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":331311644,"id_str":"331311644","name":"LADbible","screen_name":"ladbible","location":"","description":"Redefining - entertainment & news! Follow LADbible now for the best viral videos, funny - stories & the latest news","url":"https:\/\/t.co\/3gw9MEtHH1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3gw9MEtHH1","expanded_url":"https:\/\/www.LADbible.com","display_url":"LADbible.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2363704,"friends_count":0,"listed_count":2563,"created_at":"Fri - Jul 08 00:05:53 +0000 2011","favourites_count":1120,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57088,"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\/841982132981497856\/egozMVKe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/841982132981497856\/egozMVKe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/331311644\/1576675144","profile_link_color":"1892F0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":133,"favorite_count":1178,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":133,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat - Feb 29 19:26:22 +0000 2020","id":1233835922338328577,"id_str":"1233835922338328577","text":"Invincible - no more #WATLIV","truncated":false,"entities":{"hashtags":[{"text":"WATLIV","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":286,"friends_count":222,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16119,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9373,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Sat - Feb 29 19:25:40 +0000 2020","id":1233835749545586689,"id_str":"1233835749545586689","text":"Watford - of all the teams... https:\/\/t.co\/kmWwwLwMpA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kmWwwLwMpA","expanded_url":"https:\/\/twitter.com\/premierleague\/status\/1233835648831885313","display_url":"twitter.com\/premierleague\/\u2026","indices":[28,51]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":286,"friends_count":222,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16119,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9373,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233835648831885313,"quoted_status_id_str":"1233835648831885313","quoted_status":{"created_at":"Sat - Feb 29 19:25:16 +0000 2020","id":1233835648831885313,"id_str":"1233835648831885313","text":"A - famous Watford win ends Liverpool''s unbeaten #PL run\n\n#WATLIV https:\/\/t.co\/9xdjG85lMV","truncated":false,"entities":{"hashtags":[{"text":"PL","indices":[47,50]},{"text":"WATLIV","indices":[56,63]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233835644138541058,"id_str":"1233835644138541058","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ER92-zAX0AITPCw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER92-zAX0AITPCw.jpg","url":"https:\/\/t.co\/9xdjG85lMV","display_url":"pic.twitter.com\/9xdjG85lMV","expanded_url":"https:\/\/twitter.com\/premierleague\/status\/1233835648831885313\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233835644138541058,"id_str":"1233835644138541058","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ER92-zAX0AITPCw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER92-zAX0AITPCw.jpg","url":"https:\/\/t.co\/9xdjG85lMV","display_url":"pic.twitter.com\/9xdjG85lMV","expanded_url":"https:\/\/twitter.com\/premierleague\/status\/1233835648831885313\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.spredfast.com\/\" rel=\"nofollow\"\u003eKhoros\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343627165,"id_str":"343627165","name":"Premier - League","screen_name":"premierleague","location":"","description":"The official - Twitter account of the Premier League \ud83d\udcf1 @OfficialFPL | \ud83c\uddee\ud83c\uddf3 - @PLforIndia | \ud83c\uddfa\ud83c\uddf8 @PLinUSA Join us on YouTube \ud83d\udc49 - https:\/\/t.co\/mE5i2L4M3L","url":"https:\/\/t.co\/IMNRVHC2Kt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IMNRVHC2Kt","expanded_url":"http:\/\/premierleague.com","display_url":"premierleague.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/mE5i2L4M3L","expanded_url":"http:\/\/youtube.com\/premierleague","display_url":"youtube.com\/premierleague","indices":[118,141]}]}},"protected":false,"followers_count":21643835,"friends_count":82,"listed_count":26463,"created_at":"Wed - Jul 27 21:09:32 +0000 2011","favourites_count":1766,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":114705,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"050528","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204508293596635137\/ssjmIYjS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204508293596635137\/ssjmIYjS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343627165\/1583485866","profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"171838","profile_text_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6378,"favorite_count":28676,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat - Feb 29 09:06:05 +0000 2020","id":1233679825728102400,"id_str":"1233679825728102400","text":"@Fezfutbol - Lol","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Fezfutbol","name":"Feza.","id":1098500660444741632,"id_str":"1098500660444741632","indices":[0,10]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1233609744658632709,"in_reply_to_status_id_str":"1233609744658632709","in_reply_to_user_id":1098500660444741632,"in_reply_to_user_id_str":"1098500660444741632","in_reply_to_screen_name":"Fezfutbol","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1413,"friends_count":1378,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3467,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1893,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Sat - Feb 29 06:33:13 +0000 2020","id":1233641354372276224,"id_str":"1233641354372276224","text":"RT - @thePSLt20: Look \ud83d\udc40 who just got into town!\n\nWelcome to Pakistan, - Dale! #HBLPSLV #TayyarHain https:\/\/t.co\/JB8DVL9EDt","truncated":false,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[74,82]},{"text":"TayyarHain","indices":[83,94]}],"symbols":[],"user_mentions":[{"screen_name":"thePSLt20","name":"PakistanSuperLeague","id":3448716797,"id_str":"3448716797","indices":[3,13]}],"urls":[],"media":[{"id":1233637631386361856,"id_str":"1233637631386361856","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/ER7C48BWoAA-UEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER7C48BWoAA-UEs.jpg","url":"https:\/\/t.co\/JB8DVL9EDt","display_url":"pic.twitter.com\/JB8DVL9EDt","expanded_url":"https:\/\/twitter.com\/thePSLt20\/status\/1233637640802533376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1233637640802533376,"source_status_id_str":"1233637640802533376","source_user_id":3448716797,"source_user_id_str":"3448716797"}]},"extended_entities":{"media":[{"id":1233637631386361856,"id_str":"1233637631386361856","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/ER7C48BWoAA-UEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER7C48BWoAA-UEs.jpg","url":"https:\/\/t.co\/JB8DVL9EDt","display_url":"pic.twitter.com\/JB8DVL9EDt","expanded_url":"https:\/\/twitter.com\/thePSLt20\/status\/1233637640802533376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1233637640802533376,"source_status_id_str":"1233637640802533376","source_user_id":3448716797,"source_user_id_str":"3448716797"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":286,"friends_count":222,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16119,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9373,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 06:18:28 +0000 2020","id":1233637640802533376,"id_str":"1233637640802533376","text":"Look - \ud83d\udc40 who just got into town!\n\nWelcome to Pakistan, Dale! #HBLPSLV - #TayyarHain https:\/\/t.co\/JB8DVL9EDt","truncated":false,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[59,67]},{"text":"TayyarHain","indices":[68,79]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233637631386361856,"id_str":"1233637631386361856","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/ER7C48BWoAA-UEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER7C48BWoAA-UEs.jpg","url":"https:\/\/t.co\/JB8DVL9EDt","display_url":"pic.twitter.com\/JB8DVL9EDt","expanded_url":"https:\/\/twitter.com\/thePSLt20\/status\/1233637640802533376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233637631386361856,"id_str":"1233637631386361856","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/ER7C48BWoAA-UEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER7C48BWoAA-UEs.jpg","url":"https:\/\/t.co\/JB8DVL9EDt","display_url":"pic.twitter.com\/JB8DVL9EDt","expanded_url":"https:\/\/twitter.com\/thePSLt20\/status\/1233637640802533376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1454526,"friends_count":110,"listed_count":481,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":256,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10894,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":872,"favorite_count":10116,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":872,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Feb 28 07:37:10 +0000 2020","id":1233295058209775616,"id_str":"1233295058209775616","text":"@lxk3il - Leider nein, diese Funktion beschr\u00e4nkt sich auf Benutzer. Twitter eignet - sich etwas schlecht aus Unterst\u00fctz\u2026 https:\/\/t.co\/7WpAavLga4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lxk3il","name":"lxk3il","id":125345743,"id_str":"125345743","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/7WpAavLga4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233295058209775616","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1233149587076112386,"in_reply_to_status_id_str":"1233149587076112386","in_reply_to_user_id":125345743,"in_reply_to_user_id_str":"125345743","in_reply_to_screen_name":"lxk3il","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":606,"friends_count":581,"listed_count":20,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":563,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"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":"de"},{"created_at":"Thu - Feb 27 15:21:40 +0000 2020","id":1233049569321275393,"id_str":"1233049569321275393","text":"@lxk3il - Sehr gern, bis bald im Zammad Universum! ;)\n\/MH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lxk3il","name":"lxk3il","id":125345743,"id_str":"125345743","indices":[0,7]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1233049268497321984,"in_reply_to_status_id_str":"1233049268497321984","in_reply_to_user_id":125345743,"in_reply_to_user_id_str":"125345743","in_reply_to_screen_name":"lxk3il","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":606,"friends_count":581,"listed_count":20,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":563,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Thu - Feb 27 13:59:46 +0000 2020","id":1233028954790993923,"id_str":"1233028954790993923","text":"Moin - @lxk3il \nEine Migration von OTRS 3.2.9 ist technisch m\u00f6glich, aber eher - unsch\u00f6n, weil du deine Kennw\u00f6rter verl\u2026 https:\/\/t.co\/cr3KCrYnGp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lxk3il","name":"lxk3il","id":125345743,"id_str":"125345743","indices":[5,12]}],"urls":[{"url":"https:\/\/t.co\/cr3KCrYnGp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233028954790993923","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1233024040094306304,"in_reply_to_status_id_str":"1233024040094306304","in_reply_to_user_id":125345743,"in_reply_to_user_id_str":"125345743","in_reply_to_screen_name":"lxk3il","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":606,"friends_count":581,"listed_count":20,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":563,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"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":"de"},{"created_at":"Thu - Feb 27 13:40:14 +0000 2020","id":1233024040094306304,"id_str":"1233024040094306304","text":"Hallo - @zammadhq ! Ist eine Migration von OTRS v3.2.9 nach Zammad m\u00f6glich? Was - gibt es zu beachten? \ud83d\ude42","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[6,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125345743,"id_str":"125345743","name":"lxk3il","screen_name":"lxk3il","location":"Germany","description":"Developer, - System Engineer, Helicopterpilot,","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":41,"listed_count":1,"created_at":"Mon - Mar 22 14:24:53 +0000 2010","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":160,"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\/896800504768016384\/zX7jCOd5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/896800504768016384\/zX7jCOd5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125345743\/1502648931","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Thu - Feb 27 12:18:07 +0000 2020","id":1233003374917890048,"id_str":"1233003374917890048","text":"@KazmiWajahat - Lol","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KazmiWajahat","name":"Wajahat - Kazmi","id":61798186,"id_str":"61798186","indices":[0,13]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1232388853467688961,"in_reply_to_status_id_str":"1232388853467688961","in_reply_to_user_id":61798186,"in_reply_to_user_id_str":"61798186","in_reply_to_screen_name":"KazmiWajahat","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1413,"friends_count":1378,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3467,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1893,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"}],"search_metadata":{"completed_in":0.115,"max_id":1235790058575327232,"max_id_str":"1235790058575327232","next_results":"?max_id=1233003374917890047&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1235790058575327232&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:30:56 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="d775d6e44452ffeaf1430531b3c53af5", - oauth_signature="XRU33jGOEn2iHyNBvBWJ0YfsK8c%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583487061", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '279' - Content-Type: - - application/json;charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:31:01 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Fri, 06 Mar 2020 09:31:01 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348706161039548; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:31:01 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_27GgPAEcjL4fvJzjBVIEJw=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:31:01 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - f8b85075d2c71985a427a667e414a78f - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '173' - X-Rate-Limit-Reset: - - '1583487846' - X-Response-Time: - - '129' - X-Transaction: - - '008cdebe00e47d7a' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.014,"max_id":1235860421199818753,"max_id_str":"1235860421199818753","query":"hash_tag1","refresh_url":"?since_id=1235860421199818753&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Fri, 06 Mar 2020 09:31:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:29 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - MISS - X-Connection-Hash: - - 875c8427d5d2f38c5d03c3ba0bf4d275 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452618' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:29 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452619' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:30 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - MISS - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452619' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:30 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452619' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:30 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452620' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:31 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452620' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:31 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452620' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:31 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452620' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:31 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452621' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:32 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/945758793161498625/67b3PEYK_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '452621' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:32 GMT - Last-Modified: - - Tue, 26 Dec 2017 20:48:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/945758793161498625 - X-Cache: - - HIT - X-Connection-Hash: - - a7d501df16296fb3e8dfaba96bcc57ac - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297983' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:32 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297984' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:33 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - MISS - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297984' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:33 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297984' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:33 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297984' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:33 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297985' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:34 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297985' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:34 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297986' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:35 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297986' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:35 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1092458927365738501/ubDSi_rV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '297987' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:36 GMT - Last-Modified: - - Mon, 04 Feb 2019 16:22:39 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1092458927365738501 - X-Cache: - - HIT - X-Connection-Hash: - - c1a36adcf6a4896252c6207c4e923782 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=N%C3%BCrnberg&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:36 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/639398531393028097/UBNg7gU9_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '164371' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:36 GMT - Last-Modified: - - Thu, 03 Sep 2015 11:22:23 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/639398531393028097 - X-Cache: - - HIT - X-Connection-Hash: - - 888bb6cd123a4edfefa317ddbbf897d4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=N%C3%BCrnberg&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:36 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=N%C3%BCrnberg&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/639398531393028097/UBNg7gU9_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '164372' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:37 GMT - Last-Modified: - - Thu, 03 Sep 2015 11:22:23 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/639398531393028097 - X-Cache: - - MISS - X-Connection-Hash: - - 888bb6cd123a4edfefa317ddbbf897d4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/453113955255193600/BMVSw7sC_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Fri, 06 Mar 2020 09:33:37 GMT - Last-Modified: - - Mon, 07 Apr 2014 10:14:00 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/453113955255193600 - X-Cache: - - MISS - X-Connection-Hash: - - bfb23ebf6bfb8fe60331a5aa08470317 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:38 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - MISS - X-Connection-Hash: - - 93b55c488c07e05222fbafc45f0dc719 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:38 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 93b55c488c07e05222fbafc45f0dc719 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:39 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1094738873039704066/-lDgIqkO_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Fri, 06 Mar 2020 09:33:39 GMT - Last-Modified: - - Sun, 10 Feb 2019 23:22:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1094738873039704066 - X-Cache: - - MISS - X-Connection-Hash: - - de16d01cc1f162ecc3085dcf112ded2a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Fri, 06 Mar 2020 09:33:40 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1233609744658632709.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="556cbcf9d1aad1325937eeebb83dc268", - oauth_signature="eVBmi3EGXH0WWlTrWbI5ASsZNw0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580993700", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 401 - message: Unauthorized - headers: - Connection: - - close - Content-Length: - - '62' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Mar 2020 09:33:40 GMT - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158348722092164297; Max-Age=63072000; Expires=Sun, 6 Mar 2022 - 09:33:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - personalization_id="v1_8ryH84BiAqkmcKFrpLBC5g=="; Max-Age=63072000; Expires=Sun, - 6 Mar 2022 09:33:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Strict-Transport-Security: - - max-age=631138519 - X-Connection-Hash: - - 282c0529fbb3a858886da6eb4790322c - X-Response-Time: - - '106' - body: - encoding: UTF-8 - string: '{"errors":[{"code":135,"message":"Timestamp out of bounds."}]}' - http_version: - recorded_at: Thu, 06 Feb 2020 12:55:00 GMT -recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_stops_importing_threads_after_120_new_articles.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_stops_importing_threads_after_120_new_articles.yml deleted file mode 100644 index be1d1c41f..000000000 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/for_very_common_search_terms_stops_importing_threads_after_120_new_articles.yml +++ /dev/null @@ -1,29434 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="be8436d60753fc0bb110ee77cf54a4d8", - oauth_signature="ejiBXpjz7TWiuSmV0lCDakxA0RE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257038", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '575966' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:19 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:19 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325703893555881; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:19 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_Fs5bf21S8e9hlFa5xRXmGQ=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:19 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - f88670367a46e85074aa5bbeaba426ac - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '173' - X-Rate-Limit-Reset: - - '1583257471' - X-Response-Time: - - '304' - X-Transaction: - - 003a2cd4009142fc - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Mar 02 17:50:41 +0000 2020","id":1234536619270688768,"id_str":"1234536619270688768","text":"BREAKING: - The CDC has stopped disclosing the number of Americans tested for coronavirus. - \n\nOn the left is how the w\u2026 https:\/\/t.co\/3eCifchRHf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3eCifchRHf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234536619270688768","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"result_type":"popular","iso_language_code":"en"},"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,"user":{"id":15464697,"id_str":"15464697","name":"Judd - Legum","screen_name":"JuddLegum","location":"Washington, DC","description":"I - write Popular Information, a newsletter about politics and power. \n\nSend - tips: DMs open | judd@popular.info | jlegum@protonmail.com","url":"https:\/\/t.co\/7lEYXJGXf5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7lEYXJGXf5","expanded_url":"http:\/\/Popular.info","display_url":"Popular.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":403149,"friends_count":1303,"listed_count":6199,"created_at":"Thu - Jul 17 05:37:26 +0000 2008","favourites_count":4326,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":56653,"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\/636336373453053952\/yv-YqI5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636336373453053952\/yv-YqI5w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15464697\/1533728641","profile_link_color":"202037","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31324,"favorite_count":59372,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518572921237509,"id_str":"1234518572921237509","text":"A - lot of cheap flights right now, and part of me thinks, if im going to get - the coronavirus, I might as well get it\u2026 https:\/\/t.co\/OUdqZHZDHa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OUdqZHZDHa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518572921237509","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"result_type":"popular","iso_language_code":"en"},"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,"user":{"id":18269124,"id_str":"18269124","name":"Ben - Dreyfuss","screen_name":"bendreyfuss","location":"New York, NY","description":"\"What - did you do during the war, daddy?\" \"Twitter, mostly.\" (Editorial Director, - @MotherJones)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57025,"friends_count":597,"listed_count":975,"created_at":"Sat - Dec 20 17:19:32 +0000 2008","favourites_count":76861,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":422,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/551152004148785152\/WavzMR0C_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551152004148785152\/WavzMR0C_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18269124\/1498751691","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15841,"favorite_count":146087,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 22:58:36 +0000 2020","id":1234614110198943747,"id_str":"1234614110198943747","text":"Hearing - rumors that the swamp is trying to tie long-term FISA reauthorization to emergency - funding to fight the\u2026 https:\/\/t.co\/eoekrPI2pO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eoekrPI2pO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234614110198943747","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"metadata":{"result_type":"popular","iso_language_code":"en"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23022687,"id_str":"23022687","name":"Ted - Cruz","screen_name":"tedcruz","location":"Houston, Texas","description":"Father - of two, @heidiscruz''s husband, fighter for liberty. Representing the great - state of Texas in the U.S. Senate.","url":"https:\/\/t.co\/dJ4Q3979gw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dJ4Q3979gw","expanded_url":"http:\/\/www.tedcruz.org","display_url":"tedcruz.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3611941,"friends_count":6319,"listed_count":12549,"created_at":"Fri - Mar 06 03:20:20 +0000 2009","favourites_count":1418,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":25908,"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\/1232763579830558720\/055sMET8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232763579830558720\/055sMET8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23022687\/1529028227","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10803,"favorite_count":28890,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895635125436416,"id_str":"1234895635125436416","text":"RT - @Nattiporn: \u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e22\u0e2d\u0e14\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e40\u0e0a\u0e37\u0e49\u0e2d - #coronavirus \u0e1e\u0e38\u0e48\u0e07\u0e44\u0e1b 130 \u0e04\u0e19\u0e25\u0e30\u0e08\u0e49\u0e32 - \u0e44\u0e21\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e21\u0e32\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e19\u0e40\u0e25\u0e22\u0e19\u0e30 - \u0e41\u0e25\u0e49\u0e27\u0e04\u0e19\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e19\u0e35\u0e49\u0e14\u0e37\u0e49\u0e2d\u0e21\u0e32\u0e01\u0e01\u0e01 - \u0e44\u0e21\u0e48\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[43,55]}],"symbols":[],"user_mentions":[{"screen_name":"Nattiporn","name":"\u0e40\u0e23\u0e32\u0e08\u0e30\u0e44\u0e1b\u0e04\u0e2d\u0e19\u0e40\u0e17\u0e40\u0e25\u0e2d\u0e23\u0e4c\u0e2a\u0e27\u0e34\u0e1f\u0e17\u0e35\u0e48\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e25\u0e34\u0e19","id":138749716,"id_str":"138749716","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1052560049162215425,"id_str":"1052560049162215425","name":"naddarrr.m\ud83d\udc99","screen_name":"m7ex12o","location":"","description":"exol\u2764\nhunhan\ud83d\udc99 - chanbaek \ud83d\udc99taeten \ud83d\udc99 jaeten\ud83d\udc99jamren\ud83d\udc99 - \u0e1b\u0e4b\u0e2d\u0e08\u0e49\u0e32\u0e19\ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":619,"listed_count":0,"created_at":"Wed - Oct 17 14:00:46 +0000 2018","favourites_count":1120,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27865,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233979837900943361\/BffspSCX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233979837900943361\/BffspSCX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1052560049162215425\/1573235857","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:57:50 +0000 2020","id":1234417624207052801,"id_str":"1234417624207052801","text":"\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e22\u0e2d\u0e14\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e40\u0e0a\u0e37\u0e49\u0e2d - #coronavirus \u0e1e\u0e38\u0e48\u0e07\u0e44\u0e1b 130 \u0e04\u0e19\u0e25\u0e30\u0e08\u0e49\u0e32 - \u0e44\u0e21\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e21\u0e32\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e19\u0e40\u0e25\u0e22\u0e19\u0e30 - \u0e41\u0e25\u0e49\u0e27\u0e04\u0e19\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e19\u0e35\u0e49\u0e14\u0e37\u0e49\u0e2d\u0e21\u0e32\u0e01\u0e01\u0e01\u2026 - https:\/\/t.co\/RcvekIdeor","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RcvekIdeor","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234417624207052801","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138749716,"id_str":"138749716","name":"\u0e40\u0e23\u0e32\u0e08\u0e30\u0e44\u0e1b\u0e04\u0e2d\u0e19\u0e40\u0e17\u0e40\u0e25\u0e2d\u0e23\u0e4c\u0e2a\u0e27\u0e34\u0e1f\u0e17\u0e35\u0e48\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e25\u0e34\u0e19","screen_name":"Nattiporn","location":"13.722113,100.520141","description":"\u0e2a\u0e27\u0e22 - \u0e46 \u0e23\u0e31\u0e48\u0e27 \u0e46 \u0e01\u0e31\u0e1a\u0e1c\u0e31\u0e27\u0e17\u0e35\u0e48\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e40\u0e1a\u0e35\u0e22\u0e23\u0e4c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":116,"listed_count":3,"created_at":"Fri - Apr 30 13:34:41 +0000 2010","favourites_count":3146,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9605,"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\/1193084626748760064\/po5YJaHB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193084626748760064\/po5YJaHB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138749716\/1356814231","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9408,"favorite_count":748,"favorited":false,"retweeted":false,"lang":"th"},"is_quote_status":false,"retweet_count":9408,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"th"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634953654273,"id_str":"1234895634953654273","text":"RT - @ERaspiengeas: USA : Coronavirus -> les ventes de bi\u00e8res Corona s\u2019effondrent\nFrance - :","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ERaspiengeas","name":"Emmanuel - Raspiengeas","id":3025351647,"id_str":"3025351647","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1136047976688828419,"id_str":"1136047976688828419","name":"Gale","screen_name":"galesmind","location":"Bordeaux, - France","description":"\ud83c\udf4b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":97,"listed_count":0,"created_at":"Tue - Jun 04 23:11:59 +0000 2019","favourites_count":4675,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6080,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230970599805202437\/bZVfOLMN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230970599805202437\/bZVfOLMN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1136047976688828419\/1582321235","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 08:17:56 +0000 2020","id":1234754869300473856,"id_str":"1234754869300473856","text":"USA - : Coronavirus -> les ventes de bi\u00e8res Corona s\u2019effondrent\nFrance - : https:\/\/t.co\/KiW7UFKIIj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KiW7UFKIIj","expanded_url":"https:\/\/twitter.com\/J_Lachasse\/status\/1234754536566337536","display_url":"twitter.com\/J_Lachasse\/sta\u2026","indices":[74,97]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3025351647,"id_str":"3025351647","name":"Emmanuel - Raspiengeas","screen_name":"ERaspiengeas","location":"","description":"Anarchiste - \u00e9pris d''amour\nFolliculaire et m\u00e9tayer de la culture \u00e0 @RevuePositif - @ARTEfr @BAPmag. Sans peur et sans Desproges. Mes tweets s''engagent \u00e0 - double-sens","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1778,"friends_count":1157,"listed_count":35,"created_at":"Sun - Feb 08 19:01:09 +0000 2015","favourites_count":6696,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8863,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/810483064736514048\/tRpNyAZw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/810483064736514048\/tRpNyAZw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3025351647\/1577648007","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234754536566337536,"quoted_status_id_str":"1234754536566337536","quoted_status":{"created_at":"Tue - Mar 03 08:16:36 +0000 2020","id":1234754536566337536,"id_str":"1234754536566337536","text":"Coronavirus: - les ventes de La Peste de Camus bondissent https:\/\/t.co\/A7zhdTbbGw via - @BFMTV https:\/\/t.co\/yjVcVZoCS1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BFMTV","name":"BFMTV","id":133663801,"id_str":"133663801","indices":[84,90]}],"urls":[{"url":"https:\/\/t.co\/A7zhdTbbGw","expanded_url":"https:\/\/www.bfmtv.com\/culture\/coronavirus-les-ventes-de-la-peste-de-camus-bondissent-1867892.html","display_url":"bfmtv.com\/culture\/corona\u2026","indices":[56,79]}],"media":[{"id":1234754529117245440,"id_str":"1234754529117245440","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESK6s8TWkAA9ICJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESK6s8TWkAA9ICJ.jpg","url":"https:\/\/t.co\/yjVcVZoCS1","display_url":"pic.twitter.com\/yjVcVZoCS1","expanded_url":"https:\/\/twitter.com\/J_Lachasse\/status\/1234754536566337536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":728,"h":1200,"resize":"fit"},"small":{"w":412,"h":680,"resize":"fit"},"large":{"w":1242,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234754529117245440,"id_str":"1234754529117245440","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESK6s8TWkAA9ICJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESK6s8TWkAA9ICJ.jpg","url":"https:\/\/t.co\/yjVcVZoCS1","display_url":"pic.twitter.com\/yjVcVZoCS1","expanded_url":"https:\/\/twitter.com\/J_Lachasse\/status\/1234754536566337536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":728,"h":1200,"resize":"fit"},"small":{"w":412,"h":680,"resize":"fit"},"large":{"w":1242,"h":2048,"resize":"fit"}}},{"id":1234754529142415360,"id_str":"1234754529142415360","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESK6s8ZWoAASUD9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESK6s8ZWoAASUD9.jpg","url":"https:\/\/t.co\/yjVcVZoCS1","display_url":"pic.twitter.com\/yjVcVZoCS1","expanded_url":"https:\/\/twitter.com\/J_Lachasse\/status\/1234754536566337536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":311,"h":512,"resize":"fit"},"small":{"w":311,"h":512,"resize":"fit"},"medium":{"w":311,"h":512,"resize":"fit"}}},{"id":1234754529138221057,"id_str":"1234754529138221057","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESK6s8YWoAEddJr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESK6s8YWoAEddJr.jpg","url":"https:\/\/t.co\/yjVcVZoCS1","display_url":"pic.twitter.com\/yjVcVZoCS1","expanded_url":"https:\/\/twitter.com\/J_Lachasse\/status\/1234754536566337536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":716,"h":1200,"resize":"fit"},"large":{"w":1222,"h":2048,"resize":"fit"},"small":{"w":406,"h":680,"resize":"fit"}}},{"id":1234754529117208576,"id_str":"1234754529117208576","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ESK6s8TWAAAClaB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESK6s8TWAAAClaB.jpg","url":"https:\/\/t.co\/yjVcVZoCS1","display_url":"pic.twitter.com\/yjVcVZoCS1","expanded_url":"https:\/\/twitter.com\/J_Lachasse\/status\/1234754536566337536\/photo\/1","type":"photo","sizes":{"medium":{"w":800,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":864,"h":1296,"resize":"fit"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1354253292,"id_str":"1354253292","name":"J\u00e9r\u00f4me - Lachasse","screen_name":"J_Lachasse","location":"Paris, France","description":"Journaliste - @BFMTV_People, @BFMTV & @BFMParis #Culture #Cin\u00e9ma #BD","url":"https:\/\/t.co\/rxkWPshhOx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rxkWPshhOx","expanded_url":"http:\/\/people.bfmtv.com","display_url":"people.bfmtv.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1944,"friends_count":893,"listed_count":62,"created_at":"Mon - Apr 15 12:40:28 +0000 2013","favourites_count":13738,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15518,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3555354573\/7a7aa6e6fa217a06206e723a4ecf87e5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3555354573\/7a7aa6e6fa217a06206e723a4ecf87e5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1354253292\/1414612839","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":108,"favorite_count":308,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ca"},"retweet_count":837,"favorite_count":2102,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1234754536566337536,"quoted_status_id_str":"1234754536566337536","retweet_count":837,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634878078980,"id_str":"1234895634878078980","text":"RT - @TheDailyEdge: Other countries may have produced millions of Coronavirus testing - kits, but we got a Space Force logo, so who''s the real\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheDailyEdge","name":"The - Daily Edge","id":179732982,"id_str":"179732982","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9279722,"id_str":"9279722","name":"MaryLovesVeg - \u24cb","screen_name":"MaryLovesVeg","location":"Ohio, USA","description":"Personal - account. My daughter is a survivor. #MeTooK12 #Vegan #ProChoice #SocialJustice - #feminist #LGBTQally \ud83c\udff3\ufe0f\u200d\ud83c\udf08 #BlackLivesMatter - \ud83c\uddf0\ud83c\uddea #Bernie2020","url":"https:\/\/t.co\/HN25OTe63F","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HN25OTe63F","expanded_url":"http:\/\/Instagram.com\/MaryLovesVeg\/","display_url":"Instagram.com\/MaryLovesVeg\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":568,"friends_count":1006,"listed_count":30,"created_at":"Sat - Oct 06 14:00:11 +0000 2007","favourites_count":98330,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":36363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BCD1C1","profile_background_image_url":"http:\/\/abs.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\/1002966913914494976\/U5juMVVs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1002966913914494976\/U5juMVVs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9279722\/1502661890","profile_link_color":"277828","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"8884DD","profile_text_color":"9474CF","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:35:24 +0000 2020","id":1234895163421593600,"id_str":"1234895163421593600","text":"Other - countries may have produced millions of Coronavirus testing kits, but we got - a Space Force logo, so who''s the\u2026 https:\/\/t.co\/VJ4idZd59z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VJ4idZd59z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895163421593600","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":179732982,"id_str":"179732982","name":"The - Daily Edge","screen_name":"TheDailyEdge","location":"","description":"Focusing - on Trump''s and the GOP''s #corruption, #cheating and #conning because losing - in 2020 is not an option. I also write Unprecedented on Substack. Try free:","url":"https:\/\/t.co\/zWtivHiNRa","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zWtivHiNRa","expanded_url":"http:\/\/thedailyedge.substack.com","display_url":"thedailyedge.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":184794,"friends_count":136560,"listed_count":3141,"created_at":"Wed - Aug 18 00:29:10 +0000 2010","favourites_count":18569,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82528,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"811A8A","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\/655073745510510592\/FX6VgfRw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655073745510510592\/FX6VgfRw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/179732982\/1577760243","profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1220821545746141187,"quoted_status_id_str":"1220821545746141187","quoted_status":{"created_at":"Fri - Jan 24 21:31:52 +0000 2020","id":1220821545746141187,"id_str":"1220821545746141187","text":"After - consultation with our Great Military Leaders, designers, and others, I am - pleased to present the new logo for\u2026 https:\/\/t.co\/orSA6FGnTg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/orSA6FGnTg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1220821545746141187","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25073877,"id_str":"25073877","name":"Donald - J. Trump","screen_name":"realDonaldTrump","location":"Washington, DC","description":"45th - President of the United States of America\ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/OMxB0x7xC5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OMxB0x7xC5","expanded_url":"http:\/\/www.Instagram.com\/realDonaldTrump","display_url":"Instagram.com\/realDonaldTrump","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":73325085,"friends_count":47,"listed_count":115420,"created_at":"Wed - Mar 18 13:46:38 +0000 2009","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":49481,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"6D5C18","profile_background_image_url":"http:\/\/abs.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\/874276197357596672\/kUuht00m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874276197357596672\/kUuht00m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25073877\/1583212785","profile_link_color":"1B95E0","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"C5CEC0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41022,"favorite_count":175145,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1220821545746141187,"quoted_status_id_str":"1220821545746141187","retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634873880577,"id_str":"1234895634873880577","text":"RT - @CoronaVirusNe10: \ud83e\udda0BREAKING: Florida announces 3rd case of coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CoronaVirusNe10","name":"COVID-19 - News \ud83d\uddef","id":1224937363421442048,"id_str":"1224937363421442048","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1233714887647539201,"id_str":"1233714887647539201","name":"Corona\u00dcberall","screen_name":"CoronaUberall","location":"Europe - ","description":"Pacifist, critical mind, human","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":250,"listed_count":0,"created_at":"Sat - Feb 29 11:25:50 +0000 2020","favourites_count":667,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1306,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233720252531453953\/hHgli_tH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233720252531453953\/hHgli_tH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1233714887647539201\/1582976805","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:36:06 +0000 2020","id":1234895337279627264,"id_str":"1234895337279627264","text":"\ud83e\udda0BREAKING: - Florida announces 3rd case of coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1224937363421442048,"id_str":"1224937363421442048","name":"COVID-19 - News \ud83d\uddef","screen_name":"CoronaVirusNe10","location":"","description":"Helping - keep track of current breaking news from trusted sources and news agency\u2019s.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":282,"friends_count":9,"listed_count":3,"created_at":"Wed - Feb 05 06:06:49 +0000 2020","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":287,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231235572213129217\/IIGkvkO0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231235572213129217\/IIGkvkO0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634655797248,"id_str":"1234895634655797248","text":"RT - @RTPNoticias: Covid-19. Mais dois casos confirmados em Portugal https:\/\/t.co\/qB020amK2q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RTPNoticias","name":"RTPNot\u00edcias","id":16451028,"id_str":"16451028","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/qB020amK2q","expanded_url":"https:\/\/www.rtp.pt\/noticias\/pais\/covid-19-a-situacao-ao-minuto-do-novo-coronavirus-no-pais-e-no-mundo_e1209055","display_url":"rtp.pt\/noticias\/pais\/\u2026","indices":[68,91]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292874799,"id_str":"292874799","name":"Rafael","screen_name":"rafajustthat","location":"Reino - Unido","description":"Father \/ Football Lover \/ Betfair Trader \/ Crypto - Enthusiast & Hodler #xrp #eth #btc #trx","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":664,"friends_count":1479,"listed_count":7,"created_at":"Wed - May 04 11:32:21 +0000 2011","favourites_count":1572,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3289,"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\/952881301014577152\/iE71BCk7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/952881301014577152\/iE71BCk7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292874799\/1579998859","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:13:26 +0000 2020","id":1234889635756695562,"id_str":"1234889635756695562","text":"Covid-19. - Mais dois casos confirmados em Portugal https:\/\/t.co\/qB020amK2q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qB020amK2q","expanded_url":"https:\/\/www.rtp.pt\/noticias\/pais\/covid-19-a-situacao-ao-minuto-do-novo-coronavirus-no-pais-e-no-mundo_e1209055","display_url":"rtp.pt\/noticias\/pais\/\u2026","indices":[51,74]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"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,"user":{"id":16451028,"id_str":"16451028","name":"RTPNot\u00edcias","screen_name":"RTPNoticias","location":"Portugal","description":"Informa\u00e7\u00e3o - da RTP no Twitter","url":"https:\/\/t.co\/SpWUZgzXh3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SpWUZgzXh3","expanded_url":"http:\/\/noticias.rtp.pt","display_url":"noticias.rtp.pt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":334690,"friends_count":217,"listed_count":1200,"created_at":"Thu - Sep 25 14:04:49 +0000 2008","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":59719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/776060252559138816\/zeWcQXFg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/776060252559138816\/zeWcQXFg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16451028\/1473862175","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive":false,"lang":"pt"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634563575810,"id_str":"1234895634563575810","text":"RT - @love4thegameAK: \ud83d\udc40\ud83d\udc40\n\nFed makes emergency rate cut - to combat coronavirus fallout\n\nThe\u00a0Federal Reserve\u00a0slashed interest - rates Tues\u00a0to cush\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"love4thegameAK","name":"Steven - Lundgren","id":3155188814,"id_str":"3155188814","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1087483776,"id_str":"1087483776","name":"DanielM.","screen_name":"DanielManning18","location":"Texas, - USA","description":"Good dude!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":207,"friends_count":541,"listed_count":0,"created_at":"Sun - Jan 13 23:22:56 +0000 2013","favourites_count":36612,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28415,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1054817747845099521\/Laf1w2_o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1054817747845099521\/Laf1w2_o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1087483776\/1481508396","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:34:53 +0000 2020","id":1234895030902390784,"id_str":"1234895030902390784","text":"\ud83d\udc40\ud83d\udc40\n\nFed - makes emergency rate cut to combat coronavirus fallout\n\nThe\u00a0Federal - Reserve\u00a0slashed interest rates Tues\u00a0to\u2026 https:\/\/t.co\/taTBpkDRI1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/taTBpkDRI1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895030902390784","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3155188814,"id_str":"3155188814","name":"Steven - Lundgren","screen_name":"love4thegameAK","location":"#BeThePlan #StopTrafficking","description":"Awakened - Christ follower. Loving husband of the best half of me, my wife Marcy. Alaskan - born, Sports\/News fanatic 1 John 4. God is Love. Q Patriot\ud83c\uddfa\ud83c\uddf8\ud83c\udf0d#WWG1WGA","url":"https:\/\/t.co\/A5iqkCDd9V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A5iqkCDd9V","expanded_url":"https:\/\/youtu.be\/Xq-knHXSKYY","display_url":"youtu.be\/Xq-knHXSKYY","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46786,"friends_count":46820,"listed_count":99,"created_at":"Tue - Apr 14 07:49:18 +0000 2015","favourites_count":340834,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":67875,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1085921601562894336\/d8qBeE2e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1085921601562894336\/d8qBeE2e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3155188814\/1561926198","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":7,"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"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634475442181,"id_str":"1234895634475442181","text":"Nipped - into B&M after work for a couple of bits & it looked like they had - sold out of hand wash & gel. Woman behind\u2026 https:\/\/t.co\/UHNDaZYy0S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UHNDaZYy0S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895634475442181","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[129,152]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":476075504,"id_str":"476075504","name":"Si\u00e2n - Patrick","screen_name":"sianpatrick","location":"Mirfield, England","description":"Huddersfield - Town fan living with a Leeds fan \ud83e\udd26\u200d\u2640\ufe0f\nBit of a - gym nutter. Likes eating out & gin. Always got a gig booked! \nViews my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":845,"friends_count":862,"listed_count":14,"created_at":"Fri - Jan 27 18:59:49 +0000 2012","favourites_count":4825,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17102,"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\/499272392791687170\/x-Xf4yuF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499272392791687170\/x-Xf4yuF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/476075504\/1477341061","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634467037184,"id_str":"1234895634467037184","text":"RT - @Education4Libs: The left thinks Trump is calling the Coronavirus a \u201choax.\u201d\n\nWrong.\n\nHe\u2019s - calling the fear-mongering by the Dems & the F\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Education4Libs","name":"Educating - Liberals","id":817661098988019712,"id_str":"817661098988019712","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1215057306423111680,"id_str":"1215057306423111680","name":"Amy - Brown","screen_name":"OwnedByABeagle","location":"Alabama the Beautiful!","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":14,"listed_count":0,"created_at":"Wed - Jan 08 23:47:17 +0000 2020","favourites_count":255,"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:\/\/pbs.twimg.com\/profile_images\/1215433264384507904\/1ZUcjQvW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215433264384507904\/1ZUcjQvW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1215057306423111680\/1578616848","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 03:04:42 +0000 2020","id":1234676043421585408,"id_str":"1234676043421585408","text":"The - left thinks Trump is calling the Coronavirus a \u201choax.\u201d\n\nWrong.\n\nHe\u2019s - calling the fear-mongering by the Dems & t\u2026 https:\/\/t.co\/Ft7eCdhSOw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ft7eCdhSOw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234676043421585408","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":817661098988019712,"id_str":"817661098988019712","name":"Educating - Liberals","screen_name":"Education4Libs","location":"Minnesota, USA","description":"Digital - soldier. Followed by @GenFlynn. Mentioned by Q. Retweeted by Trump. Shadowbanned - by Twitter. #WWG1WGA \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/rW7JqtLh0G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rW7JqtLh0G","expanded_url":"http:\/\/Patreon.com\/E4L","display_url":"Patreon.com\/E4L","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":477784,"friends_count":280124,"listed_count":2129,"created_at":"Sat - Jan 07 09:16:12 +0000 2017","favourites_count":130074,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9378,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127981592696115202\/WBcMbFd-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127981592696115202\/WBcMbFd-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/817661098988019712\/1563879746","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1964,"favorite_count":5703,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1964,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634462859271,"id_str":"1234895634462859271","text":"AMPLIACI\u00d3N - \ud83d\udd34 En Asturias se han investigado un total de 63 casos por el nuevo - coronavirus https:\/\/t.co\/5TP0XMVdpG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5TP0XMVdpG","expanded_url":"https:\/\/www.lne.es\/sociedad\/2020\/03\/03\/asturias-han-investigado-total-58\/2607148.html","display_url":"lne.es\/sociedad\/2020\/\u2026","indices":[90,113]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":22914352,"id_str":"22914352","name":"La - Nueva Espa\u00f1a","screen_name":"lanuevaespana","location":"Asturias","description":"Toda - la actualidad de Asturias.\n\ud83d\udcbb FB https:\/\/t.co\/5SOCcd43xU\n\ud83d\udcf8 - Instagram https:\/\/t.co\/MutEcZKmm1\nTelegram https:\/\/t.co\/hX7AapitZx","url":"http:\/\/t.co\/5cYJzw5t12","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/5cYJzw5t12","expanded_url":"http:\/\/www.lne.es","display_url":"lne.es","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/5SOCcd43xU","expanded_url":"https:\/\/www.facebook.com\/nuevaespana\/","display_url":"facebook.com\/nuevaespana\/","indices":[38,61]},{"url":"https:\/\/t.co\/MutEcZKmm1","expanded_url":"https:\/\/bit.ly\/33nFxdI","display_url":"bit.ly\/33nFxdI","indices":[74,97]},{"url":"https:\/\/t.co\/hX7AapitZx","expanded_url":"https:\/\/telegram.me\/LNE_bot?start=alta","display_url":"telegram.me\/LNE_bot?start=\u2026","indices":[107,130]}]}},"protected":false,"followers_count":152808,"friends_count":601,"listed_count":1732,"created_at":"Thu - Mar 05 12:48:27 +0000 2009","favourites_count":35,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":152029,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199201971376467968\/T4PaRcM1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199201971376467968\/T4PaRcM1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22914352\/1546431857","profile_link_color":"19CF86","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBE8E1","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"},"geo":null,"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"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634412589058,"id_str":"1234895634412589058","text":"RT - @B52Malmet: #B52Questions 1. Why is Rudy not under arrest? 2. Why is Harvey - not in Riker\u2019s? 3. Why is Cuccinelli still working? 4. Has B\u2026","truncated":false,"entities":{"hashtags":[{"text":"B52Questions","indices":[15,28]}],"symbols":[],"user_mentions":[{"screen_name":"B52Malmet","name":"Barbara - Malmet","id":2876041031,"id_str":"2876041031","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887148163,"id_str":"887148163","name":"Katty - McCatnip \u270a\ud83c\udffb\u262e\ufe0f\ud83c\udf0a\ud83c\uddfa\ud83c\uddf8\ud83c\udd98","screen_name":"PensiveMusings","location":"Go - Gators! Florida, USA","description":"\ud83d\ude21 liberal fighting for democracy - until justice for ALL is served. \ud83d\ude4f\ud83c\udffb our Constitution - will endure during this blemish in \ud83c\uddfa\ud83c\uddf8 history. #RESIST - #TheResistance","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":430,"friends_count":863,"listed_count":0,"created_at":"Wed - Oct 17 16:31:18 +0000 2012","favourites_count":19581,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27566,"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\/835331199438635008\/NYMjSCo0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/835331199438635008\/NYMjSCo0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887148163\/1563794669","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:06:29 +0000 2020","id":1234887886354382849,"id_str":"1234887886354382849","text":"#B52Questions - 1. Why is Rudy not under arrest? 2. Why is Harvey not in Riker\u2019s? 3. - Why is Cuccinelli still working?\u2026 https:\/\/t.co\/CYgyFcRYOH","truncated":true,"entities":{"hashtags":[{"text":"B52Questions","indices":[0,13]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CYgyFcRYOH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234887886354382849","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2876041031,"id_str":"2876041031","name":"Barbara - Malmet","screen_name":"B52Malmet","location":"New York, NY","description":"Artist, - Activist, TriAthlete, Producer- The democracy you save is your own. #ProtectTheFreePress - #WomensRightsAreHumanRights","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":157274,"friends_count":6798,"listed_count":376,"created_at":"Fri - Nov 14 05:18:51 +0000 2014","favourites_count":655821,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":291641,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876041031\/1579491738","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":400,"favorite_count":905,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":400,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634387230721,"id_str":"1234895634387230721","text":"RT - @MMineiro_CNS: Coronavirus has landed the Trump admin in court...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MMineiro_CNS","name":"Megan - Mineiro","id":989018240775942145,"id_str":"989018240775942145","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":319117239,"id_str":"319117239","name":"Call - Your MoC","screen_name":"marlojen","location":"","description":"No person - is illegal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":345,"friends_count":647,"listed_count":18,"created_at":"Fri - Jun 17 15:52:07 +0000 2011","favourites_count":35205,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":160767,"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\/847165142240411648\/1T09xQaC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/847165142240411648\/1T09xQaC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/319117239\/1366989648","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 00:19:17 +0000 2020","id":1234634415537557509,"id_str":"1234634415537557509","text":"Coronavirus - has landed the Trump admin in court... https:\/\/t.co\/8b4rU6KVhe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8b4rU6KVhe","expanded_url":"https:\/\/twitter.com\/cucumbermarg\/status\/1234624112615665666","display_url":"twitter.com\/cucumbermarg\/s\u2026","indices":[51,74]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":989018240775942145,"id_str":"989018240775942145","name":"Megan - Mineiro","screen_name":"MMineiro_CNS","location":"Washington, DC","description":"Reporter - @CourthouseNews covering DC federal courts plus up on the Hill from time to - time wdc@courthousenews.com | DM for Signal [fmr @pacbiztimes @dailynexus]","url":"https:\/\/t.co\/giiObPwgip","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/giiObPwgip","expanded_url":"https:\/\/muckrack.com\/megan-mineiro\/articles","display_url":"muckrack.com\/megan-mineiro\/\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20837,"friends_count":658,"listed_count":230,"created_at":"Wed - Apr 25 05:48:18 +0000 2018","favourites_count":733,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2152,"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\/1108945073293553664\/TN8epq1a_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1108945073293553664\/TN8epq1a_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/989018240775942145\/1559317067","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234624112615665666,"quoted_status_id_str":"1234624112615665666","quoted_status":{"created_at":"Mon - Mar 02 23:38:21 +0000 2020","id":1234624112615665666,"id_str":"1234624112615665666","text":"BREAKING: - San Antonio & its mayor just sued the CDC & other agencies over the - release of a Wuhan evacuee into SA af\u2026 https:\/\/t.co\/8ZDFpWCc8I","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8ZDFpWCc8I","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234624112615665666","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[125,148]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":993028193488654336,"id_str":"993028193488654336","name":"daniel - conrad","screen_name":"cucumbermarg","location":"San Antonio, TX","description":"legal - journalist @courthousenews.com, freelance word nerd, member of @studyhallxyz.\nhe, - him.\ntryna figure out quid est dulce et decorum.","url":"https:\/\/t.co\/m2oazBgG83","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m2oazBgG83","expanded_url":"https:\/\/dconrad.me","display_url":"dconrad.me","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":679,"friends_count":2471,"listed_count":11,"created_at":"Sun - May 06 07:22:25 +0000 2018","favourites_count":27027,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2703,"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\/1196316179595505665\/V9wFsxeE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196316179595505665\/V9wFsxeE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993028193488654336\/1541875373","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":462,"favorite_count":844,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":360,"favorite_count":589,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234624112615665666,"quoted_status_id_str":"1234624112615665666","retweet_count":360,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634357985287,"id_str":"1234895634357985287","text":"RT - @24HorasTVN: \u2b55 Confirmaron el primer caso de coronavirus en Argentina. - https:\/\/t.co\/qYrIsdHEhG https:\/\/t.co\/C8zjhMoGgd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"24HorasTVN","name":"24 - Horas","id":90227660,"id_str":"90227660","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/qYrIsdHEhG","expanded_url":"http:\/\/bit.ly\/2PJ7AzP","display_url":"bit.ly\/2PJ7AzP","indices":[74,97]}],"media":[{"id":1234895283957456896,"id_str":"1234895283957456896","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM6t88W4AAbxdX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM6t88W4AAbxdX.jpg","url":"https:\/\/t.co\/C8zjhMoGgd","display_url":"pic.twitter.com\/C8zjhMoGgd","expanded_url":"https:\/\/twitter.com\/24HorasTVN\/status\/1234895352182050816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":900,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":900,"h":900,"resize":"fit"}},"source_status_id":1234895352182050816,"source_status_id_str":"1234895352182050816","source_user_id":90227660,"source_user_id_str":"90227660"}]},"extended_entities":{"media":[{"id":1234895283957456896,"id_str":"1234895283957456896","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM6t88W4AAbxdX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM6t88W4AAbxdX.jpg","url":"https:\/\/t.co\/C8zjhMoGgd","display_url":"pic.twitter.com\/C8zjhMoGgd","expanded_url":"https:\/\/twitter.com\/24HorasTVN\/status\/1234895352182050816\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":900,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":900,"h":900,"resize":"fit"}},"source_status_id":1234895352182050816,"source_status_id_str":"1234895352182050816","source_user_id":90227660,"source_user_id_str":"90227660","video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/ESM6t88W4AAbxdX.mp4"}]}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":894063450359558144,"id_str":"894063450359558144","name":"Nestor - Opazo","screen_name":"opazo_nestor","location":"","description":"Estudiante - Derecho U. de. Santiago , liberal cl\u00e1sico \n\ninstagram : https:\/\/t.co\/ZneOu4u1py","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/ZneOu4u1py","expanded_url":"https:\/\/www.instagram.com\/nestor.opazo","display_url":"instagram.com\/nestor.opazo","indices":[68,91]}]}},"protected":false,"followers_count":92,"friends_count":728,"listed_count":0,"created_at":"Sun - Aug 06 05:11:52 +0000 2017","favourites_count":3963,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":390,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1099228088951627776\/0TJ02Z6y_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1099228088951627776\/0TJ02Z6y_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/894063450359558144\/1550911464","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:36:09 +0000 2020","id":1234895352182050816,"id_str":"1234895352182050816","text":"\u2b55 - Confirmaron el primer caso de coronavirus en Argentina. https:\/\/t.co\/qYrIsdHEhG - https:\/\/t.co\/C8zjhMoGgd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qYrIsdHEhG","expanded_url":"http:\/\/bit.ly\/2PJ7AzP","display_url":"bit.ly\/2PJ7AzP","indices":[58,81]}],"media":[{"id":1234895283957456896,"id_str":"1234895283957456896","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM6t88W4AAbxdX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM6t88W4AAbxdX.jpg","url":"https:\/\/t.co\/C8zjhMoGgd","display_url":"pic.twitter.com\/C8zjhMoGgd","expanded_url":"https:\/\/twitter.com\/24HorasTVN\/status\/1234895352182050816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":900,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":900,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234895283957456896,"id_str":"1234895283957456896","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM6t88W4AAbxdX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM6t88W4AAbxdX.jpg","url":"https:\/\/t.co\/C8zjhMoGgd","display_url":"pic.twitter.com\/C8zjhMoGgd","expanded_url":"https:\/\/twitter.com\/24HorasTVN\/status\/1234895352182050816\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":900,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":900,"h":900,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/ESM6t88W4AAbxdX.mp4"}]}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":90227660,"id_str":"90227660","name":"24 - Horas","screen_name":"24HorasTVN","location":"Santiago, Chile","description":"Inf\u00f3rmate - con la plataforma online del departamento de prensa de Televisi\u00f3n Nacional - de Chile. S\u00edguenos tambi\u00e9n en https:\/\/t.co\/PFGGq0LSNW","url":"https:\/\/t.co\/ctat0VWs4T","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ctat0VWs4T","expanded_url":"http:\/\/www.24horas.cl","display_url":"24horas.cl","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/PFGGq0LSNW","expanded_url":"http:\/\/Facebook.com\/24horas.cl","display_url":"Facebook.com\/24horas.cl","indices":[115,138]}]}},"protected":false,"followers_count":3593430,"friends_count":409,"listed_count":7995,"created_at":"Sun - Nov 15 19:23:17 +0000 2009","favourites_count":2549,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":678713,"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\/1105493887714508801\/_XSw2yUR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1105493887714508801\/_XSw2yUR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90227660\/1519920429","profile_link_color":"9B0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E3E3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634324492295,"id_str":"1234895634324492295","text":"RT - @1prof2lettres: Les feuilles rendues par les \u00e9l\u00e8ves pouvant \u00eatre - contamin\u00e9es par le coronavirus, les enseignants sont d\u00e9sormais tenus - de\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"1prof2lettres","name":"\ud83d\udc25 - CanardJaune \ud83d\udc24","id":88388289,"id_str":"88388289","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":980009147344269312,"id_str":"980009147344269312","name":"Msieur - (provisoirement en gr\u00e8ve, 0,1 %)","screen_name":"pr0f2m4ths","location":"Paris, - France","description":"Prof de maths en lyc\u00e9e. Avant en coll\u00e8ge - ZEP, lyc\u00e9e technologique, coll\u00e8ge REP+","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":264,"listed_count":0,"created_at":"Sat - Mar 31 09:09:23 +0000 2018","favourites_count":374,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10272,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/980088191196778496\/8MB8Oh35_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/980088191196778496\/8MB8Oh35_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/980009147344269312\/1581365107","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:26:08 +0000 2020","id":1234877729213997057,"id_str":"1234877729213997057","text":"Les - feuilles rendues par les \u00e9l\u00e8ves pouvant \u00eatre contamin\u00e9es - par le coronavirus, les enseignants sont d\u00e9sormais ten\u2026 https:\/\/t.co\/PK0A8rJEPT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PK0A8rJEPT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234877729213997057","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":88388289,"id_str":"88388289","name":"\ud83d\udc25 - CanardJaune \ud83d\udc24","screen_name":"1prof2lettres","location":"3 rue - des potiers","description":"Dipl\u00f4m\u00e9 des Hautes \u00c9tudes Inutiles. - Dentiste pour poules (sur RDV)\nMes performances pass\u00e9es ne sont pas - un indicateur fiable de mes performances futures.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18631,"friends_count":4765,"listed_count":278,"created_at":"Sun - Nov 08 09:45:34 +0000 2009","favourites_count":15980,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":103995,"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\/1212701166540333056\/DCb2Fc3W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212701166540333056\/DCb2Fc3W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88388289\/1570813653","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":67,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634207059969,"id_str":"1234895634207059969","text":"@CBerthelot227 - @UrBetsyJean @JenniferJJacobs Another one who succumbed to TDS. Its more contagious - than the coronav\u2026 https:\/\/t.co\/CP0b0QyJtP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBerthelot227","name":"Mike","id":962422577472987142,"id_str":"962422577472987142","indices":[0,14]},{"screen_name":"UrBetsyJean","name":"Look, - Fat - Austere Scholar\ud83d\udc4c","id":1018869130106155009,"id_str":"1018869130106155009","indices":[15,27]},{"screen_name":"JenniferJJacobs","name":"Jennifer - Jacobs","id":15433452,"id_str":"15433452","indices":[28,44]}],"urls":[{"url":"https:\/\/t.co\/CP0b0QyJtP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895634207059969","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234894179299360768,"in_reply_to_status_id_str":"1234894179299360768","in_reply_to_user_id":962422577472987142,"in_reply_to_user_id_str":"962422577472987142","in_reply_to_screen_name":"CBerthelot227","user":{"id":802137370598457344,"id_str":"802137370598457344","name":"Rick''s - Cafe","screen_name":"SamPlayItAgain","location":"","description":"\"Its Still - the same old story, a fight for love and glory\"\nFather, Grandfather, Husband - (47 years). Conservative, MAGA.\nStudent of history, politics, culture","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":669,"friends_count":780,"listed_count":4,"created_at":"Fri - Nov 25 13:10:26 +0000 2016","favourites_count":3057,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17825,"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\/1231795726017007617\/afTEUnwC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231795726017007617\/afTEUnwC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/802137370598457344\/1572923708","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895634064388097,"id_str":"1234895634064388097","text":"RT - @RedWingGrips: House Democrats and the swamp in DC are trying to hold back - the Coronavirus funding as leverage for a clean FISA reauthor\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RedWingGrips","name":"Johnny - Deplorable \u25aa","id":1083551928821448710,"id_str":"1083551928821448710","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":34939588,"id_str":"34939588","name":"Barb - Furlich","screen_name":"Bfurlich","location":"","description":"\ud83d\udeabDM!! - Proud daughter of a WWII vet who fought in the Battle of the Bulge.\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8 - #MAGA #KAG\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8 Please donate to - @codeofvets","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2287,"friends_count":1827,"listed_count":0,"created_at":"Fri - Apr 24 14:34:24 +0000 2009","favourites_count":113437,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57174,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1210327370302930946\/ldfXDj7b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210327370302930946\/ldfXDj7b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34939588\/1577393604","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:03:55 +0000 2020","id":1234887239152394240,"id_str":"1234887239152394240","text":"House - Democrats and the swamp in DC are trying to hold back the Coronavirus funding - as leverage for a clean FISA re\u2026 https:\/\/t.co\/5BjAeUH6xV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5BjAeUH6xV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234887239152394240","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1083551928821448710,"id_str":"1083551928821448710","name":"Johnny - Deplorable \u25aa","screen_name":"RedWingGrips","location":"Over The Target","description":"Politics - \u25aa Snarky \u25aa Irish \u25aa 2-time bee sting survivor \u25aa Be the - hammer , not the nail \u25aa Pronouns \u25aa you\/you all\/y''all \u25aa Facebook - ~ Johnny Deplorable","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41137,"friends_count":28562,"listed_count":24,"created_at":"Fri - Jan 11 02:31:26 +0000 2019","favourites_count":34529,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39925,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232481471522320384\/Tvp827_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232481471522320384\/Tvp827_1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1083551928821448710\/1578341253","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":106,"favorite_count":89,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":106,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895633980329984,"id_str":"1234895633980329984","text":"RT - @WhoaShitsCrazyO: \ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\n\n#CoronaVirus\n#Covid_19 - \n#TrumpVirusCoverup \n#TrumpVirus \n#PandemicPence \n#Corona https:\/\/t.co\/pgigdw\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[39,51]},{"text":"Covid_19","indices":[52,61]},{"text":"TrumpVirusCoverup","indices":[63,81]},{"text":"TrumpVirus","indices":[83,94]},{"text":"PandemicPence","indices":[96,110]},{"text":"Corona","indices":[112,119]}],"symbols":[],"user_mentions":[{"screen_name":"WhoaShitsCrazyO","name":"K.Whoa","id":1191494986577002499,"id_str":"1191494986577002499","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":850063021858852864,"id_str":"850063021858852864","name":"Cassandra - A Harmon","screen_name":"CassandraAHarm1","location":"Seattle, WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":422,"friends_count":1000,"listed_count":0,"created_at":"Thu - Apr 06 19:09:52 +0000 2017","favourites_count":29854,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12021,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:36:18 +0000 2020","id":1234895387439198208,"id_str":"1234895387439198208","text":"\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\ud83e\udd26\ud83c\udffb\n\n#CoronaVirus\n#Covid_19 - \n#TrumpVirusCoverup \n#TrumpVirus \n#PandemicPence \n#Corona https:\/\/t.co\/pgigdwFQQY","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[18,30]},{"text":"Covid_19","indices":[31,40]},{"text":"TrumpVirusCoverup","indices":[42,60]},{"text":"TrumpVirus","indices":[62,73]},{"text":"PandemicPence","indices":[75,89]},{"text":"Corona","indices":[91,98]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234895381164675072,"id_str":"1234895381164675072","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM6znEXUAAn7tx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM6znEXUAAn7tx.jpg","url":"https:\/\/t.co\/pgigdwFQQY","display_url":"pic.twitter.com\/pgigdwFQQY","expanded_url":"https:\/\/twitter.com\/WhoaShitsCrazyO\/status\/1234895387439198208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":946,"h":1568,"resize":"fit"},"small":{"w":410,"h":680,"resize":"fit"},"medium":{"w":724,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234895381164675072,"id_str":"1234895381164675072","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM6znEXUAAn7tx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM6znEXUAAn7tx.jpg","url":"https:\/\/t.co\/pgigdwFQQY","display_url":"pic.twitter.com\/pgigdwFQQY","expanded_url":"https:\/\/twitter.com\/WhoaShitsCrazyO\/status\/1234895387439198208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":946,"h":1568,"resize":"fit"},"small":{"w":410,"h":680,"resize":"fit"},"medium":{"w":724,"h":1200,"resize":"fit"}}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1191494986577002499,"id_str":"1191494986577002499","name":"K.Whoa","screen_name":"WhoaShitsCrazyO","location":"Portland, - OR","description":"Issa joke. Notta d!ck. Dont take it so hard. \ud83d\udc8b\n\n#EqualityForAll - #LGBTQ+ \ud83c\udf08\ud83e\udd84 Save the \ud83c\udf0e #BLM \u270a\ud83c\udfff\u270a\ud83c\udffe\u270a\ud83c\udffd GUN - REFORM NOW \ud83d\udcaf \ud83c\udf0a\ud83c\udf0aVOTE BLUE 2020\ud83c\udf0a\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6848,"friends_count":6682,"listed_count":4,"created_at":"Mon - Nov 04 23:18:45 +0000 2019","favourites_count":16401,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5645,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232790831666384896\/4JfqZm_D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232790831666384896\/4JfqZm_D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1191494986577002499\/1579274047","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"lang":"und"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895633959522304,"id_str":"1234895633959522304","text":"RT - @RyanAFournier: Disgusting.\n\nCouncilwoman Candi CdeBaca, an elected official - in Colorado, praised a Twitter post calling for Trump suppo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RyanAFournier","name":"Ryan - Fournier","id":166751745,"id_str":"166751745","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1337933976,"id_str":"1337933976","name":"jeananimal\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f","screen_name":"jeananimal","location":"","description":"No - Direct Messages please. Married to Brian for 30 years, Conservative, dog lover, - 3 adult children.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1335,"friends_count":1939,"listed_count":9,"created_at":"Tue - Apr 09 00:32:02 +0000 2013","favourites_count":41695,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34873,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1172557991926804480\/e75Uucqu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172557991926804480\/e75Uucqu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1337933976\/1370046963","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:27:23 +0000 2020","id":1234878043887472640,"id_str":"1234878043887472640","text":"Disgusting.\n\nCouncilwoman - Candi CdeBaca, an elected official in Colorado, praised a Twitter post calling - for Trump\u2026 https:\/\/t.co\/jgtcHl8eu2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jgtcHl8eu2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234878043887472640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166751745,"id_str":"166751745","name":"Ryan - Fournier","screen_name":"RyanAFournier","location":"Washington, DC & Raleigh, - NC","description":"Founder and Co-Chairman of @TrumpStudents \/ Turning Point - Action \/ Ephesians 4:32 \ud83d\udce7 press@ryanfournier.com","url":"https:\/\/t.co\/usg47s1iyY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/usg47s1iyY","expanded_url":"http:\/\/instagram.com\/ryanafournier","display_url":"instagram.com\/ryanafournier","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":818466,"friends_count":320297,"listed_count":2804,"created_at":"Wed - Jul 14 22:44:56 +0000 2010","favourites_count":25463,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12706,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"303D5D","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\/1171465484450947076\/0RgZ2Kac_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171465484450947076\/0RgZ2Kac_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166751745\/1580000339","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C5D1","profile_text_color":"D4443F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1695,"favorite_count":3439,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1695,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895633934422016,"id_str":"1234895633934422016","text":"RT - @goalv13: Pour ceux qui continuent avec \"le coronavirus c''est comme la grippe\". - R\u00e9sum\u00e9 en Italie : \n- Grippe : 6 Millions de cas depuis\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"goalv13","name":"GOALV","id":975386882296242176,"id_str":"975386882296242176","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2291472960,"id_str":"2291472960","name":"Mimi","screen_name":"AndWhatElseKnow","location":"","description":"R\u00e9solument - de gauche mais surtout pas encart\u00e9e, je vais o\u00f9 m''am\u00e8nent - mes propres convictions. Anticapitalisme, \u00e9cologie, la\u00efcit\u00e9, - d\u00e9fense des animaux.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":344,"friends_count":637,"listed_count":1,"created_at":"Tue - Jan 14 17:47:28 +0000 2014","favourites_count":17423,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10402,"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\/1232586088339922944\/jFB72XAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232586088339922944\/jFB72XAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2291472960\/1566659628","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:25:57 +0000 2020","id":1234892785641238528,"id_str":"1234892785641238528","text":"Pour - ceux qui continuent avec \"le coronavirus c''est comme la grippe\". R\u00e9sum\u00e9 - en Italie : \n- Grippe : 6 Millions de\u2026 https:\/\/t.co\/etUnAqGO9L","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/etUnAqGO9L","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234892785641238528","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":975386882296242176,"id_str":"975386882296242176","name":"GOALV","screen_name":"goalv13","location":"Aix-en-Provence, - France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":38,"listed_count":0,"created_at":"Sun - Mar 18 15:02:09 +0000 2018","favourites_count":107,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1068799498929999873\/KORUXRdH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1068799498929999873\/KORUXRdH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/975386882296242176\/1521671741","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895633930235907,"id_str":"1234895633930235907","text":"RT - @CNN: A Wuhan doctor from the same department as whistleblower doctor Li Wenliang - died from coronavirus on Tuesday, according to Wuhan C\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[3,7]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":743553354,"id_str":"743553354","name":"Alessio - S \ud83c\uddeb\ud83c\uddf7\ud83c\uddee\ud83c\uddf9\u2b50\ufe0f\u2b50\ufe0f","screen_name":"ptialex77","location":"","description":"20 - yo French and Italian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":246,"friends_count":4611,"listed_count":11,"created_at":"Tue - Aug 07 19:17:24 +0000 2012","favourites_count":19566,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28891,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1042991180399534080\/zkqzsDkh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1042991180399534080\/zkqzsDkh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743553354\/1537503714","profile_link_color":"FFCC4D","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 15:00:16 +0000 2020","id":1234856120239501315,"id_str":"1234856120239501315","text":"A - Wuhan doctor from the same department as whistleblower doctor Li Wenliang - died from coronavirus on Tuesday, accor\u2026 https:\/\/t.co\/eezUD1HJUX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eezUD1HJUX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234856120239501315","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":759251,"id_str":"759251","name":"CNN","screen_name":"CNN","location":"","description":"It\u2019s - our job to #GoThere & tell the most difficult stories. Join us! For more breaking - news updates follow @CNNBRK & Download our app https:\/\/t.co\/UCHG9M367J","url":"http:\/\/t.co\/IaghNW8Xm2","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/IaghNW8Xm2","expanded_url":"http:\/\/www.cnn.com","display_url":"cnn.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UCHG9M367J","expanded_url":"http:\/\/cnn.com\/apps","display_url":"cnn.com\/apps","indices":[135,158]}]}},"protected":false,"followers_count":45301354,"friends_count":1107,"listed_count":142586,"created_at":"Fri - Feb 09 00:35:02 +0000 2007","favourites_count":1432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":289125,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"323232","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508960761826131968\/LnvhR8ED_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508960761826131968\/LnvhR8ED_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/759251\/1564637377","profile_link_color":"004287","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EEEEEE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":265,"favorite_count":536,"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"},{"created_at":"Tue - Mar 03 17:37:17 +0000 2020","id":1234895633800204288,"id_str":"1234895633800204288","text":"Docteur - : vous \u00eates positif au coronavirus\n\n@_gxoni : https:\/\/t.co\/2KsRRwuoQ8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_gxoni","name":"xoni","id":721294048586280961,"id_str":"721294048586280961","indices":[44,51]}],"urls":[],"media":[{"id":1234895629349982208,"id_str":"1234895629349982208","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM7CDoWkAANAKM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM7CDoWkAANAKM.jpg","url":"https:\/\/t.co\/2KsRRwuoQ8","display_url":"pic.twitter.com\/2KsRRwuoQ8","expanded_url":"https:\/\/twitter.com\/___Clyde___\/status\/1234895633800204288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":326,"h":369,"resize":"fit"},"large":{"w":326,"h":369,"resize":"fit"},"medium":{"w":326,"h":369,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234895629349982208,"id_str":"1234895629349982208","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM7CDoWkAANAKM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM7CDoWkAANAKM.jpg","url":"https:\/\/t.co\/2KsRRwuoQ8","display_url":"pic.twitter.com\/2KsRRwuoQ8","expanded_url":"https:\/\/twitter.com\/___Clyde___\/status\/1234895633800204288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":326,"h":369,"resize":"fit"},"large":{"w":326,"h":369,"resize":"fit"},"medium":{"w":326,"h":369,"resize":"fit"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2924359542,"id_str":"2924359542","name":"viva - real madrid club de futbol","screen_name":"___Clyde___","location":"","description":"Tout - ce qui est sur Terre doit p\u00e9rir.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":154,"listed_count":0,"created_at":"Tue - Dec 09 19:45:36 +0000 2014","favourites_count":14344,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5650,"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\/1234723397109780483\/Fb85iK1P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234723397109780483\/Fb85iK1P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2924359542\/1580694196","profile_link_color":"822222","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"},"geo":null,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633749827590,"id_str":"1234895633749827590","text":"RT - @CuenteroMuisne: Propongo la campa\u00f1a c\u00edvica \u201cPUTEADA AL IGNORANTE - QUE ESCUPE EN LA CALLE\u201d, as\u00ed prevenimos un foco de contagio de coronav\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CuenteroMuisne","name":"Cuentero - de Muisne","id":3361771708,"id_str":"3361771708","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":235151490,"id_str":"235151490","name":"David - Sarango","screen_name":"Davo0128","location":"Quito","description":"Siempre - con la U","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":90,"listed_count":0,"created_at":"Fri - Jan 07 13:50:27 +0000 2011","favourites_count":1332,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1727,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1209478888\/David_002_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209478888\/David_002_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 14:28:02 +0000 2020","id":1234848010993098758,"id_str":"1234848010993098758","text":"Propongo - la campa\u00f1a c\u00edvica \u201cPUTEADA AL IGNORANTE QUE ESCUPE EN LA CALLE\u201d, - as\u00ed prevenimos un foco de contagio de cor\u2026 https:\/\/t.co\/39hyXXfOxZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/39hyXXfOxZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234848010993098758","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3361771708,"id_str":"3361771708","name":"Cuentero - de Muisne","screen_name":"CuenteroMuisne","location":"Muisne City","description":"Labioso - profesional. Pol\u00edtico amateur.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37809,"friends_count":57,"listed_count":85,"created_at":"Mon - Jul 06 02:41:48 +0000 2015","favourites_count":7325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3008,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618221893200572416\/7aao2o2P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618221893200572416\/7aao2o2P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3361771708\/1456781157","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":166,"favorite_count":515,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":166,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633678557185,"id_str":"1234895633678557185","text":"Brexit - sets UK apart on coronavirus https:\/\/t.co\/bwz6yuT8Kk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bwz6yuT8Kk","expanded_url":"https:\/\/www.politico.eu\/article\/brexit-sets-uk-apart-coronavirus-nhs-eu\/?utm_source=RSS_Feed&utm_medium=RSS&utm_campaign=RSS_Syndication","display_url":"politico.eu\/article\/brexit\u2026","indices":[36,59]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":522634225,"id_str":"522634225","name":"Brexit - Home","screen_name":"BrexitHome","location":"London","description":"The quickest - source of Brexit news and comment on the internet.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15088,"friends_count":7626,"listed_count":61,"created_at":"Mon - Mar 12 22:25:53 +0000 2012","favourites_count":1951,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49057,"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\/1158673423893237760\/GzservoC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158673423893237760\/GzservoC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/522634225\/1565083965","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"},"geo":null,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633619836930,"id_str":"1234895633619836930","text":"RT - @TopShotMilX2: Ebola after hearing about the coronavirus spreading and killing - everyone https:\/\/t.co\/LHRyLM1IFo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TopShotMilX2","name":"Jamil - \ud83d\udd78\u2744\ufe0f","id":2769334650,"id_str":"2769334650","indices":[3,16]}],"urls":[],"media":[{"id":1234639183920189440,"id_str":"1234639183920189440","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","url":"https:\/\/t.co\/LHRyLM1IFo","display_url":"pic.twitter.com\/LHRyLM1IFo","expanded_url":"https:\/\/twitter.com\/TopShotMilX2\/status\/1234639191943847941\/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":1234639191943847941,"source_status_id_str":"1234639191943847941","source_user_id":2769334650,"source_user_id_str":"2769334650"}]},"extended_entities":{"media":[{"id":1234639183920189440,"id_str":"1234639183920189440","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","url":"https:\/\/t.co\/LHRyLM1IFo","display_url":"pic.twitter.com\/LHRyLM1IFo","expanded_url":"https:\/\/twitter.com\/TopShotMilX2\/status\/1234639191943847941\/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":1234639191943847941,"source_status_id_str":"1234639191943847941","source_user_id":2769334650,"source_user_id_str":"2769334650","video_info":{"aspect_ratio":[16,9],"duration_millis":5200,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/pl\/6mjWpANBEORPBxk4.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/vid\/640x360\/zAeFQsat9xQptZKP.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/vid\/480x270\/d9x-MnSA525pdSN-.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2769334650,"id_str":"2769334650","name":"Jamil - \ud83d\udd78\u2744\ufe0f","screen_name":"TopShotMilX2","location":"Philly","description":"You - probably seeing my profile after seeing a funny tweet so just follow me for - more \ud83e\udd71\ud83e\udd71\ud83e\udd71","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9487,"friends_count":3000,"listed_count":9,"created_at":"Tue - Aug 26 07:22:52 +0000 2014","favourites_count":3074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2421,"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\/1232858099595300871\/A-2U2WSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232858099595300871\/A-2U2WSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2769334650\/1581910844","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":725851365294088192,"id_str":"725851365294088192","name":"RONALDNATION","screen_name":"TheRonaldNess","location":"","description":"Yes.\nFrom - now on, I will eat the Subway.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":219,"listed_count":0,"created_at":"Fri - Apr 29 00:57:05 +0000 2016","favourites_count":20146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17813,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224177016754376705\/QksXPe9R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224177016754376705\/QksXPe9R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/725851365294088192\/1555300372","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 00:38:16 +0000 2020","id":1234639191943847941,"id_str":"1234639191943847941","text":"Ebola - after hearing about the coronavirus spreading and killing everyone https:\/\/t.co\/LHRyLM1IFo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234639183920189440,"id_str":"1234639183920189440","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","url":"https:\/\/t.co\/LHRyLM1IFo","display_url":"pic.twitter.com\/LHRyLM1IFo","expanded_url":"https:\/\/twitter.com\/TopShotMilX2\/status\/1234639191943847941\/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":1234639183920189440,"id_str":"1234639183920189440","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","url":"https:\/\/t.co\/LHRyLM1IFo","display_url":"pic.twitter.com\/LHRyLM1IFo","expanded_url":"https:\/\/twitter.com\/TopShotMilX2\/status\/1234639191943847941\/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":5200,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/pl\/6mjWpANBEORPBxk4.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/vid\/640x360\/zAeFQsat9xQptZKP.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/vid\/480x270\/d9x-MnSA525pdSN-.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2769334650,"id_str":"2769334650","name":"Jamil - \ud83d\udd78\u2744\ufe0f","screen_name":"TopShotMilX2","location":"Philly","description":"You - probably seeing my profile after seeing a funny tweet so just follow me for - more \ud83e\udd71\ud83e\udd71\ud83e\udd71","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9487,"friends_count":3000,"listed_count":9,"created_at":"Tue - Aug 26 07:22:52 +0000 2014","favourites_count":3074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2421,"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\/1232858099595300871\/A-2U2WSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232858099595300871\/A-2U2WSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2769334650\/1581910844","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20361,"favorite_count":54010,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20361,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633565339653,"id_str":"1234895633565339653","text":"RT - @zerocalcare: \"Ma non hai scritto niente sul coronavirus?\" https:\/\/t.co\/OcLecbLIb1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zerocalcare","name":"zerocalcare","id":93618186,"id_str":"93618186","indices":[3,15]}],"urls":[],"media":[{"id":1234873536218574848,"id_str":"1234873536218574848","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMm8ETWsAAoP8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMm8ETWsAAoP8O.jpg","url":"https:\/\/t.co\/OcLecbLIb1","display_url":"pic.twitter.com\/OcLecbLIb1","expanded_url":"https:\/\/twitter.com\/zerocalcare\/status\/1234873543663476736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":810,"h":1145,"resize":"fit"},"small":{"w":481,"h":680,"resize":"fit"},"large":{"w":810,"h":1145,"resize":"fit"}},"source_status_id":1234873543663476736,"source_status_id_str":"1234873543663476736","source_user_id":93618186,"source_user_id_str":"93618186"}]},"extended_entities":{"media":[{"id":1234873536218574848,"id_str":"1234873536218574848","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMm8ETWsAAoP8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMm8ETWsAAoP8O.jpg","url":"https:\/\/t.co\/OcLecbLIb1","display_url":"pic.twitter.com\/OcLecbLIb1","expanded_url":"https:\/\/twitter.com\/zerocalcare\/status\/1234873543663476736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":810,"h":1145,"resize":"fit"},"small":{"w":481,"h":680,"resize":"fit"},"large":{"w":810,"h":1145,"resize":"fit"}},"source_status_id":1234873543663476736,"source_status_id_str":"1234873543663476736","source_user_id":93618186,"source_user_id_str":"93618186"}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":253102443,"id_str":"253102443","name":"\ud83c\udf19","screen_name":"silkspectred","location":"it - started with two men","description":"\u007b ambra | writer | she\/her | nsfw\/18+ - \u007d","url":"https:\/\/t.co\/7WxCI6nZvv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7WxCI6nZvv","expanded_url":"http:\/\/archiveofourown.org\/users\/silkspectred","display_url":"archiveofourown.org\/users\/silkspec\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1235,"friends_count":587,"listed_count":33,"created_at":"Wed - Feb 16 15:20:43 +0000 2011","favourites_count":101799,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":66458,"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\/1026517432427585536\/UkkufZRP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1026517432427585536\/UkkufZRP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253102443\/1533574945","profile_link_color":"206FB3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:09:30 +0000 2020","id":1234873543663476736,"id_str":"1234873543663476736","text":"\"Ma - non hai scritto niente sul coronavirus?\" https:\/\/t.co\/OcLecbLIb1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234873536218574848,"id_str":"1234873536218574848","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMm8ETWsAAoP8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMm8ETWsAAoP8O.jpg","url":"https:\/\/t.co\/OcLecbLIb1","display_url":"pic.twitter.com\/OcLecbLIb1","expanded_url":"https:\/\/twitter.com\/zerocalcare\/status\/1234873543663476736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":810,"h":1145,"resize":"fit"},"small":{"w":481,"h":680,"resize":"fit"},"large":{"w":810,"h":1145,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234873536218574848,"id_str":"1234873536218574848","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMm8ETWsAAoP8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMm8ETWsAAoP8O.jpg","url":"https:\/\/t.co\/OcLecbLIb1","display_url":"pic.twitter.com\/OcLecbLIb1","expanded_url":"https:\/\/twitter.com\/zerocalcare\/status\/1234873543663476736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":810,"h":1145,"resize":"fit"},"small":{"w":481,"h":680,"resize":"fit"},"large":{"w":810,"h":1145,"resize":"fit"}}}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93618186,"id_str":"93618186","name":"zerocalcare","screen_name":"zerocalcare","location":"","description":"Sta - cosa del luned\u00ec era anni fa. Mo'' s''\u00e8 sbragato tutto.","url":"https:\/\/t.co\/vxr3sItrZp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vxr3sItrZp","expanded_url":"http:\/\/www.zerocalcare.it","display_url":"zerocalcare.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":346708,"friends_count":184,"listed_count":874,"created_at":"Mon - Nov 30 12:15:53 +0000 2009","favourites_count":2453,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":4885,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577279212\/avatarino_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577279212\/avatarino_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93618186\/1482914480","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"7d588036fe12e124","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7d588036fe12e124.json","place_type":"city","name":"Rome","full_name":"Rome, - Lazio","country_code":"IT","country":"Italy","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[12.2344266,41.6558738],[12.8558641,41.6558738],[12.8558641,42.140959],[12.2344266,42.140959]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":868,"favorite_count":2410,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":868,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633561137154,"id_str":"1234895633561137154","text":"RT - @TopShotMilX2: Ebola after hearing about the coronavirus spreading and killing - everyone https:\/\/t.co\/LHRyLM1IFo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TopShotMilX2","name":"Jamil - \ud83d\udd78\u2744\ufe0f","id":2769334650,"id_str":"2769334650","indices":[3,16]}],"urls":[],"media":[{"id":1234639183920189440,"id_str":"1234639183920189440","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","url":"https:\/\/t.co\/LHRyLM1IFo","display_url":"pic.twitter.com\/LHRyLM1IFo","expanded_url":"https:\/\/twitter.com\/TopShotMilX2\/status\/1234639191943847941\/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":1234639191943847941,"source_status_id_str":"1234639191943847941","source_user_id":2769334650,"source_user_id_str":"2769334650"}]},"extended_entities":{"media":[{"id":1234639183920189440,"id_str":"1234639183920189440","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","url":"https:\/\/t.co\/LHRyLM1IFo","display_url":"pic.twitter.com\/LHRyLM1IFo","expanded_url":"https:\/\/twitter.com\/TopShotMilX2\/status\/1234639191943847941\/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":1234639191943847941,"source_status_id_str":"1234639191943847941","source_user_id":2769334650,"source_user_id_str":"2769334650","video_info":{"aspect_ratio":[16,9],"duration_millis":5200,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/pl\/6mjWpANBEORPBxk4.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/vid\/640x360\/zAeFQsat9xQptZKP.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/vid\/480x270\/d9x-MnSA525pdSN-.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2769334650,"id_str":"2769334650","name":"Jamil - \ud83d\udd78\u2744\ufe0f","screen_name":"TopShotMilX2","location":"Philly","description":"You - probably seeing my profile after seeing a funny tweet so just follow me for - more \ud83e\udd71\ud83e\udd71\ud83e\udd71","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9487,"friends_count":3000,"listed_count":9,"created_at":"Tue - Aug 26 07:22:52 +0000 2014","favourites_count":3074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2421,"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\/1232858099595300871\/A-2U2WSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232858099595300871\/A-2U2WSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2769334650\/1581910844","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52850618,"id_str":"52850618","name":"Kyle","screen_name":"shaqblackston","location":"","description":"I - am the number one most impactful artist of our generation\nI am Shakespeare - in the flesh\nWalt Disney, Nike, Google. - Kanye West","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":20,"listed_count":0,"created_at":"Wed - Jul 01 21:04:55 +0000 2009","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6461,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"111114","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\/1178102931310153728\/x3jOpVP1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1178102931310153728\/x3jOpVP1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52850618\/1568543889","profile_link_color":"019999","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 00:38:16 +0000 2020","id":1234639191943847941,"id_str":"1234639191943847941","text":"Ebola - after hearing about the coronavirus spreading and killing everyone https:\/\/t.co\/LHRyLM1IFo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234639183920189440,"id_str":"1234639183920189440","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","url":"https:\/\/t.co\/LHRyLM1IFo","display_url":"pic.twitter.com\/LHRyLM1IFo","expanded_url":"https:\/\/twitter.com\/TopShotMilX2\/status\/1234639191943847941\/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":1234639183920189440,"id_str":"1234639183920189440","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234639183920189440\/pu\/img\/ZEJXwFFB3Kq4W0Hb.jpg","url":"https:\/\/t.co\/LHRyLM1IFo","display_url":"pic.twitter.com\/LHRyLM1IFo","expanded_url":"https:\/\/twitter.com\/TopShotMilX2\/status\/1234639191943847941\/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":5200,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/pl\/6mjWpANBEORPBxk4.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/vid\/640x360\/zAeFQsat9xQptZKP.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234639183920189440\/pu\/vid\/480x270\/d9x-MnSA525pdSN-.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2769334650,"id_str":"2769334650","name":"Jamil - \ud83d\udd78\u2744\ufe0f","screen_name":"TopShotMilX2","location":"Philly","description":"You - probably seeing my profile after seeing a funny tweet so just follow me for - more \ud83e\udd71\ud83e\udd71\ud83e\udd71","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9487,"friends_count":3000,"listed_count":9,"created_at":"Tue - Aug 26 07:22:52 +0000 2014","favourites_count":3074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2421,"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\/1232858099595300871\/A-2U2WSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232858099595300871\/A-2U2WSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2769334650\/1581910844","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20361,"favorite_count":54010,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20361,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633556729856,"id_str":"1234895633556729856","text":"RT - @Imamofpeace: It looks like Allah has a different plan for regime change in - Iran:\n\nDeputy leader of Iran''s parliament says 23 members of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Imamofpeace","name":"Imam - of Peace","id":1583865109,"id_str":"1583865109","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":713828599212539904,"id_str":"713828599212539904","name":"Basquette_Case\ud83d\ude06","screen_name":"76Verastegui","location":"SoCal - and Las Vegas","description":"I like what I like, when I like it.\nTo label - me, is to negate me. True wisdom comes from knowing that you know nothing.\nI - like PresidentMan from PresidentLand","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1145,"friends_count":1285,"listed_count":8,"created_at":"Sat - Mar 26 20:42:55 +0000 2016","favourites_count":20224,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20657,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1109324736394227713\/DwokJYue_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1109324736394227713\/DwokJYue_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/713828599212539904\/1511131413","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 10:30:44 +0000 2020","id":1234788289502007296,"id_str":"1234788289502007296","text":"It - looks like Allah has a different plan for regime change in Iran:\n\nDeputy - leader of Iran''s parliament says 23 mem\u2026 https:\/\/t.co\/PDyGZpW5GI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PDyGZpW5GI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234788289502007296","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1583865109,"id_str":"1583865109","name":"Imam - of Peace","screen_name":"Imamofpeace","location":"","description":"Imam Tawhidi. - Peace Advocate, Imam, Ordained Scholar, National Bestselling Author. ISIS - kidnapped and burned my uncle alive, the fight won\u2019t stop.","url":"https:\/\/t.co\/6qyTxvx3QI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6qyTxvx3QI","expanded_url":"http:\/\/Tawhidi.com\/","display_url":"Tawhidi.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":668604,"friends_count":60708,"listed_count":2269,"created_at":"Wed - Jul 10 19:25:28 +0000 2013","favourites_count":14544,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6728,"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\/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\/1229017392610627586\/kybnpFGi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229017392610627586\/kybnpFGi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1583865109\/1582790040","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3543,"favorite_count":9249,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3543,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633384951808,"id_str":"1234895633384951808","text":"RT - @paolucci40: Como se contagia el #CoronaVirus https:\/\/t.co\/VuiuuLR6p0","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[36,48]}],"symbols":[],"user_mentions":[{"screen_name":"paolucci40","name":"Pedro - Paolucci","id":48278342,"id_str":"48278342","indices":[3,14]}],"urls":[],"media":[{"id":1233964134951215105,"id_str":"1233964134951215105","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233964134951215105\/pu\/img\/oBZrir_Y2ki67U3q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233964134951215105\/pu\/img\/oBZrir_Y2ki67U3q.jpg","url":"https:\/\/t.co\/VuiuuLR6p0","display_url":"pic.twitter.com\/VuiuuLR6p0","expanded_url":"https:\/\/twitter.com\/AbWladimir\/status\/1233964204195041280\/video\/1","type":"photo","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1233964204195041280,"source_status_id_str":"1233964204195041280","source_user_id":1192093571039551488,"source_user_id_str":"1192093571039551488"}]},"extended_entities":{"media":[{"id":1233964134951215105,"id_str":"1233964134951215105","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233964134951215105\/pu\/img\/oBZrir_Y2ki67U3q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233964134951215105\/pu\/img\/oBZrir_Y2ki67U3q.jpg","url":"https:\/\/t.co\/VuiuuLR6p0","display_url":"pic.twitter.com\/VuiuuLR6p0","expanded_url":"https:\/\/twitter.com\/AbWladimir\/status\/1233964204195041280\/video\/1","type":"video","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1233964204195041280,"source_status_id_str":"1233964204195041280","source_user_id":1192093571039551488,"source_user_id_str":"1192093571039551488","video_info":{"aspect_ratio":[1,1],"duration_millis":26833,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233964134951215105\/pu\/vid\/320x320\/LwPYOZF3h9mRUh5E.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233964134951215105\/pu\/vid\/480x480\/zttrEuctLVS8OCFX.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233964134951215105\/pu\/pl\/LP7yqR6t-L5Hlc9X.m3u8?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":767094074939703297,"id_str":"767094074939703297","name":"ALFC","screen_name":"AnaLuciaFer5","location":"Carabobo, - Venezuela","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":270,"listed_count":0,"created_at":"Sat - Aug 20 20:20:54 +0000 2016","favourites_count":3685,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/767123274874687489\/odomlw40_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/767123274874687489\/odomlw40_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 20:32:07 +0000 2020","id":1234577244644872197,"id_str":"1234577244644872197","text":"Como - se contagia el #CoronaVirus https:\/\/t.co\/VuiuuLR6p0","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[20,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233964134951215105,"id_str":"1233964134951215105","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233964134951215105\/pu\/img\/oBZrir_Y2ki67U3q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233964134951215105\/pu\/img\/oBZrir_Y2ki67U3q.jpg","url":"https:\/\/t.co\/VuiuuLR6p0","display_url":"pic.twitter.com\/VuiuuLR6p0","expanded_url":"https:\/\/twitter.com\/AbWladimir\/status\/1233964204195041280\/video\/1","type":"photo","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1233964204195041280,"source_status_id_str":"1233964204195041280","source_user_id":1192093571039551488,"source_user_id_str":"1192093571039551488"}]},"extended_entities":{"media":[{"id":1233964134951215105,"id_str":"1233964134951215105","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233964134951215105\/pu\/img\/oBZrir_Y2ki67U3q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233964134951215105\/pu\/img\/oBZrir_Y2ki67U3q.jpg","url":"https:\/\/t.co\/VuiuuLR6p0","display_url":"pic.twitter.com\/VuiuuLR6p0","expanded_url":"https:\/\/twitter.com\/AbWladimir\/status\/1233964204195041280\/video\/1","type":"video","sizes":{"small":{"w":480,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":480,"resize":"fit"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1233964204195041280,"source_status_id_str":"1233964204195041280","source_user_id":1192093571039551488,"source_user_id_str":"1192093571039551488","video_info":{"aspect_ratio":[1,1],"duration_millis":26833,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233964134951215105\/pu\/vid\/320x320\/LwPYOZF3h9mRUh5E.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233964134951215105\/pu\/vid\/480x480\/zttrEuctLVS8OCFX.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233964134951215105\/pu\/pl\/LP7yqR6t-L5Hlc9X.m3u8?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48278342,"id_str":"48278342","name":"Pedro - Paolucci","screen_name":"paolucci40","location":"Southampton, England","description":"Psicologo - Industrial (UCV) Especialista en Change Management\/D.O\/ Coach. Locutor. - La Venezuela que queremos la obtendremos si luchamos. #LDS Member","url":"https:\/\/t.co\/6mltPczyfc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6mltPczyfc","expanded_url":"https:\/\/www.linkedin.com\/in\/pedro-paolucci-4975266\/","display_url":"linkedin.com\/in\/pedro-paolu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":95991,"friends_count":36830,"listed_count":435,"created_at":"Thu - Jun 18 07:19:31 +0000 2009","favourites_count":106183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":225743,"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\/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\/1184939394366689280\/aKTYP4Mq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184939394366689280\/aKTYP4Mq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48278342\/1497380783","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D5C8CF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1141,"favorite_count":575,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":1141,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633267527683,"id_str":"1234895633267527683","text":"@SaludPublicaEs - A Murcia no va ni el Coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SaludPublicaEs","name":"Salud - P\u00fablica","id":2821179496,"id_str":"2821179496","indices":[0,15]}],"urls":[]},"metadata":{"result_type":"recent","iso_language_code":"ca"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234894594355142667,"in_reply_to_status_id_str":"1234894594355142667","in_reply_to_user_id":2821179496,"in_reply_to_user_id_str":"2821179496","in_reply_to_screen_name":"SaludPublicaEs","user":{"id":1210598462997368832,"id_str":"1210598462997368832","name":"En - un Lugar de la Mancha","screen_name":"pinchodelaferia","location":"","description":"Las - aptitudes suman, la actitud multiplica","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":126,"listed_count":0,"created_at":"Fri - Dec 27 16:29:17 +0000 2019","favourites_count":890,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":755,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221840472957759500\/c1eE5_59_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221840472957759500\/c1eE5_59_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633267425281,"id_str":"1234895633267425281","text":"RT - @Mippcivzla: #NotiMippCI \ud83d\udcf0\ud83d\uddde| Ministros y presidentes - de bancos del G7 sostendr\u00e1n reuni\u00f3n telef\u00f3nica por tema coronavirus. - Lea m\u00e1s \u23e9 http\u2026","truncated":false,"entities":{"hashtags":[{"text":"NotiMippCI","indices":[16,27]}],"symbols":[],"user_mentions":[{"screen_name":"Mippcivzla","name":"MIPPCI","id":839299289792774144,"id_str":"839299289792774144","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1151523738237767681,"id_str":"1151523738237767681","name":"nathaly","screen_name":"JiemenezNathaly","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":8,"listed_count":0,"created_at":"Wed - Jul 17 16:07:08 +0000 2019","favourites_count":380,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1151536093000605697\/90RN5Z-c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1151536093000605697\/90RN5Z-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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 15:00:01 +0000 2020","id":1234856057513472000,"id_str":"1234856057513472000","text":"#NotiMippCI - \ud83d\udcf0\ud83d\uddde| Ministros y presidentes de bancos del G7 sostendr\u00e1n - reuni\u00f3n telef\u00f3nica por tema coronavirus. Lea m\u00e1\u2026 https:\/\/t.co\/APsEmmGklA","truncated":true,"entities":{"hashtags":[{"text":"NotiMippCI","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/APsEmmGklA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234856057513472000","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":839299289792774144,"id_str":"839299289792774144","name":"MIPPCI","screen_name":"Mippcivzla","location":"Venezuela","description":"Cuenta - Oficial del Ministerio del Poder Popular para la Comunicaci\u00f3n e Informaci\u00f3n.","url":"https:\/\/t.co\/ythKSuLluW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ythKSuLluW","expanded_url":"http:\/\/www.minci.gob.ve","display_url":"minci.gob.ve","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":133209,"friends_count":767,"listed_count":280,"created_at":"Wed - Mar 08 02:18:38 +0000 2017","favourites_count":27765,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":132752,"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\/1017932037309784070\/pKuFJqM2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017932037309784070\/pKuFJqM2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/839299289792774144\/1579356606","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":55,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633200406528,"id_str":"1234895633200406528","text":"RT - @rothschildmd: When you die of coronavirus, you die twice. First when you - die, then when the QAnon people claim you never existed at all\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rothschildmd","name":"Mike - Rothschild, Perfumed Prince of the Illuminati","id":30378270,"id_str":"30378270","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":94401193,"id_str":"94401193","name":"\ud835\udd10\ud835\udd1e\ud835\udd2f\ud835\udd20-\ud835\udd04\ud835\udd2b\ud835\udd21\ud835\udd2f\u00e9 - \ud835\udd04\ud835\udd2f\ud835\udd24\ud835\udd22\ud835\udd2b\ud835\udd31\ud835\udd26\ud835\udd2b\ud835\udd2c","screen_name":"4ngl3rf1sh","location":"","description":"PhD@INDI - (Computer Science, Engineering & Society, Religious Studies) | OSINT | Propaganda - | Disinformation | Conspiracy Theories [Q] | Extremism |","url":"https:\/\/t.co\/bR6Bl9CsyV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bR6Bl9CsyV","expanded_url":"https:\/\/osint.team","display_url":"osint.team","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1444,"friends_count":902,"listed_count":38,"created_at":"Thu - Dec 03 19:59:23 +0000 2009","favourites_count":1727,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10513,"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\/1189882159710056448\/issoUvmV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189882159710056448\/issoUvmV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94401193\/1582046849","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 05:51:14 +0000 2020","id":1234717953439887360,"id_str":"1234717953439887360","text":"When - you die of coronavirus, you die twice. First when you die, then when the QAnon - people claim you never existed\u2026 https:\/\/t.co\/GhcGvHABZf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GhcGvHABZf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234717953439887360","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30378270,"id_str":"30378270","name":"Mike - Rothschild, Perfumed Prince of the Illuminati","screen_name":"rothschildmd","location":"California, - USA","description":"I write about conspiracy theories and online nonsense, - including the QAnon scam. Author of \"The World''s Worst Conspiracies.\" DM''s - open! No relation.","url":"https:\/\/t.co\/2EWONrKaqG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2EWONrKaqG","expanded_url":"https:\/\/www.amazon.com\/Worlds-Worst-Conspiracies-Mike-Rothschild\/dp\/1789509327\/ref=sr_1_1?crid=1K7Z1","display_url":"amazon.com\/Worlds-Worst-C\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13296,"friends_count":1835,"listed_count":212,"created_at":"Sat - Apr 11 02:44:23 +0000 2009","favourites_count":23465,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33065,"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\/1088132446632042496\/Hk8i8gbj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1088132446632042496\/Hk8i8gbj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30378270\/1568269970","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":103,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633141653505,"id_str":"1234895633141653505","text":"RT - @Apex_WW: Anyone who tells you this situation with Coronavirus is contained - is a damn idiot.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Apex_WW","name":"Apex","id":1169793310241755137,"id_str":"1169793310241755137","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1002617783652438022,"id_str":"1002617783652438022","name":"Frank - Sowa","screen_name":"FrankSowa1","location":"Western Pennsylvania, Greater - Pittsburgh Area, Midwest, USA","description":"Comprehensive Anticipatory Design - Scientist, Advanced Technologist, Strategist, Futurist, Researcher, writer, - frmr Knight-Ridder, Dix journalist, vet, dad.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3847,"friends_count":5001,"listed_count":21,"created_at":"Fri - Jun 01 18:28:02 +0000 2018","favourites_count":110579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":113279,"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\/1184174202716327937\/ksIQ5C-O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184174202716327937\/ksIQ5C-O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1002617783652438022\/1544503952","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:08:32 +0000 2020","id":1234888399816925184,"id_str":"1234888399816925184","text":"Anyone - who tells you this situation with Coronavirus is contained is a damn idiot.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234888142030802948,"in_reply_to_status_id_str":"1234888142030802948","in_reply_to_user_id":1169793310241755137,"in_reply_to_user_id_str":"1169793310241755137","in_reply_to_screen_name":"Apex_WW","user":{"id":1169793310241755137,"id_str":"1169793310241755137","name":"Apex","screen_name":"Apex_WW","location":"US - ","description":"Monitoring Breaking News \/ Current Events \/ Military Conflicts - around the globe. ADS-B savvy. RT\u2019s\/Likes \u2260 Endorsement. #OSINT - #BREAKING #NEWS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2874,"friends_count":269,"listed_count":63,"created_at":"Fri - Sep 06 02:04:02 +0000 2019","favourites_count":3367,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9069,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213331689478471680\/LeZJzKxv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213331689478471680\/LeZJzKxv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169793310241755137\/1582089384","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633053626377,"id_str":"1234895633053626377","text":"RT - @hereforthejava: Hey @MikeBloomberg is THIS your idea of stopping #Coronavirus? - Asking for a friend. \n\nP.S. You''re pretty disgusting. Wa\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[69,81]}],"symbols":[],"user_mentions":[{"screen_name":"hereforthejava","name":"I''m - supposed to be working right now...","id":36473243,"id_str":"36473243","indices":[3,18]},{"screen_name":"MikeBloomberg","name":"Mike - Bloomberg","id":16581604,"id_str":"16581604","indices":[24,38]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54054964,"id_str":"54054964","name":"\ud83c\uddfa\ud83c\uddf8 - doctorcherokee \ud83c\uddfa\ud83c\uddf8","screen_name":"doctorcherokee","location":"The - South, United States","description":"Overeducated libertarian-leaning pragmatic - conservative. Love the West & the USA & Israel. Leftists, (a) you suck & (b) - no one is coming to save you. #MAGA","url":"https:\/\/t.co\/qpTG7hgvjy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qpTG7hgvjy","expanded_url":"http:\/\/promiseskept.com","display_url":"promiseskept.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3985,"friends_count":292,"listed_count":22,"created_at":"Mon - Jul 06 00:31:06 +0000 2009","favourites_count":115563,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":124890,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1060008236554739712\/gjKr8JP__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1060008236554739712\/gjKr8JP__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54054964\/1484932199","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:33:54 +0000 2020","id":1234894783593607168,"id_str":"1234894783593607168","text":"Hey - @MikeBloomberg is THIS your idea of stopping #Coronavirus? Asking for a friend. - \n\nP.S. You''re pretty disgusting\u2026 https:\/\/t.co\/04IJn1ULxa","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[49,61]}],"symbols":[],"user_mentions":[{"screen_name":"MikeBloomberg","name":"Mike - Bloomberg","id":16581604,"id_str":"16581604","indices":[4,18]}],"urls":[{"url":"https:\/\/t.co\/04IJn1ULxa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234894783593607168","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36473243,"id_str":"36473243","name":"I''m - supposed to be working right now...","screen_name":"hereforthejava","location":"Seattle - - Tacoma","description":"Non-bot daughter of Vietnam Vet, granddaughter of - WWII Vet, great granddaughter of WWI Army Vet Const Cons\/Social Libertarian\ud83c\uddfa\ud83c\uddf8 - #MAGA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11982,"friends_count":7286,"listed_count":595,"created_at":"Wed - Apr 29 20:38:31 +0000 2009","favourites_count":303860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":264916,"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\/1034915581261053952\/kpotHdAP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034915581261053952\/kpotHdAP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36473243\/1556671531","profile_link_color":"AC1F1F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"799994","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234884598292733953,"quoted_status_id_str":"1234884598292733953","quoted_status":{"created_at":"Tue - Mar 03 16:53:25 +0000 2020","id":1234884598292733953,"id_str":"1234884598292733953","text":"Mike - Bloomberg should be the Czar of stopping the Coronavirus. \n\n\ud83d\ude37\n#SuperTuesday - \nhttps:\/\/t.co\/D77fyYNxRO","truncated":false,"entities":{"hashtags":[{"text":"SuperTuesday","indices":[67,80]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234657602983866370,"id_str":"1234657602983866370","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234657602983866370\/pu\/img\/AMXYA5hTxq4OUsI0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234657602983866370\/pu\/img\/AMXYA5hTxq4OUsI0.jpg","url":"https:\/\/t.co\/D77fyYNxRO","display_url":"pic.twitter.com\/D77fyYNxRO","expanded_url":"https:\/\/twitter.com\/AGWilliamBarr\/status\/1234657661494317056\/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":1234657661494317056,"source_status_id_str":"1234657661494317056","source_user_id":1154419445747671040,"source_user_id_str":"1154419445747671040"}]},"extended_entities":{"media":[{"id":1234657602983866370,"id_str":"1234657602983866370","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234657602983866370\/pu\/img\/AMXYA5hTxq4OUsI0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234657602983866370\/pu\/img\/AMXYA5hTxq4OUsI0.jpg","url":"https:\/\/t.co\/D77fyYNxRO","display_url":"pic.twitter.com\/D77fyYNxRO","expanded_url":"https:\/\/twitter.com\/AGWilliamBarr\/status\/1234657661494317056\/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":1234657661494317056,"source_status_id_str":"1234657661494317056","source_user_id":1154419445747671040,"source_user_id_str":"1154419445747671040","video_info":{"aspect_ratio":[37,80],"duration_millis":14933,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234657602983866370\/pu\/pl\/kmXqoYK5QCJ-D85S.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234657602983866370\/pu\/vid\/592x1280\/I_udJGkkmLUWa8pu.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234657602983866370\/pu\/vid\/320x690\/4F3DE5GscUqaKNs_.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234657602983866370\/pu\/vid\/360x778\/Fq3H6zDUPUoGJ0M_.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":931286316,"id_str":"931286316","name":"#ThePersistence","screen_name":"ScottPresler","location":"Invite - me to your city!","description":"I helped defeat Hillary & organized the Baltimore - cleanup. Republicans need 18 seats to flip the House. Focus on voter registration. - https:\/\/t.co\/SRaEZoa2Vi","url":"https:\/\/t.co\/SRaEZoa2Vi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SRaEZoa2Vi","expanded_url":"http:\/\/ScottPresler.org","display_url":"ScottPresler.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SRaEZoa2Vi","expanded_url":"http:\/\/ScottPresler.org","display_url":"ScottPresler.org","indices":[133,156]}]}},"protected":false,"followers_count":456126,"friends_count":41749,"listed_count":2301,"created_at":"Wed - Nov 07 05:23:07 +0000 2012","favourites_count":277701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":72984,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222686919630434304\/dvEHzOo__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222686919630434304\/dvEHzOo__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/931286316\/1564355576","profile_link_color":"DD2E44","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":471,"favorite_count":1084,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234884598292733953,"quoted_status_id_str":"1234884598292733953","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895633011503104,"id_str":"1234895633011503104","text":"RT - @RealJamesWoods: Thanks, #MichaelBloomberg. Here\u2019s a handy little (unintentional) - demo on the way to spread #coronavirus by the most clu\u2026","truncated":false,"entities":{"hashtags":[{"text":"MichaelBloomberg","indices":[28,45]},{"text":"coronavirus","indices":[111,123]}],"symbols":[],"user_mentions":[{"screen_name":"RealJamesWoods","name":"James - Woods","id":78523300,"id_str":"78523300","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2177531508,"id_str":"2177531508","name":"sal - cordova","screen_name":"betterimage8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":118,"listed_count":0,"created_at":"Wed - Nov 06 06:52:37 +0000 2013","favourites_count":49414,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1973,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 15:55:11 +0000 2020","id":1234869939720216578,"id_str":"1234869939720216578","text":"Thanks, - #MichaelBloomberg. Here\u2019s a handy little (unintentional) demo on the - way to spread #coronavirus by the most\u2026 https:\/\/t.co\/X9zjBhJXAd","truncated":true,"entities":{"hashtags":[{"text":"MichaelBloomberg","indices":[8,25]},{"text":"coronavirus","indices":[91,103]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/X9zjBhJXAd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234869939720216578","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78523300,"id_str":"78523300","name":"James - Woods","screen_name":"RealJamesWoods","location":"","description":"This is - the exclusive verified Twitter account for James Woods. Any other account - on Twitter, Facebook, https:\/\/t.co\/xOXURXDVk5, or other social media are - imposters.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/xOXURXDVk5","expanded_url":"http:\/\/gab.com","display_url":"gab.com","indices":[104,127]}]}},"protected":false,"followers_count":2253145,"friends_count":5042,"listed_count":9131,"created_at":"Wed - Sep 30 05:31:28 +0000 2009","favourites_count":8299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":28984,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/796482667340382211\/CoV8077b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/796482667340382211\/CoV8077b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78523300\/1581096605","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8700,"favorite_count":18097,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8700,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632952893446,"id_str":"1234895632952893446","text":"RT - @matthewbennett: \u00bfTan dif\u00edcil es hacer una tabla Coronavirus como - la italiana para Espa\u00f1a, Sanidad? https:\/\/t.co\/uszSOS44rg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"matthewbennett","name":"Matthew - Bennett","id":14236470,"id_str":"14236470","indices":[3,18]}],"urls":[],"media":[{"id":1234894221649358848,"id_str":"1234894221649358848","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM5wHiXsAAl_Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM5wHiXsAAl_Ek.jpg","url":"https:\/\/t.co\/uszSOS44rg","display_url":"pic.twitter.com\/uszSOS44rg","expanded_url":"https:\/\/twitter.com\/matthewbennett\/status\/1234894230822236160\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":485,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":950,"h":678,"resize":"fit"},"medium":{"w":950,"h":678,"resize":"fit"}},"source_status_id":1234894230822236160,"source_status_id_str":"1234894230822236160","source_user_id":14236470,"source_user_id_str":"14236470"}]},"extended_entities":{"media":[{"id":1234894221649358848,"id_str":"1234894221649358848","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM5wHiXsAAl_Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM5wHiXsAAl_Ek.jpg","url":"https:\/\/t.co\/uszSOS44rg","display_url":"pic.twitter.com\/uszSOS44rg","expanded_url":"https:\/\/twitter.com\/matthewbennett\/status\/1234894230822236160\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":485,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":950,"h":678,"resize":"fit"},"medium":{"w":950,"h":678,"resize":"fit"}},"source_status_id":1234894230822236160,"source_status_id_str":"1234894230822236160","source_user_id":14236470,"source_user_id_str":"14236470"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153063903,"id_str":"153063903","name":"Olalla","screen_name":"toscallita","location":"#TeamEscoba","description":"el - mundo est\u00e1 lleno de faltos","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":849,"friends_count":349,"listed_count":25,"created_at":"Mon - Jun 07 15:58:05 +0000 2010","favourites_count":109121,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":151055,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1202600604796895234\/x8Pg_Bqc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202600604796895234\/x8Pg_Bqc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153063903\/1529045701","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:31:42 +0000 2020","id":1234894230822236160,"id_str":"1234894230822236160","text":"\u00bfTan - dif\u00edcil es hacer una tabla Coronavirus como la italiana para Espa\u00f1a, - Sanidad? https:\/\/t.co\/uszSOS44rg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234894221649358848,"id_str":"1234894221649358848","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM5wHiXsAAl_Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM5wHiXsAAl_Ek.jpg","url":"https:\/\/t.co\/uszSOS44rg","display_url":"pic.twitter.com\/uszSOS44rg","expanded_url":"https:\/\/twitter.com\/matthewbennett\/status\/1234894230822236160\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":485,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":950,"h":678,"resize":"fit"},"medium":{"w":950,"h":678,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234894221649358848,"id_str":"1234894221649358848","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM5wHiXsAAl_Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM5wHiXsAAl_Ek.jpg","url":"https:\/\/t.co\/uszSOS44rg","display_url":"pic.twitter.com\/uszSOS44rg","expanded_url":"https:\/\/twitter.com\/matthewbennett\/status\/1234894230822236160\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":485,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":950,"h":678,"resize":"fit"},"medium":{"w":950,"h":678,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14236470,"id_str":"14236470","name":"Matthew - Bennett","screen_name":"matthewbennett","location":"Spain","description":"Detailed - independent reporting and analysis of the news from Spain.\nEnglish\ud83c\uddec\ud83c\udde7 - & Spanish\ud83c\uddea\ud83c\uddf8.\nWhatsApp\/Signal: (0034) 647818143\nmatthew@thespainreport.es","url":"https:\/\/t.co\/SSHCVBo9FW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SSHCVBo9FW","expanded_url":"https:\/\/www.thespainreport.es","display_url":"thespainreport.es","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":49177,"friends_count":260,"listed_count":952,"created_at":"Thu - Mar 27 16:18:49 +0000 2008","favourites_count":1642,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":143127,"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\/1141350689463046144\/xh_zTojD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141350689463046144\/xh_zTojD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14236470\/1579003465","profile_link_color":"1671B8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F0F0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632890028038,"id_str":"1234895632890028038","text":"RT - @Conflits_FR: \ud83c\uddeb\ud83c\uddf7 Epidemie de #coronavirus : ce m\u00e9decin - souffrait \"d''un rhume\" la semaine derni\u00e8re, donc son cabinet est rest\u00e9 - ferm\u00e9. Il\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[32,44]}],"symbols":[],"user_mentions":[{"screen_name":"Conflits_FR","name":"Conflits","id":1214315619031478272,"id_str":"1214315619031478272","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406106214,"id_str":"406106214","name":"Luca","screen_name":"luca_spi67","location":"","description":"\ud83d\udd25 - C PAS DES LOL \ud83d\udd25\n\nCHARTS JUL","url":"https:\/\/t.co\/yVvXsK4MOK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yVvXsK4MOK","expanded_url":"https:\/\/www.instagram.com\/ventes_jul\/","display_url":"instagram.com\/ventes_jul\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":113,"listed_count":0,"created_at":"Sun - Nov 06 07:52:54 +0000 2011","favourites_count":8920,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39058,"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\/1102887452367306754\/RPhdTYM8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1102887452367306754\/RPhdTYM8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/406106214\/1573822991","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:53:52 +0000 2020","id":1234884710607794178,"id_str":"1234884710607794178","text":"\ud83c\uddeb\ud83c\uddf7 - Epidemie de #coronavirus : ce m\u00e9decin souffrait \"d''un rhume\" la semaine - derni\u00e8re, donc son cabinet est rest\u00e9 fer\u2026 https:\/\/t.co\/LApKLlBC5u","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[15,27]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LApKLlBC5u","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234884710607794178","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214315619031478272,"id_str":"1214315619031478272","name":"Conflits","screen_name":"Conflits_FR","location":"\ud83c\uddeb\ud83c\uddf7 - \/ \ud83c\udde9\ud83c\uddea","description":"Traque les conflits autour du - globe en temps r\u00e9el & en fran\u00e7ais. (G\u00e9o)politique, terrorisme, - espionnage, cyber-s\u00e9curit\u00e9, sant\u00e9. Backup : @ConflitsFR. #OSINT","url":"https:\/\/t.co\/Ve7b3t0FON","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ve7b3t0FON","expanded_url":"https:\/\/www.instagram.com\/conflits_fr\/","display_url":"instagram.com\/conflits_fr\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":87906,"friends_count":12,"listed_count":205,"created_at":"Mon - Jan 06 22:40:00 +0000 2020","favourites_count":2668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3526,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214315619031478272\/1580759618","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234882361831100428,"quoted_status_id_str":"1234882361831100428","quoted_status":{"created_at":"Tue - Mar 03 16:44:32 +0000 2020","id":1234882361831100428,"id_str":"1234882361831100428","text":"\ud83c\uddeb\ud83c\uddf7 - FLASH - Un m\u00e9decin de 33 ans de la commune de #Bernwiller en #France - a \u00e9t\u00e9 test\u00e9 positif au #coronavirus. Il a \u00e9\u2026 https:\/\/t.co\/VwPM2AATpi","truncated":true,"entities":{"hashtags":[{"text":"Bernwiller","indices":[49,60]},{"text":"France","indices":[64,71]},{"text":"coronavirus","indices":[95,107]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VwPM2AATpi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234882361831100428","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214315619031478272,"id_str":"1214315619031478272","name":"Conflits","screen_name":"Conflits_FR","location":"\ud83c\uddeb\ud83c\uddf7 - \/ \ud83c\udde9\ud83c\uddea","description":"Traque les conflits autour du - globe en temps r\u00e9el & en fran\u00e7ais. (G\u00e9o)politique, terrorisme, - espionnage, cyber-s\u00e9curit\u00e9, sant\u00e9. Backup : @ConflitsFR. #OSINT","url":"https:\/\/t.co\/Ve7b3t0FON","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ve7b3t0FON","expanded_url":"https:\/\/www.instagram.com\/conflits_fr\/","display_url":"instagram.com\/conflits_fr\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":87906,"friends_count":12,"listed_count":205,"created_at":"Mon - Jan 06 22:40:00 +0000 2020","favourites_count":2668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3526,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214315619031478272\/1580759618","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":150,"favorite_count":337,"favorited":false,"retweeted":false,"lang":"fr"},"retweet_count":156,"favorite_count":414,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1234882361831100428,"quoted_status_id_str":"1234882361831100428","retweet_count":156,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632881639424,"id_str":"1234895632881639424","text":"RT - @NYGovCuomo: BREAKING: I am announcing a new directive requiring NY health - insurers to waive cost sharing associated with testing for #c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NYGovCuomo","name":"Andrew - Cuomo","id":232268199,"id_str":"232268199","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1924096759,"id_str":"1924096759","name":"Kathryn - McCann\ud83d\ude38#Resist! #Tolerance #\ud83c\udf0a\ud83c\udf0a2020","screen_name":"wildkat57","location":"New - Orleans","description":"Happily wed to Dennis, w\/7 blk cat rescues- Kizzie, - Jockamo, Feenanay, Mojeaux, Gigi, Remoulade, & Hoodoo! Be kind to God''s creatures! - except #45!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3739,"friends_count":5000,"listed_count":73,"created_at":"Tue - Oct 01 17:22:57 +0000 2013","favourites_count":129890,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":108134,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000548304203\/9cbbac3223a6de337637e37684029c3f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000548304203\/9cbbac3223a6de337637e37684029c3f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1924096759\/1560629712","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 00:18:40 +0000 2020","id":1234634259912155137,"id_str":"1234634259912155137","text":"BREAKING: - I am announcing a new directive requiring NY health insurers to waive cost - sharing associated with testin\u2026 https:\/\/t.co\/QmFv4WIfqI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QmFv4WIfqI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234634259912155137","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232268199,"id_str":"232268199","name":"Andrew - Cuomo","screen_name":"NYGovCuomo","location":"New York","description":"Father, - fisherman, motorcycle enthusiast, 56th Governor of New York","url":"https:\/\/t.co\/Oazy5ayWLE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Oazy5ayWLE","expanded_url":"http:\/\/www.ny.gov\/social-media-policy","display_url":"ny.gov\/social-media-p\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":866715,"friends_count":608,"listed_count":5076,"created_at":"Thu - Dec 30 17:54:04 +0000 2010","favourites_count":2714,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":26524,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0077C8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1135023027668824064\/NkGFOCe6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1135023027668824064\/NkGFOCe6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232268199\/1575121693","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13237,"favorite_count":58792,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13237,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632814559232,"id_str":"1234895632814559232","text":"RT - @zerocompromess: Col coronavirus a 65 anni sei anziano, soggetto in pericolo - di salute, non devi uscire.\nSenza coronavirus a 65 anni sei\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zerocompromess","name":"Comunist","id":1196784283093999616,"id_str":"1196784283093999616","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3898955560,"id_str":"3898955560","name":"Claudio - Zavattini","screen_name":"ClaudioZavatti1","location":"Pozzolengo, Lombardia","description":"Ognuno - di noi possiede una doppia anima......","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":917,"friends_count":507,"listed_count":1,"created_at":"Thu - Oct 08 11:08:00 +0000 2015","favourites_count":218741,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":141978,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207012285807497217\/xI2pN0kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207012285807497217\/xI2pN0kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3898955560\/1576609212","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 20:56:25 +0000 2020","id":1234583361458442248,"id_str":"1234583361458442248","text":"Col - coronavirus a 65 anni sei anziano, soggetto in pericolo di salute, non devi - uscire.\nSenza coronavirus a 65 anni\u2026 https:\/\/t.co\/dTOLLY5gXX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dTOLLY5gXX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234583361458442248","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1196784283093999616,"id_str":"1196784283093999616","name":"Comunist","screen_name":"zerocompromess","location":"","description":"A - torto o a ragione sempre in culo al padrone","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1315,"friends_count":968,"listed_count":1,"created_at":"Tue - Nov 19 13:36:33 +0000 2019","favourites_count":13421,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6874,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1205197154345725954\/Tag_9nJs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205197154345725954\/Tag_9nJs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1196784283093999616\/1575161449","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":469,"favorite_count":1577,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":469,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632764035072,"id_str":"1234895632764035072","text":"RT - @ChanelRion: White House met top BioTech Execs to discuss #Coronavirus Vaccine - and Therapeuticals.\n\n-WH to remove barriers\/regulations t\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[61,73]}],"symbols":[],"user_mentions":[{"screen_name":"ChanelRion","name":"Chanel - Rion OAN","id":2438831503,"id_str":"2438831503","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":545377339,"id_str":"545377339","name":"Cowboy - Moody","screen_name":"USAlovesTrumpz","location":"USA","description":"America - is now totally under attack by Progressives and media..a coup is underway - to overthrow our duly elected government.. fight back https:\/\/t.co\/mlPAIAg9pb","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/mlPAIAg9pb","expanded_url":"http:\/\/www.gab.ai","display_url":"gab.ai","indices":[136,159]}]}},"protected":false,"followers_count":70071,"friends_count":66141,"listed_count":218,"created_at":"Wed - Apr 04 19:23:19 +0000 2012","favourites_count":57017,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":198156,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224737457649766400\/czlEQzEW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224737457649766400\/czlEQzEW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/545377339\/1580062927","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 13:55:59 +0000 2020","id":1234839945715556354,"id_str":"1234839945715556354","text":"White - House met top BioTech Execs to discuss #Coronavirus Vaccine and Therapeuticals.\n\n-WH - to remove barriers\/regul\u2026 https:\/\/t.co\/2cTHrR9ZhN","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[45,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2cTHrR9ZhN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234839945715556354","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2438831503,"id_str":"2438831503","name":"Chanel - Rion OAN","screen_name":"ChanelRion","location":"Washington, DC \ud83c\uddfa\ud83c\uddf8\ud83c\uddf0\ud83c\uddf7","description":"@OANN - Chief White House Correspondent | https:\/\/t.co\/Ul5TsBCJJD | https:\/\/t.co\/68u4uYyM5i - | Chanel''s OAN Reports here: https:\/\/t.co\/NLLGchnU2s","url":"https:\/\/t.co\/pgEo51fYv7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pgEo51fYv7","expanded_url":"http:\/\/www.OANN.com","display_url":"OANN.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Ul5TsBCJJD","expanded_url":"http:\/\/ChanelRion.com","display_url":"ChanelRion.com","indices":[40,63]},{"url":"https:\/\/t.co\/68u4uYyM5i","expanded_url":"http:\/\/Wordebys.com","display_url":"Wordebys.com","indices":[66,89]},{"url":"https:\/\/t.co\/NLLGchnU2s","expanded_url":"http:\/\/shorturl.at\/djsuK","display_url":"shorturl.at\/djsuK","indices":[119,142]}]}},"protected":false,"followers_count":110973,"friends_count":19943,"listed_count":488,"created_at":"Fri - Apr 11 17:19:00 +0000 2014","favourites_count":9687,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":18990,"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\/1148367530437808135\/e4LVGJeT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148367530437808135\/e4LVGJeT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2438831503\/1558024257","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":368,"favorite_count":745,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632760016896,"id_str":"1234895632760016896","text":"RT - @cejaspobladas: \u2014 \u00bfTiene coronavirus? \n\u2014 No... \n\u2014 \u00bfMe - lo jura?\n\u2014 Juradito...\n\u2014 \u00bfPor su mam\u00e1 y toda su familia?\n\u2014 - Juradito por todos ello\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cejaspobladas","name":"Ricardo - Quevedo","id":116518454,"id_str":"116518454","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489737070,"id_str":"489737070","name":"Luis - Arturo Lopera","screen_name":"artulopera","location":"Medell\u00edn, Colombia","description":"Abogado","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":191,"friends_count":206,"listed_count":1,"created_at":"Sat - Feb 11 20:51:02 +0000 2012","favourites_count":1306,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3714,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234730212212006913\/swFBoz3Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234730212212006913\/swFBoz3Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489737070\/1583217602","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 15:29:22 +0000 2020","id":1234863444471447553,"id_str":"1234863444471447553","text":"\u2014 - \u00bfTiene coronavirus? \n\u2014 No... \n\u2014 \u00bfMe lo jura?\n\u2014 - Juradito...\n\u2014 \u00bfPor su mam\u00e1 y toda su familia?\n\u2014 Juradito - por todos\u2026 https:\/\/t.co\/YiVUKwNaqh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YiVUKwNaqh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234863444471447553","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116518454,"id_str":"116518454","name":"Ricardo - Quevedo","screen_name":"cejaspobladas","location":"Colombia","description":"No - estoy de mal genio, son las cejas. Iba a ser mejor que Messi pero me lesion\u00e9 - Contrataciones: contacto@ricardoquevedo.com instagram: cejaspobladas","url":"https:\/\/t.co\/mNEHYi4WUs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNEHYi4WUs","expanded_url":"http:\/\/www.intagram.com\/cejaspobladas","display_url":"intagram.com\/cejaspobladas","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2308316,"friends_count":3430,"listed_count":1545,"created_at":"Mon - Feb 22 19:08:33 +0000 2010","favourites_count":153639,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":40982,"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\/1182327654080552961\/SLxZWqTF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182327654080552961\/SLxZWqTF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116518454\/1570723826","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234611277286322176,"quoted_status_id_str":"1234611277286322176","quoted_status":{"created_at":"Mon - Mar 02 22:47:21 +0000 2020","id":1234611277286322176,"id_str":"1234611277286322176","text":"Colombia - exige una declaraci\u00f3n juramentada de no tener Coronavirus a pasajeros - de 9 pa\u00edses, entre esos Ecuador. \u25ba\u2026 https:\/\/t.co\/Cl2abP2KfY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Cl2abP2KfY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234611277286322176","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":8225692,"id_str":"8225692","name":"El - Universo","screen_name":"eluniversocom","location":"Guayaquil, Ecuador","description":"El - Mayor Diario Nacional. Noticias de Ecuador y del mundo","url":"http:\/\/t.co\/DcjOhdSz6f","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/DcjOhdSz6f","expanded_url":"http:\/\/www.eluniverso.com","display_url":"eluniverso.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2032030,"friends_count":2868,"listed_count":4375,"created_at":"Thu - Aug 16 15:08:04 +0000 2007","favourites_count":266,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":267802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"054D80","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/801843060128759808\/EnWtCFxy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/801843060128759808\/EnWtCFxy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8225692\/1579632064","profile_link_color":"01385F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A9BCD8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":424,"favorite_count":796,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":1544,"favorite_count":5932,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1234611277286322176,"quoted_status_id_str":"1234611277286322176","retweet_count":1544,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632726405135,"id_str":"1234895632726405135","text":"RT - @TeamTrump: The #Coronavirus Outbreak shows how important it is to bring manufacturing - back to America! https:\/\/t.co\/3BeUxhdenR","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[19,31]}],"symbols":[],"user_mentions":[{"screen_name":"TeamTrump","name":"Team - Trump (Text TRUMP to 88022)","id":729676086632656900,"id_str":"729676086632656900","indices":[3,13]}],"urls":[],"media":[{"id":1234594218863218689,"id_str":"1234594218863218689","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234594218863218689\/img\/XvD3pnjCO3oHIgQL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234594218863218689\/img\/XvD3pnjCO3oHIgQL.jpg","url":"https:\/\/t.co\/3BeUxhdenR","display_url":"pic.twitter.com\/3BeUxhdenR","expanded_url":"https:\/\/twitter.com\/TeamTrump\/status\/1234595138200010757\/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":1234595138200010757,"source_status_id_str":"1234595138200010757","source_user_id":729676086632656900,"source_user_id_str":"729676086632656900"}]},"extended_entities":{"media":[{"id":1234594218863218689,"id_str":"1234594218863218689","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234594218863218689\/img\/XvD3pnjCO3oHIgQL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234594218863218689\/img\/XvD3pnjCO3oHIgQL.jpg","url":"https:\/\/t.co\/3BeUxhdenR","display_url":"pic.twitter.com\/3BeUxhdenR","expanded_url":"https:\/\/twitter.com\/TeamTrump\/status\/1234595138200010757\/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":1234595138200010757,"source_status_id_str":"1234595138200010757","source_user_id":729676086632656900,"source_user_id_str":"729676086632656900","video_info":{"aspect_ratio":[16,9],"duration_millis":55156,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234594218863218689\/vid\/1280x720\/Rgip4lIar-nmlNfa.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234594218863218689\/vid\/640x360\/8Blb0in6CY9nrql_.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234594218863218689\/vid\/480x270\/caXg6eJMYV3pi9is.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234594218863218689\/pl\/WdPeTFgZnmQuOtLu.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":729676086632656900,"id_str":"729676086632656900","name":"Team - Trump (Text TRUMP to 88022)","screen_name":"TeamTrump","location":"USA","description":"The - official Twitter for the Trump Campaign. Together, we will KEEP AMERICA GREAT! - \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/mZB2hy4Wdz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mZB2hy4Wdz","expanded_url":"http:\/\/www.DonaldJTrump.com","display_url":"DonaldJTrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1498018,"friends_count":104,"listed_count":3543,"created_at":"Mon - May 09 14:15:10 +0000 2016","favourites_count":2956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19230,"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\/745768799849308160\/KrZhjkpH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/745768799849308160\/KrZhjkpH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729676086632656900\/1582139205","profile_link_color":"CB0606","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17466901,"id_str":"17466901","name":"DebJamail","screen_name":"DebJamail","location":"Galveston, - Texas","description":"Loving & Living on the Texas Gulf Coast! Helping others - to do the same...One Buyer, One Seller, One home at a time!","url":"http:\/\/t.co\/PQeWf9gJZX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PQeWf9gJZX","expanded_url":"http:\/\/www.DebJamail.com","display_url":"DebJamail.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":355,"listed_count":9,"created_at":"Tue - Nov 18 18:00:42 +0000 2008","favourites_count":3204,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4192,"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\/925777896798437376\/kzYV0CnG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925777896798437376\/kzYV0CnG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17466901\/1509557459","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 21:43:13 +0000 2020","id":1234595138200010757,"id_str":"1234595138200010757","text":"The - #Coronavirus Outbreak shows how important it is to bring manufacturing back - to America! https:\/\/t.co\/3BeUxhdenR","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[4,16]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234594218863218689,"id_str":"1234594218863218689","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234594218863218689\/img\/XvD3pnjCO3oHIgQL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234594218863218689\/img\/XvD3pnjCO3oHIgQL.jpg","url":"https:\/\/t.co\/3BeUxhdenR","display_url":"pic.twitter.com\/3BeUxhdenR","expanded_url":"https:\/\/twitter.com\/TeamTrump\/status\/1234595138200010757\/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":1234594218863218689,"id_str":"1234594218863218689","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234594218863218689\/img\/XvD3pnjCO3oHIgQL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234594218863218689\/img\/XvD3pnjCO3oHIgQL.jpg","url":"https:\/\/t.co\/3BeUxhdenR","display_url":"pic.twitter.com\/3BeUxhdenR","expanded_url":"https:\/\/twitter.com\/TeamTrump\/status\/1234595138200010757\/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":55156,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234594218863218689\/vid\/1280x720\/Rgip4lIar-nmlNfa.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234594218863218689\/vid\/640x360\/8Blb0in6CY9nrql_.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234594218863218689\/vid\/480x270\/caXg6eJMYV3pi9is.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234594218863218689\/pl\/WdPeTFgZnmQuOtLu.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":729676086632656900,"id_str":"729676086632656900","name":"Team - Trump (Text TRUMP to 88022)","screen_name":"TeamTrump","location":"USA","description":"The - official Twitter for the Trump Campaign. Together, we will KEEP AMERICA GREAT! - \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/mZB2hy4Wdz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mZB2hy4Wdz","expanded_url":"http:\/\/www.DonaldJTrump.com","display_url":"DonaldJTrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1498018,"friends_count":104,"listed_count":3543,"created_at":"Mon - May 09 14:15:10 +0000 2016","favourites_count":2956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19230,"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\/745768799849308160\/KrZhjkpH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/745768799849308160\/KrZhjkpH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729676086632656900\/1582139205","profile_link_color":"CB0606","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4191,"favorite_count":14516,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4191,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632709582850,"id_str":"1234895632709582850","text":"RT - @El_Hunto: I read somewhere that coronavirus has so far killed 3120 people - but about 21000 people die everyday from hunger but the world\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"El_Hunto","name":"Hunt","id":1074470340108140544,"id_str":"1074470340108140544","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":827475453233524736,"id_str":"827475453233524736","name":"Amina - Hussain","screen_name":"AminaHussainx","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":126,"friends_count":97,"listed_count":0,"created_at":"Fri - Feb 03 11:14:56 +0000 2017","favourites_count":48142,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22191,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233349497218097153\/JNXgH-OW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233349497218097153\/JNXgH-OW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/827475453233524736\/1492728353","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 14:28:57 +0000 2020","id":1234848238563450882,"id_str":"1234848238563450882","text":"I - read somewhere that coronavirus has so far killed 3120 people but about 21000 - people die everyday from hunger but\u2026 https:\/\/t.co\/EkB1IiCmYC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EkB1IiCmYC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234848238563450882","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1074470340108140544,"id_str":"1074470340108140544","name":"Hunt","screen_name":"El_Hunto","location":"","description":"\u200f\u200f\u0627\u0634\u0652\u0647\u064e\u062f\u064f - \u0627\u0646\u0652 \u0644\u0651\u0622 \u0627\u0650\u0644\u0647\u064e \u0627\u0650\u0644\u064e\u0651\u0627 - \u0627\u0644\u0644\u0651\u0647\u064f \u0648\u064e \u0627\u064e\u0634\u0652\u0647\u064e\u062f\u064f - \u0627\u064e\u0646\u064e\u0651 \u0645\u064f\u062d\u064e\u0645\u064e\u0651\u062f\u064b - \u0627\u0639\u064e\u0628\u0652\u062f\u064f\u0647 \u0648\u064e\u0631\u064e\u0633\u064f\u0648\u0644\u064f\u0647","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3803,"friends_count":150,"listed_count":15,"created_at":"Mon - Dec 17 01:04:26 +0000 2018","favourites_count":28044,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23170,"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\/1233861622713716739\/9GswXuj__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233861622713716739\/9GswXuj__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1074470340108140544\/1583057830","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":264,"favorite_count":692,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":264,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632550289409,"id_str":"1234895632550289409","text":"RT - @IrvingGatell: 13. Y en el contexto de una posible crisis por el Coronavirus, - le preguntaron si cancelar\u00eda las ma\u00f1aneras como medida pre\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IrvingGatell","name":"Irving - Gatell","id":304958799,"id_str":"304958799","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":397706685,"id_str":"397706685","name":"ruben - ayala","screen_name":"soldado5ayala","location":"M\u00e9xico","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":654,"friends_count":645,"listed_count":1,"created_at":"Tue - Oct 25 01:56:38 +0000 2011","favourites_count":84,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32969,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483071164512612354\/CDmcjIra_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483071164512612354\/CDmcjIra_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/397706685\/1390498837","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 04:59:09 +0000 2020","id":1234704844398546945,"id_str":"1234704844398546945","text":"13. - Y en el contexto de una posible crisis por el Coronavirus, le preguntaron - si cancelar\u00eda las ma\u00f1aneras como medi\u2026 https:\/\/t.co\/eGCmCxQvzE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eGCmCxQvzE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234704844398546945","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234704843140300800,"in_reply_to_status_id_str":"1234704843140300800","in_reply_to_user_id":304958799,"in_reply_to_user_id_str":"304958799","in_reply_to_screen_name":"IrvingGatell","user":{"id":304958799,"id_str":"304958799","name":"Irving - Gatell","screen_name":"IrvingGatell","location":"Ciudad de M\u00e9xico","description":"M\u00fasico, - te\u00f3logo y escritor enfocado a la Historia Jud\u00eda y al conflicto en - Medio Oriente. Opositor de la Transformaci\u00f3n de Cuarta.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":190942,"friends_count":315,"listed_count":395,"created_at":"Wed - May 25 11:59:34 +0000 2011","favourites_count":1817,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9739,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1211157072147931136\/KkQZXwTA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211157072147931136\/KkQZXwTA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/304958799\/1534290609","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":946,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632516755456,"id_str":"1234895632516755456","text":"RT - @WarsontheBrink: I appreciate WHO\u2019s stance to explain the World today - about the difference between a normal flu and #coronavirus which I\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[119,131]}],"symbols":[],"user_mentions":[{"screen_name":"WarsontheBrink","name":"\ud83d\udea8Wars - on the Brink \ud83c\udd59 (current focus coronavirus)","id":2885563465,"id_str":"2885563465","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91972040,"id_str":"91972040","name":"Aman-ul-haq","screen_name":"haq_optimist","location":"Karachi, - Pakistan ","description":"I''m proud of my heart\nIt is been played, stabbed - with fake promises but hey, i survived the onslaught and here i m still\nOPTIMISTIC - \ud83d\ude0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1062,"friends_count":3220,"listed_count":4,"created_at":"Mon - Nov 23 09:31:15 +0000 2009","favourites_count":144032,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":80718,"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\/1228870658488229889\/GZWNclZ1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228870658488229889\/GZWNclZ1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91972040\/1572582185","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:30:49 +0000 2020","id":1234894007832055808,"id_str":"1234894007832055808","text":"I - appreciate WHO\u2019s stance to explain the World today about the difference - between a normal flu and #coronavirus whi\u2026 https:\/\/t.co\/YQo8plpBIQ","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[99,111]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YQo8plpBIQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234894007832055808","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2885563465,"id_str":"2885563465","name":"\ud83d\udea8Wars - on the Brink \ud83c\udd59 (current focus coronavirus)","screen_name":"WarsontheBrink","location":"World","description":"Covering - Geostrategic & GeoPolitical Developments from around the World. Open Source - Intelligence |#OSINT|. Against Dictatorship & Communism. #EndRacism","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13567,"friends_count":487,"listed_count":154,"created_at":"Fri - Oct 31 17:54:20 +0000 2014","favourites_count":4379,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9985,"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\/1232568112349958145\/_D8mEx2k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232568112349958145\/_D8mEx2k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2885563465\/1581756927","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":17,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632516685825,"id_str":"1234895632516685825","text":"RT - @mollyhc: Speaking of coronavirus, Ilhan Omar is asking everyone at this Bernie - rally to hold hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mollyhc","name":"Molly - Hensley-Clancy","id":308658903,"id_str":"308658903","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14616404,"id_str":"14616404","name":"jckthesword","screen_name":"jckthesword","location":"MD\/DE, - DC Metro Area, USA","description":"Christian, Conservative turned Progressive - in the era of Trump, Following and supporting Freedom in the Middle East since - the 2009 Iranian green movement.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":988,"friends_count":1511,"listed_count":4,"created_at":"Thu - May 01 16:51:53 +0000 2008","favourites_count":314259,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":388576,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/995758766493708288\/kOT3cMDD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/995758766493708288\/kOT3cMDD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 01:54:30 +0000 2020","id":1234658376442761219,"id_str":"1234658376442761219","text":"Speaking - of coronavirus, Ilhan Omar is asking everyone at this Bernie rally to hold - hands","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":308658903,"id_str":"308658903","name":"Molly - Hensley-Clancy","screen_name":"mollyhc","location":"Washington, DC","description":"BuzzFeed - News reporter covering national politics and the Democratic Party. Minnesotan. - I also tweet about women''s soccer. Tips to molly.hc@buzzfeed.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17099,"friends_count":1274,"listed_count":576,"created_at":"Tue - May 31 19:45:01 +0000 2011","favourites_count":13446,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5209,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152656913001320449\/s5xnG6Ut_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152656913001320449\/s5xnG6Ut_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/308658903\/1567286407","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":367,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":81,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632424480768,"id_str":"1234895632424480768","text":"RT - @LeMendibilien: le coronavirus qd il voit qu''on parle de lui dans tous les - medias et sur toutes les cha\u00eenes : https:\/\/t.co\/9FFGomj5YZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeMendibilien","name":"useless - king","id":3173646139,"id_str":"3173646139","indices":[3,17]}],"urls":[],"media":[{"id":1231276948703318016,"id_str":"1231276948703318016","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1231276948703318016\/pu\/img\/Oa65yuo8S52Qfdc9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1231276948703318016\/pu\/img\/Oa65yuo8S52Qfdc9.jpg","url":"https:\/\/t.co\/9FFGomj5YZ","display_url":"pic.twitter.com\/9FFGomj5YZ","expanded_url":"https:\/\/twitter.com\/OOCSUPERNANNY\/status\/1231277045000347650\/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":1231277045000347650,"source_status_id_str":"1231277045000347650","source_user_id":1206702708159373312,"source_user_id_str":"1206702708159373312"}]},"extended_entities":{"media":[{"id":1231276948703318016,"id_str":"1231276948703318016","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1231276948703318016\/pu\/img\/Oa65yuo8S52Qfdc9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1231276948703318016\/pu\/img\/Oa65yuo8S52Qfdc9.jpg","url":"https:\/\/t.co\/9FFGomj5YZ","display_url":"pic.twitter.com\/9FFGomj5YZ","expanded_url":"https:\/\/twitter.com\/OOCSUPERNANNY\/status\/1231277045000347650\/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":1231277045000347650,"source_status_id_str":"1231277045000347650","source_user_id":1206702708159373312,"source_user_id_str":"1206702708159373312","video_info":{"aspect_ratio":[16,9],"duration_millis":6667,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1231276948703318016\/pu\/vid\/640x360\/P1Q0XPu6A8dCdIEq.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1231276948703318016\/pu\/pl\/S2x06Y6DY6PzzvTC.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1231276948703318016\/pu\/vid\/480x270\/OqoZvU1eMIKTUly6.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1231276948703318016\/pu\/vid\/1280x720\/dHP3uyPYI4BQdH_2.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":700762381543079936,"id_str":"700762381543079936","name":"YELLOW - IS THE NEW BLACK","screen_name":"thatisyellow","location":"Calabasas, CA","description":"Who - ever gassed ''em ain''t none of my concern But, see, the Lord showed me dreams - to confirm \ud83c\uddeb\ud83c\uddf7\ud83c\udde9\ud83c\uddff Instagram: yellow.print","url":"https:\/\/t.co\/xM6aiRt85N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xM6aiRt85N","expanded_url":"https:\/\/instagram.com\/yellow.print?igshid=bgrz9lvbjtn1","display_url":"instagram.com\/yellow.print?i\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":51,"listed_count":0,"created_at":"Fri - Feb 19 19:22:26 +0000 2016","favourites_count":285,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":320,"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\/1163821697302032388\/6LVg2uBE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163821697302032388\/6LVg2uBE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/700762381543079936\/1562089940","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 17:15:21 +0000 2020","id":1233802951027765248,"id_str":"1233802951027765248","text":"le - coronavirus qd il voit qu''on parle de lui dans tous les medias et sur toutes - les cha\u00eenes : https:\/\/t.co\/9FFGomj5YZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1231276948703318016,"id_str":"1231276948703318016","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1231276948703318016\/pu\/img\/Oa65yuo8S52Qfdc9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1231276948703318016\/pu\/img\/Oa65yuo8S52Qfdc9.jpg","url":"https:\/\/t.co\/9FFGomj5YZ","display_url":"pic.twitter.com\/9FFGomj5YZ","expanded_url":"https:\/\/twitter.com\/OOCSUPERNANNY\/status\/1231277045000347650\/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":1231277045000347650,"source_status_id_str":"1231277045000347650","source_user_id":1206702708159373312,"source_user_id_str":"1206702708159373312"}]},"extended_entities":{"media":[{"id":1231276948703318016,"id_str":"1231276948703318016","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1231276948703318016\/pu\/img\/Oa65yuo8S52Qfdc9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1231276948703318016\/pu\/img\/Oa65yuo8S52Qfdc9.jpg","url":"https:\/\/t.co\/9FFGomj5YZ","display_url":"pic.twitter.com\/9FFGomj5YZ","expanded_url":"https:\/\/twitter.com\/OOCSUPERNANNY\/status\/1231277045000347650\/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":1231277045000347650,"source_status_id_str":"1231277045000347650","source_user_id":1206702708159373312,"source_user_id_str":"1206702708159373312","video_info":{"aspect_ratio":[16,9],"duration_millis":6667,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1231276948703318016\/pu\/vid\/640x360\/P1Q0XPu6A8dCdIEq.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1231276948703318016\/pu\/pl\/S2x06Y6DY6PzzvTC.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1231276948703318016\/pu\/vid\/480x270\/OqoZvU1eMIKTUly6.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1231276948703318016\/pu\/vid\/1280x720\/dHP3uyPYI4BQdH_2.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3173646139,"id_str":"3173646139","name":"useless - king","screen_name":"LeMendibilien","location":"Bordeaux ","description":"j''mappelle - Killian, comme le joueur de foot connu sauf que jsuis pas connu, pauvre, que - j''aime pas le foot et que je pose souvent mon coude sur des miettes","url":"https:\/\/t.co\/O60jwbKUcj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/O60jwbKUcj","expanded_url":"https:\/\/www.instagram.com\/killian__lab\/","display_url":"instagram.com\/killian__lab\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8654,"friends_count":373,"listed_count":130,"created_at":"Sat - Apr 25 23:05:05 +0000 2015","favourites_count":46431,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":58154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234270379654381571\/13IE11gg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234270379654381571\/13IE11gg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3173646139\/1575248067","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":282,"favorite_count":742,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":282,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632323641344,"id_str":"1234895632323641344","text":"RT - @prabhatkhabar: #Coronavirus : \u0906\u0908\u092a\u0940\u090f\u0932 \u092e\u0947\u0902 - \u092d\u0940 \u0915\u094b\u0930\u094b\u0928\u093e \u0935\u093e\u092f\u0930\u0938 - \u0915\u093e \u092d\u092f, \u0938\u094d\u0925\u093f\u0924\u093f \u092a\u0930 - \u0905\u0927\u093f\u0915\u093e\u0930\u093f\u092f\u094b\u0902 \u0915\u0940 - \u0928\u091c\u0930\n#IPL2020 \n\nhttps:\/\/t.co\/66j8MEuhH5","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[19,31]},{"text":"IPL2020","indices":[96,104]}],"symbols":[],"user_mentions":[{"screen_name":"prabhatkhabar","name":"Prabhat - Khabar","id":2354323903,"id_str":"2354323903","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/66j8MEuhH5","expanded_url":"https:\/\/www.prabhatkhabar.com\/sports\/cricket\/ipl-indian-premier-league-corona-virus-risk-of-infection-chennai-super-kings-and-mumbai-indians","display_url":"prabhatkhabar.com\/sports\/cricket\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":167272426,"id_str":"167272426","name":"Chhota - Maithun","screen_name":"Begin_Humor","location":"Earth","description":"Proud - water boy of our gully cricket team in my childhood.\nIndian by birth, Jharkhandi - by ancestors, Bangalorean by job.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7534,"friends_count":263,"listed_count":23,"created_at":"Fri - Jul 16 04:38:57 +0000 2010","favourites_count":19159,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27277,"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\/1225262890120146945\/6Co9uSF-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225262890120146945\/6Co9uSF-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167272426\/1577977429","profile_link_color":"F442D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:36:22 +0000 2020","id":1234895404140879872,"id_str":"1234895404140879872","text":"#Coronavirus - : \u0906\u0908\u092a\u0940\u090f\u0932 \u092e\u0947\u0902 \u092d\u0940 \u0915\u094b\u0930\u094b\u0928\u093e - \u0935\u093e\u092f\u0930\u0938 \u0915\u093e \u092d\u092f, \u0938\u094d\u0925\u093f\u0924\u093f - \u092a\u0930 \u0905\u0927\u093f\u0915\u093e\u0930\u093f\u092f\u094b\u0902 - \u0915\u0940 \u0928\u091c\u0930\n#IPL2020 \n\nhttps:\/\/t.co\/66j8MEuhH5","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]},{"text":"IPL2020","indices":[77,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/66j8MEuhH5","expanded_url":"https:\/\/www.prabhatkhabar.com\/sports\/cricket\/ipl-indian-premier-league-corona-virus-risk-of-infection-chennai-super-kings-and-mumbai-indians","display_url":"prabhatkhabar.com\/sports\/cricket\u2026","indices":[88,111]}]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2354323903,"id_str":"2354323903","name":"Prabhat - Khabar","screen_name":"prabhatkhabar","location":"India","description":"Welcome - to the Official Twitter page of Largest read Hindi News Daily. India \u00b7 - http:\/\/t.co\/ufeS56ssZl","url":"http:\/\/t.co\/ljmsAO5U08","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ljmsAO5U08","expanded_url":"http:\/\/www.prabhatkhabar.com\/","display_url":"prabhatkhabar.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/ufeS56ssZl","expanded_url":"http:\/\/prabhatkhabar.com","display_url":"prabhatkhabar.com","indices":[79,101]}]}},"protected":false,"followers_count":36199,"friends_count":469,"listed_count":97,"created_at":"Fri - Feb 21 05:57:07 +0000 2014","favourites_count":775,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":42798,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5FAFA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213034004062056448\/hqWCPg7M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213034004062056448\/hqWCPg7M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2354323903\/1581486505","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"},"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":"hi"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"hi"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632243904512,"id_str":"1234895632243904512","text":"RT - @ClinChemDoc: #Coronavirus Update: FDA Issues New Policy to Help Expedite - Availability of Diagnostics https:\/\/t.co\/j5N9V5DySf","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[17,29]}],"symbols":[],"user_mentions":[{"screen_name":"ClinChemDoc","name":"David - Grenache, PhD","id":293726146,"id_str":"293726146","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/j5N9V5DySf","expanded_url":"https:\/\/buff.ly\/2Icp6s6","display_url":"buff.ly\/2Icp6s6","indices":[105,128]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":300378085,"id_str":"300378085","name":"Laura - Parnas","screen_name":"LauraParnas","location":"Danville, CA","description":"PhD - Clinical Chemist. Passionate about Lab Medicine, Food Lover, Addicted to Travel - and Family. Views my own. RTs not endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":575,"friends_count":625,"listed_count":51,"created_at":"Tue - May 17 17:25:15 +0000 2011","favourites_count":1862,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2261,"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\/741675553372045313\/3OYpGg_U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/741675553372045313\/3OYpGg_U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300378085\/1465663934","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 15:50:57 +0000 2020","id":1234868876095164417,"id_str":"1234868876095164417","text":"#Coronavirus - Update: FDA Issues New Policy to Help Expedite Availability of Diagnostics - https:\/\/t.co\/j5N9V5DySf","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j5N9V5DySf","expanded_url":"https:\/\/buff.ly\/2Icp6s6","display_url":"buff.ly\/2Icp6s6","indices":[88,111]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":293726146,"id_str":"293726146","name":"David - Grenache, PhD","screen_name":"ClinChemDoc","location":"Albuquerque, NM","description":"CSO\/Clinical - Chemist @TriCoreLabs | Clinical Prof of Pathology @UNM | President-elect @_AACC - | #LabMed | #ClinicalChemistry | #DigitalHealth | Tweets my own","url":"https:\/\/t.co\/HjHshK5lRN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HjHshK5lRN","expanded_url":"https:\/\/pages.lls.org\/mwoy\/nm\/nm20\/dgrenache","display_url":"pages.lls.org\/mwoy\/nm\/nm20\/d\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1209,"friends_count":220,"listed_count":66,"created_at":"Thu - May 05 21:27:10 +0000 2011","favourites_count":507,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2699,"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\/1003364937203310592\/LdgANw5Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1003364937203310592\/LdgANw5Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293726146\/1582810103","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"},"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632185331713,"id_str":"1234895632185331713","text":"RT - @LibsInAmerica: Azar in the crosshairs for delays in virus tests\n\nHHS\u2019 - slow response was traced to the secretary\u2019s distrust of aides and\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LibsInAmerica","name":"LiA","id":898533348,"id_str":"898533348","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":840555645518528512,"id_str":"840555645518528512","name":"BiteMe","screen_name":"BiteMeBud","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":265,"listed_count":2,"created_at":"Sat - Mar 11 13:30:57 +0000 2017","favourites_count":162670,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36879,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/856701707601944576\/Z5Wxji_l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/856701707601944576\/Z5Wxji_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:21:41 +0000 2020","id":1234891709781356547,"id_str":"1234891709781356547","text":"Azar - in the crosshairs for delays in virus tests\n\nHHS\u2019 slow response was - traced to the secretary\u2019s distrust of aide\u2026 https:\/\/t.co\/klpMiNVuT6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/klpMiNVuT6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234891709781356547","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":898533348,"id_str":"898533348","name":"LiA","screen_name":"LibsInAmerica","location":"United - States","description":"2020 = Blue Senate \/ Blue President","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110150,"friends_count":104574,"listed_count":444,"created_at":"Mon - Oct 22 22:13:25 +0000 2012","favourites_count":143562,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":178880,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1113936460510576645\/MHPoWVFm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1113936460510576645\/MHPoWVFm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/898533348\/1557794214","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":18,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895632038551552,"id_str":"1234895632038551552","text":"@JorgEriks - @je_boi_69 @beachlife5555 @rsnblefacsimile @edokeefe @BernieSanders A socialist - adding Democrat is about\u2026 https:\/\/t.co\/5tAXFVg46A","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JorgEriks","name":"Joggas","id":1057746523,"id_str":"1057746523","indices":[0,10]},{"screen_name":"je_boi_69","name":"je - boi","id":848600906090373120,"id_str":"848600906090373120","indices":[11,21]},{"screen_name":"beachlife5555","name":"Tracy - Morris","id":823172013007241216,"id_str":"823172013007241216","indices":[22,36]},{"screen_name":"rsnblefacsimile","name":"\ud83d\udde3 - PalateandPage","id":1059870905151569920,"id_str":"1059870905151569920","indices":[37,53]},{"screen_name":"edokeefe","name":"Ed - O''Keefe","id":16930125,"id_str":"16930125","indices":[54,63]},{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[64,78]}],"urls":[{"url":"https:\/\/t.co\/5tAXFVg46A","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895632038551552","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234892610621313026,"in_reply_to_status_id_str":"1234892610621313026","in_reply_to_user_id":1057746523,"in_reply_to_user_id_str":"1057746523","in_reply_to_screen_name":"JorgEriks","user":{"id":250490788,"id_str":"250490788","name":"InsatiableGenius","screen_name":"insatiablegen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":238,"listed_count":0,"created_at":"Fri - Feb 11 05:38:56 +0000 2011","favourites_count":179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631912755200,"id_str":"1234895631912755200","text":"Over - the past weeks, our armed forces have been working on the front lines to prevent - the spread of #coronavirus. H\u2026 https:\/\/t.co\/XPTvhspr8C","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[100,112]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XPTvhspr8C","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895631912755200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":289118612,"id_str":"289118612","name":"Tomthunkit\u2122","screen_name":"TomthunkitsMind","location":"Atlanta, - GA","description":"Tomthunkit''s Mind Diner is open 24\/7. All-you-can-eat - smorgasbord of hand-picked deliciously sweet tweets for your political palate. - Donations Welcome.","url":"https:\/\/t.co\/QXUxZhjYl6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QXUxZhjYl6","expanded_url":"https:\/\/www.gofundme.com\/tomthunkit039s-mind-diner","display_url":"gofundme.com\/tomthunkit039s\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":68179,"friends_count":62503,"listed_count":1050,"created_at":"Thu - Apr 28 01:56:15 +0000 2011","favourites_count":21054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2337662,"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\/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\/1071761767611670533\/vNTh69MD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1071761767611670533\/vNTh69MD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289118612\/1544363921","profile_link_color":"FF691F","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"},"geo":null,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631908507650,"id_str":"1234895631908507650","text":"@ginesggarcia - menos mal que el.coronavirus no llegaba al pais. Me cago en la.declaracion - jurada y en su ineficiencia.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ginesggarcia","name":"Gines - Gonz\u00e1lez Garc\u00eda","id":229457613,"id_str":"229457613","indices":[0,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":229457613,"in_reply_to_user_id_str":"229457613","in_reply_to_screen_name":"ginesggarcia","user":{"id":942661572,"id_str":"942661572","name":"didi","screen_name":"diani_31","location":"","description":"pero - mi vida se detuvo en tu mirar\u2764\u2764\u2764","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":112,"listed_count":1,"created_at":"Mon - Nov 12 02:16:27 +0000 2012","favourites_count":425,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123611453091667971\/-lGFJeEG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123611453091667971\/-lGFJeEG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/942661572\/1519132461","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631904366592,"id_str":"1234895631904366592","text":"Global - supplier India curbs drug exports as coronavirus fears\u00a0grow https:\/\/t.co\/mAN6XmMJoC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mAN6XmMJoC","expanded_url":"https:\/\/www.articletrunk.com\/global-supplier-india-curbs-drug-exports-as-coronavirus-fears-grow\/","display_url":"articletrunk.com\/global-supplie\u2026","indices":[67,90]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.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,"user":{"id":204959977,"id_str":"204959977","name":"TheArticleTrunk","screen_name":"TheArticleTrunk","location":"New - York, New York","description":"Articles from around the web. We follow all - who follow us. :)","url":"http:\/\/t.co\/owVyQ3z0Ml","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/owVyQ3z0Ml","expanded_url":"http:\/\/www.articletrunk.com","display_url":"articletrunk.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":912,"friends_count":1715,"listed_count":27,"created_at":"Tue - Oct 19 21:16:00 +0000 2010","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":274692,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1670533112\/logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1670533112\/logo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204959977\/1403881605","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"},"geo":null,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631828889603,"id_str":"1234895631828889603","text":"RT - @BridgetSterli19: That #coronavirus really wants to kill more people, but - those interest rates are too damn low! I mean, Louis Pasteur h\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[26,38]}],"symbols":[],"user_mentions":[{"screen_name":"BridgetSterli19","name":"Bridget - Resists \ud83d\uddfd\ud83c\uddfa\ud83c\uddf8\ud83c\udf0a\u270a\u2764\ufe0f","id":1095364283834105856,"id_str":"1095364283834105856","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":28997676,"id_str":"28997676","name":"Bob - Darin","screen_name":"BobDarrin","location":"Meridian, Mississippi","description":"Never - Trump, Never Bernie, and Never Tulsi. #Resist \ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a - It\u2019s 2019. nobody should be clicking on links like true tweet or opening - attachments.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24197,"friends_count":24009,"listed_count":12,"created_at":"Sun - Apr 05 14:47:55 +0000 2009","favourites_count":32114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42925,"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\/1911078183\/images_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1911078183\/images_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28997676\/1530165656","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:21:46 +0000 2020","id":1234891732447154176,"id_str":"1234891732447154176","text":"That - #coronavirus really wants to kill more people, but those interest rates are - too damn low! I mean, Louis Pasteu\u2026 https:\/\/t.co\/4sMylQ5U7N","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[5,17]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4sMylQ5U7N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234891732447154176","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095364283834105856,"id_str":"1095364283834105856","name":"Bridget - Resists \ud83d\uddfd\ud83c\uddfa\ud83c\uddf8\ud83c\udf0a\u270a\u2764\ufe0f","screen_name":"BridgetSterli19","location":"","description":"We - owe it to ourselves and future generations to fight evil wherever we see it. - Let''s take our country back. #TheResistance #Resist #ImpeachTrumpNow #FBR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30889,"friends_count":18293,"listed_count":28,"created_at":"Tue - Feb 12 16:49:30 +0000 2019","favourites_count":137351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55476,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222663787536211968\/G5r5XU12_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222663787536211968\/G5r5XU12_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095364283834105856\/1550073691","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234874258305802240,"quoted_status_id_str":"1234874258305802240","quoted_status":{"created_at":"Tue - Mar 03 16:12:20 +0000 2020","id":1234874258305802240,"id_str":"1234874258305802240","text":"In - response to #coronavirus, the Federal Reserve made an emergency interest-rate - cut, slashing it by 0.5%, its bigg\u2026 https:\/\/t.co\/0mAnWWqYNs","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[15,27]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0mAnWWqYNs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234874258305802240","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1651522832,"id_str":"1651522832","name":"Dr. - Dena Grayson","screen_name":"DrDenaGrayson","location":"Florida","description":"Patriotic - liberal. Former Democratic candidate for U.S. Congress, physician (MD) and - scientist (PhD). Expert on #Ebola and other #pandemic threats.","url":"https:\/\/t.co\/5BmBFaFyit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5BmBFaFyit","expanded_url":"http:\/\/denagrayson.com","display_url":"denagrayson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":231244,"friends_count":333,"listed_count":1443,"created_at":"Tue - Aug 06 23:34:40 +0000 2013","favourites_count":157303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":63563,"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\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1651522832\/1541350200","profile_link_color":"0000E5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":214,"favorite_count":550,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":37,"favorite_count":70,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234874258305802240,"quoted_status_id_str":"1234874258305802240","retweet_count":37,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631816241153,"id_str":"1234895631816241153","text":"RT - @djrothkopf: New from CDC: The best way to contain many of the worst consequences - of the coronavirus outbreak would be to cover Donald T\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"djrothkopf","name":"David - Rothkopf","id":402888514,"id_str":"402888514","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":782714414462033921,"id_str":"782714414462033921","name":"Navy_Man","screen_name":"Submarine_Guy","location":"Connecticut - ","description":"Submariners are among the most highly trained Navy service - members #BlackLivesMatter #LGBTQRights #VetsAgainstTrump #SteelersNation #Resist - #VoteBlue #KHive","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12109,"friends_count":13288,"listed_count":63,"created_at":"Sun - Oct 02 22:50:33 +0000 2016","favourites_count":146351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":195890,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191710820390096896\/TC7548cW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191710820390096896\/TC7548cW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/782714414462033921\/1541946802","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:07:06 +0000 2020","id":1234872938802884608,"id_str":"1234872938802884608","text":"New - from CDC: The best way to contain many of the worst consequences of the coronavirus - outbreak would be to cover\u2026 https:\/\/t.co\/Ksrxz4JwkI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ksrxz4JwkI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234872938802884608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402888514,"id_str":"402888514","name":"David - Rothkopf","screen_name":"djrothkopf","location":"Washington, DC & New York - City","description":"Proud father of J & L, husband of C, CEO, TRG, host, - Deep State Radio; next book-\"Traitor: A History of American Betrayal from - Benedict Arnold to Donald Trump.\"","url":"https:\/\/t.co\/h7Tw2QSBuh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/h7Tw2QSBuh","expanded_url":"http:\/\/therothkopfgroup.com","display_url":"therothkopfgroup.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":166839,"friends_count":5532,"listed_count":2389,"created_at":"Tue - Nov 01 18:29:28 +0000 2011","favourites_count":20118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":129265,"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\/1617758853\/DJR_TWITTER_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1617758853\/DJR_TWITTER_5_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":224,"favorite_count":743,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":224,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631816196100,"id_str":"1234895631816196100","text":"RT - @MarcoVillalba5: Porque no le agarra coronavirus a esta hija de re mil puta","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarcoVillalba5","name":"Marco\ud83c\udccf","id":868905283,"id_str":"868905283","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1167955045444390912,"id_str":"1167955045444390912","name":"juAna","screen_name":"ciuffojuana1","location":"Buenos - Aires, Argentina","description":"a laburar que de la facha no se vive","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":104,"listed_count":0,"created_at":"Sun - Sep 01 00:19:28 +0000 2019","favourites_count":11290,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6399,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231335508405620739\/EHptOVM-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231335508405620739\/EHptOVM-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1167955045444390912\/1581534748","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:33:39 +0000 2020","id":1234879623676284933,"id_str":"1234879623676284933","text":"Porque - no le agarra coronavirus a esta hija de re mil puta https:\/\/t.co\/hQ7Vytwd4S","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hQ7Vytwd4S","expanded_url":"https:\/\/twitter.com\/lanacion\/status\/1234579366790615040","display_url":"twitter.com\/lanacion\/statu\u2026","indices":[59,82]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":868905283,"id_str":"868905283","name":"Marco\ud83c\udccf","screen_name":"MarcoVillalba5","location":"Valentin - Alsina, Lanus Oeste","description":"Juego al lol, y? Fanatico Enfermo - de LeBron James\ud83c\udfc0\ud83d\udc51","url":"https:\/\/t.co\/cvqZTEcAmB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cvqZTEcAmB","expanded_url":"http:\/\/www.instagram.com\/marcovillalba14","display_url":"instagram.com\/marcovillalba14","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9530,"friends_count":6439,"listed_count":4,"created_at":"Mon - Oct 08 23:59:49 +0000 2012","favourites_count":22847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39803,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232710334999339008\/B8y5iwp6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232710334999339008\/B8y5iwp6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/868905283\/1566533427","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234579366790615040,"quoted_status_id_str":"1234579366790615040","quoted_status":{"created_at":"Mon - Mar 02 20:40:33 +0000 2020","id":1234579366790615040,"id_str":"1234579366790615040","text":"Amalia - Granata: \"Los femicidios tambi\u00e9n suceden, \u00bflos legalizamos?\" https:\/\/t.co\/gHuTS3ZVc5 - https:\/\/t.co\/uI5bjgPAMV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gHuTS3ZVc5","expanded_url":"http:\/\/dlvr.it\/RR6Qwr","display_url":"dlvr.it\/RR6Qwr","indices":[68,91]}],"media":[{"id":1234579363519070208,"id_str":"1234579363519070208","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/ESIbY9mVAAA6Zk4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESIbY9mVAAA6Zk4.jpg","url":"https:\/\/t.co\/uI5bjgPAMV","display_url":"pic.twitter.com\/uI5bjgPAMV","expanded_url":"https:\/\/twitter.com\/LANACION\/status\/1234579366790615040\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2000,"h":1333,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234579363519070208,"id_str":"1234579363519070208","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/ESIbY9mVAAA6Zk4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESIbY9mVAAA6Zk4.jpg","url":"https:\/\/t.co\/uI5bjgPAMV","display_url":"pic.twitter.com\/uI5bjgPAMV","expanded_url":"https:\/\/twitter.com\/LANACION\/status\/1234579366790615040\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2000,"h":1333,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":33989170,"id_str":"33989170","name":"LA - NACION","screen_name":"LANACION","location":"Argentina","description":"Noticias - de LA NACION. Informaci\u00f3n confiable y los mejores an\u00e1lisis de la - realidad.","url":"http:\/\/t.co\/Swk4TRMyc9","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Swk4TRMyc9","expanded_url":"http:\/\/www.lanacion.com.ar","display_url":"lanacion.com.ar","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3319433,"friends_count":227,"listed_count":10613,"created_at":"Tue - Apr 21 18:21:44 +0000 2009","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":337219,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"E8E8E8","profile_background_image_url":"http:\/\/abs.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\/1156955281588461569\/3KWGS39P_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1156955281588461569\/3KWGS39P_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33989170\/1564780163","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D7D7D7","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":472,"favorite_count":2164,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":96,"favorite_count":258,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1234579366790615040,"quoted_status_id_str":"1234579366790615040","retweet_count":96,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631770148866,"id_str":"1234895631770148866","text":"RT - @Klass_27: Los Twitteros de Argentina recibiendo al Coronavirus https:\/\/t.co\/hP7ku3SLLM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Klass_27","name":"#Zede22\u5f61","id":2250690337,"id_str":"2250690337","indices":[3,12]}],"urls":[],"media":[{"id":1234893383216369666,"id_str":"1234893383216369666","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234893383216369666\/pu\/img\/5EzqhMwNOUDmwjKP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234893383216369666\/pu\/img\/5EzqhMwNOUDmwjKP.jpg","url":"https:\/\/t.co\/hP7ku3SLLM","display_url":"pic.twitter.com\/hP7ku3SLLM","expanded_url":"https:\/\/twitter.com\/Klass_27\/status\/1234893572652126209\/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":1234893572652126209,"source_status_id_str":"1234893572652126209","source_user_id":2250690337,"source_user_id_str":"2250690337"}]},"extended_entities":{"media":[{"id":1234893383216369666,"id_str":"1234893383216369666","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234893383216369666\/pu\/img\/5EzqhMwNOUDmwjKP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234893383216369666\/pu\/img\/5EzqhMwNOUDmwjKP.jpg","url":"https:\/\/t.co\/hP7ku3SLLM","display_url":"pic.twitter.com\/hP7ku3SLLM","expanded_url":"https:\/\/twitter.com\/Klass_27\/status\/1234893572652126209\/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":1234893572652126209,"source_status_id_str":"1234893572652126209","source_user_id":2250690337,"source_user_id_str":"2250690337","video_info":{"aspect_ratio":[9,16],"duration_millis":6392,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234893383216369666\/pu\/vid\/320x568\/f-bYzuAA5RHaOZAe.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234893383216369666\/pu\/vid\/360x640\/xSMCPLRhh980ATNP.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234893383216369666\/pu\/pl\/0ROLQl7hjCZ4CrWi.m3u8?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2250690337,"id_str":"2250690337","name":"#Zede22\u5f61","screen_name":"Klass_27","location":"Argentina","description":"\ud83c\uddf5\ud83c\uddf1R\u03b9v\u1971rP\u1963\u1972t\u1971\u1952s\u1971\ud83c\uddee\ud83c\udde9 \u25c0#StayPositive\u25b6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":647,"listed_count":0,"created_at":"Tue - Dec 17 16:54:23 +0000 2013","favourites_count":230,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6758,"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\/1232890694378938368\/5PnMhY_t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232890694378938368\/5PnMhY_t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2250690337\/1582779060","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"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":208738735,"id_str":"208738735","name":"Ignacio - Lanzavecchia","screen_name":"ignaciolanz","location":"Villa urquiza","description":"Abogado","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":170,"listed_count":0,"created_at":"Wed - Oct 27 21:16:17 +0000 2010","favourites_count":268,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1546,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D0E0F","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\/1011818266195582976\/mhsOdQMl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1011818266195582976\/mhsOdQMl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/208738735\/1578512683","profile_link_color":"8F9EA3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:29:05 +0000 2020","id":1234893572652126209,"id_str":"1234893572652126209","text":"Los - Twitteros de Argentina recibiendo al Coronavirus https:\/\/t.co\/hP7ku3SLLM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234893383216369666,"id_str":"1234893383216369666","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234893383216369666\/pu\/img\/5EzqhMwNOUDmwjKP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234893383216369666\/pu\/img\/5EzqhMwNOUDmwjKP.jpg","url":"https:\/\/t.co\/hP7ku3SLLM","display_url":"pic.twitter.com\/hP7ku3SLLM","expanded_url":"https:\/\/twitter.com\/Klass_27\/status\/1234893572652126209\/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"}}}]},"extended_entities":{"media":[{"id":1234893383216369666,"id_str":"1234893383216369666","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234893383216369666\/pu\/img\/5EzqhMwNOUDmwjKP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234893383216369666\/pu\/img\/5EzqhMwNOUDmwjKP.jpg","url":"https:\/\/t.co\/hP7ku3SLLM","display_url":"pic.twitter.com\/hP7ku3SLLM","expanded_url":"https:\/\/twitter.com\/Klass_27\/status\/1234893572652126209\/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"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":6392,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234893383216369666\/pu\/vid\/320x568\/f-bYzuAA5RHaOZAe.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234893383216369666\/pu\/vid\/360x640\/xSMCPLRhh980ATNP.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234893383216369666\/pu\/pl\/0ROLQl7hjCZ4CrWi.m3u8?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2250690337,"id_str":"2250690337","name":"#Zede22\u5f61","screen_name":"Klass_27","location":"Argentina","description":"\ud83c\uddf5\ud83c\uddf1R\u03b9v\u1971rP\u1963\u1972t\u1971\u1952s\u1971\ud83c\uddee\ud83c\udde9 \u25c0#StayPositive\u25b6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":647,"listed_count":0,"created_at":"Tue - Dec 17 16:54:23 +0000 2013","favourites_count":230,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6758,"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\/1232890694378938368\/5PnMhY_t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232890694378938368\/5PnMhY_t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2250690337\/1582779060","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631589789697,"id_str":"1234895631589789697","text":"RT - @laderechadiario: \ud83c\udde6\ud83c\uddf7 | #Argentina #AHORA: se acaba de - confirmar el primer caso de coronavirus en la Ciudad de Buenos Aires. A las - 15hs e\u2026","truncated":false,"entities":{"hashtags":[{"text":"Argentina","indices":[26,36]},{"text":"AHORA","indices":[37,43]}],"symbols":[],"user_mentions":[{"screen_name":"laderechadiario","name":"La - Derecha Diario","id":1169664359628509184,"id_str":"1169664359628509184","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3693375437,"id_str":"3693375437","name":"guido","screen_name":"guido_m_GZ","location":"Chaco, - Argentina","description":"Cuando la patria est\u00e1 en peligro todo est\u00e1 - permitido, excepto no defenderla.\ud83c\udde6\ud83c\uddf7","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":154,"friends_count":137,"listed_count":1,"created_at":"Fri - Sep 18 05:36:26 +0000 2015","favourites_count":9046,"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":"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\/1076528585651957761\/iE5OjCws_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1076528585651957761\/iE5OjCws_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3693375437\/1577981068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:34:03 +0000 2020","id":1234894822751789056,"id_str":"1234894822751789056","text":"\ud83c\udde6\ud83c\uddf7 - | #Argentina #AHORA: se acaba de confirmar el primer caso de coronavirus en - la Ciudad de Buenos Aires. A las 15h\u2026 https:\/\/t.co\/o5YuWC1QHM","truncated":true,"entities":{"hashtags":[{"text":"Argentina","indices":[5,15]},{"text":"AHORA","indices":[16,22]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/o5YuWC1QHM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234894822751789056","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1169664359628509184,"id_str":"1169664359628509184","name":"La - Derecha Diario","screen_name":"laderechadiario","location":"Argentina","description":"Noticias - en Twitter. Te contamos lo que ning\u00fan otro medio te cuenta. Hacemos radio - en @laderecharadio. IG: https:\/\/t.co\/fn0a4LAjzS","url":"https:\/\/t.co\/ca5fEkcmBS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ca5fEkcmBS","expanded_url":"https:\/\/derechadiario.com.ar\/","display_url":"derechadiario.com.ar","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fn0a4LAjzS","expanded_url":"https:\/\/instagram.com\/laderechadiario?igshid=pk8y4bf8","display_url":"instagram.com\/laderechadiari\u2026","indices":[107,130]}]}},"protected":false,"followers_count":47426,"friends_count":49,"listed_count":97,"created_at":"Thu - Sep 05 17:32:23 +0000 2019","favourites_count":415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1205550267346931712\/0C_tEQif_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205550267346931712\/0C_tEQif_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169664359628509184\/1576217931","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":80,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":30,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631560261632,"id_str":"1234895631560261632","text":"@SolomonYue - @hkpoliceforce Yes,CCP\u2019s #HongKong police demons are rewarded after torturing, - raping&making freedom fi\u2026 https:\/\/t.co\/NexqFF2sfQ","truncated":true,"entities":{"hashtags":[{"text":"HongKong","indices":[37,46]}],"symbols":[],"user_mentions":[{"screen_name":"SolomonYue","name":"Solomon - Yue","id":1339488762,"id_str":"1339488762","indices":[0,11]},{"screen_name":"hkpoliceforce","name":"Hong - Kong Police Force","id":1057237461007396864,"id_str":"1057237461007396864","indices":[12,26]}],"urls":[{"url":"https:\/\/t.co\/NexqFF2sfQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895631560261632","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234111682001027072,"in_reply_to_status_id_str":"1234111682001027072","in_reply_to_user_id":1339488762,"in_reply_to_user_id_str":"1339488762","in_reply_to_screen_name":"SolomonYue","user":{"id":143130093,"id_str":"143130093","name":"Chris - C.","screen_name":"realkwong","location":"Hong Kong","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":152,"listed_count":1,"created_at":"Wed - May 12 17:32:06 +0000 2010","favourites_count":566,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":344,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144438251567996928\/aDsHBle9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144438251567996928\/aDsHBle9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143130093\/1561690252","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631480762369,"id_str":"1234895631480762369","text":"RT - @allisonpearson: Ordinary flu is generally killed off by the milder weather. - Anyone know if the same applies to Coronavirus?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"allisonpearson","name":"Allison - Pearson","id":137413599,"id_str":"137413599","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":868583022790144001,"id_str":"868583022790144001","name":"Chris - E","screen_name":"ChrisEly9","location":"London, England","description":"LSE - 1978-81 Eurobond Trader 81-97 Owner Ginger pub Co 98-18. Dislike extreme left - and right equally !","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":144,"friends_count":388,"listed_count":2,"created_at":"Sat - May 27 21:41:44 +0000 2017","favourites_count":13222,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1205104363271639041\/TUQsR1Ih_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205104363271639041\/TUQsR1Ih_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/868583022790144001\/1517236763","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 08:22:25 +0000 2020","id":1234755997333364737,"id_str":"1234755997333364737","text":"Ordinary - flu is generally killed off by the milder weather. Anyone know if the same - applies to Coronavirus?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137413599,"id_str":"137413599","name":"Allison - Pearson","screen_name":"allisonpearson","location":"Cambridge, UK","description":"Telegraph - columnist, apprentice mother, words nut, author How Hard Can It Be? Follows - anyone from Wales.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53557,"friends_count":13660,"listed_count":632,"created_at":"Mon - Apr 26 17:41:47 +0000 2010","favourites_count":2681,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":44909,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/689893297989509121\/CIfzAmmu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/689893297989509121\/CIfzAmmu_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":173,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":46,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631442989057,"id_str":"1234895631442989057","text":"@canal11hn - Muy buena accion de parte del Gobierno que busca como siempre lo mejor para - el pueblo, se est\u00e1n tomando\u2026 https:\/\/t.co\/kjoi2h6gxV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"canal11hn","name":"Canal - 11","id":142793710,"id_str":"142793710","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/kjoi2h6gxV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895631442989057","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1234892837067595776,"in_reply_to_status_id_str":"1234892837067595776","in_reply_to_user_id":142793710,"in_reply_to_user_id_str":"142793710","in_reply_to_screen_name":"canal11hn","user":{"id":1234887525883355142,"id_str":"1234887525883355142","name":"Melania - Cruz Martinez","screen_name":"MelaniaCruzMar1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":1,"listed_count":0,"created_at":"Tue - Mar 03 17:05:13 +0000 2020","favourites_count":0,"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\/1234887900354969603\/81Czo4cs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234887900354969603\/81Czo4cs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631367405569,"id_str":"1234895631367405569","text":"RT - @maustermuhle: .@MayorBowser has started a press briefing on D.C.''s preparedness - for the coronavirus. \"At this point, we have no confirm\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maustermuhle","name":"Martin - Austermuhle","id":148868920,"id_str":"148868920","indices":[3,16]},{"screen_name":"MayorBowser","name":"Mayor - Muriel Bowser","id":976542720,"id_str":"976542720","indices":[19,31]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966812520290947078,"id_str":"966812520290947078","name":"The - DC Line","screen_name":"dclinenews","location":"District of Columbia, USA","description":"DC - News, Views & Events \u2014 the information you need to fully engage in hometown - DC. An independent, nonprofit news source led by @CKain. https:\/\/t.co\/5CT2LCPxt9","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/5CT2LCPxt9","expanded_url":"http:\/\/facebook.com\/dclinenews","display_url":"facebook.com\/dclinenews","indices":[136,159]}]}},"protected":false,"followers_count":4504,"friends_count":2845,"listed_count":110,"created_at":"Thu - Feb 22 23:10:42 +0000 2018","favourites_count":150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31945,"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\/1007094935047360512\/kt8kjgVm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007094935047360512\/kt8kjgVm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/966812520290947078\/1528945418","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:16:49 +0000 2020","id":1234890484931317760,"id_str":"1234890484931317760","text":".@MayorBowser - has started a press briefing on D.C.''s preparedness for the coronavirus. - \"At this point, we have no c\u2026 https:\/\/t.co\/AfyUUUCweA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MayorBowser","name":"Mayor - Muriel Bowser","id":976542720,"id_str":"976542720","indices":[1,13]}],"urls":[{"url":"https:\/\/t.co\/AfyUUUCweA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234890484931317760","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148868920,"id_str":"148868920","name":"Martin - Austermuhle","screen_name":"maustermuhle","location":"Washington, D.C.","description":"Reporter, - @wamu885, D.C.''s NPR station. Former Editor-in-Chief, @dcist. Swiss-born, - Northeast D.C. resident, Dad. martin (at) wamu (dot) org, (202) 885-1283","url":"https:\/\/t.co\/iCPMMEHZc4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iCPMMEHZc4","expanded_url":"http:\/\/www.wamu.org","display_url":"wamu.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20689,"friends_count":4368,"listed_count":800,"created_at":"Thu - May 27 20:39:30 +0000 2010","favourites_count":10031,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":80865,"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\/936181048\/me2_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/936181048\/me2_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148868920\/1479088611","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":6,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631199723520,"id_str":"1234895631199723520","text":"\u00bfQu\u00e9 - va a hacer Gin\u00e9s ahora que hay un caso de coronavirus en el pa\u00eds, - luego de decir que no hab\u00eda posibilidad?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":366345129,"id_str":"366345129","name":"Luis - Garc\u00eda Vali\u00f1a","screen_name":"lgarciavalina","location":"-34.593481,-58.424877","description":"Tres - empanadas. Qu\u00e9 miseria.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":695,"friends_count":1110,"listed_count":3,"created_at":"Fri - Sep 02 00:50:58 +0000 2011","favourites_count":11962,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20409,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1001086853695639552\/Hp0bp3v5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1001086853695639552\/Hp0bp3v5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366345129\/1432292931","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631124246528,"id_str":"1234895631124246528","text":"RT - @jimohar: @into_the_brush @susie4equality Who knows how many people have been - exposed or already have #coronavirus We may never know b\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[105,117]}],"symbols":[],"user_mentions":[{"screen_name":"jimohar","name":"Jim - #Resists","id":210658819,"id_str":"210658819","indices":[3,11]},{"screen_name":"into_the_brush","name":"sketchy - lady","id":966500444632596480,"id_str":"966500444632596480","indices":[13,28]},{"screen_name":"susie4equality","name":"susie","id":15550962,"id_str":"15550962","indices":[29,44]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41816568,"id_str":"41816568","name":"Joan - Brooks","screen_name":"JoanMBrooks","location":"Philadelphia, PA","description":"Buried - in the layers of shit and shame is your treasure. I help you go in there and - take it back. Resistance, healing and dismantling white oppression.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":141,"listed_count":0,"created_at":"Fri - May 22 14:00:46 +0000 2009","favourites_count":10591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8916,"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\/895304885125689344\/AbxpgrvZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/895304885125689344\/AbxpgrvZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41816568\/1497638422","profile_link_color":"05444E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:20:48 +0000 2020","id":1234876388156563456,"id_str":"1234876388156563456","text":"@into_the_brush - @susie4equality Who knows how many people have been exposed or already have - #coronavirus We may n\u2026 https:\/\/t.co\/wL3nYQGxQo","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[92,104]}],"symbols":[],"user_mentions":[{"screen_name":"into_the_brush","name":"sketchy - lady","id":966500444632596480,"id_str":"966500444632596480","indices":[0,15]},{"screen_name":"susie4equality","name":"susie","id":15550962,"id_str":"15550962","indices":[16,31]}],"urls":[{"url":"https:\/\/t.co\/wL3nYQGxQo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234876388156563456","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234685467682979840,"in_reply_to_status_id_str":"1234685467682979840","in_reply_to_user_id":966500444632596480,"in_reply_to_user_id_str":"966500444632596480","in_reply_to_screen_name":"into_the_brush","user":{"id":210658819,"id_str":"210658819","name":"Jim - #Resists","screen_name":"jimohar","location":"Virginia, USA","description":"Husband, - Father, Blocks rudeness. #FBR #Ally #Resistance #TCMParty #RightMatters #VoteBlue - team. We\u2019re the Good Guys, you know the Americans, the Democrats.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11480,"friends_count":12596,"listed_count":34,"created_at":"Mon - Nov 01 00:30:45 +0000 2010","favourites_count":47742,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50439,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/756840402792001536\/euIoit-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/756840402792001536\/euIoit-u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210658819\/1487398152","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631107403776,"id_str":"1234895631107403776","text":"RT - @marcoconterio: \ud83d\udce2 L''Head of Communication di #Juventus, @klaustorino - , prima della conferenza di Maurizio Sarri: \"@juventusfc rispetta\u2026","truncated":false,"entities":{"hashtags":[{"text":"Juventus","indices":[48,57]}],"symbols":[],"user_mentions":[{"screen_name":"marcoconterio","name":"Marco - Conterio","id":80977052,"id_str":"80977052","indices":[3,17]},{"screen_name":"klaustorino","name":"Claudio - Albanese","id":87237793,"id_str":"87237793","indices":[59,71]},{"screen_name":"juventusfc","name":"JuventusFC","id":253508662,"id_str":"253508662","indices":[117,128]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3001670111,"id_str":"3001670111","name":"Molesta - Proposta","screen_name":"MolestaProposta","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":306,"friends_count":334,"listed_count":2,"created_at":"Tue - Jan 27 17:05:39 +0000 2015","favourites_count":2794,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21421,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560126990326321152\/N7kiz1gp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560126990326321152\/N7kiz1gp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:15:58 +0000 2020","id":1234890269776130048,"id_str":"1234890269776130048","text":"\ud83d\udce2 - L''Head of Communication di #Juventus, @klaustorino , prima della conferenza - di Maurizio Sarri: \"@juventusfc risp\u2026 https:\/\/t.co\/3b6RrjGela","truncated":true,"entities":{"hashtags":[{"text":"Juventus","indices":[29,38]}],"symbols":[],"user_mentions":[{"screen_name":"klaustorino","name":"Claudio - Albanese","id":87237793,"id_str":"87237793","indices":[40,52]},{"screen_name":"juventusfc","name":"JuventusFC","id":253508662,"id_str":"253508662","indices":[98,109]}],"urls":[{"url":"https:\/\/t.co\/3b6RrjGela","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234890269776130048","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80977052,"id_str":"80977052","name":"Marco - Conterio","screen_name":"marcoconterio","location":"Italy","description":"\ud83c\udfa4 - Chief editor @TuttoMercatoWeb\n\n\ud83d\uddde Former RMCSport, Radio Sportiva, - Il Messaggero\n\n\ud83d\udce3 #Transfers 24\/7\n\n\ud83d\udcf8 #ProfilePic - UCL Final 2019 Liverpool-Tottenham","url":"https:\/\/t.co\/9I9XHoThyK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9I9XHoThyK","expanded_url":"http:\/\/www.tuttomercatoweb.com","display_url":"tuttomercatoweb.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4903,"friends_count":1469,"listed_count":76,"created_at":"Thu - Oct 08 23:55:28 +0000 2009","favourites_count":9201,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19120,"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\/1154735264490807297\/BGieG7hk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1154735264490807297\/BGieG7hk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80977052\/1557555383","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":55,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631094816774,"id_str":"1234895631094816774","text":"RT - @steve_hanke: In #China, a #Wuhan resident claims that \"critically ill #coronavirus - patients [are] sealed up in body bags while alive, t\u2026","truncated":false,"entities":{"hashtags":[{"text":"China","indices":[20,26]},{"text":"Wuhan","indices":[30,36]},{"text":"coronavirus","indices":[74,86]}],"symbols":[],"user_mentions":[{"screen_name":"steve_hanke","name":"Prof. - Steve Hanke","id":863527548,"id_str":"863527548","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":921252671809495040,"id_str":"921252671809495040","name":"Mukesh - Kumar","screen_name":"MukeshK87107695","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":627,"friends_count":26,"listed_count":0,"created_at":"Fri - Oct 20 05:52:07 +0000 2017","favourites_count":125219,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 04:06:12 +0000 2020","id":1234691518704836608,"id_str":"1234691518704836608","text":"In - #China, a #Wuhan resident claims that \"critically ill #coronavirus patients - [are] sealed up in body bags while a\u2026 https:\/\/t.co\/V0AWycnWQg","truncated":true,"entities":{"hashtags":[{"text":"China","indices":[3,9]},{"text":"Wuhan","indices":[13,19]},{"text":"coronavirus","indices":[57,69]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/V0AWycnWQg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234691518704836608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":863527548,"id_str":"863527548","name":"Prof. - Steve Hanke","screen_name":"steve_hanke","location":"Baltimore & Paris","description":"Applied - Economist @JohnsHopkins | Sr. Fellow & Director #TroubledCurrencies Project - @CatoInstitute | @Forbes | FX & Commodities Trader | Reagan White House Alum","url":"http:\/\/t.co\/g7QtfrgXlV","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/g7QtfrgXlV","expanded_url":"http:\/\/bit.ly\/SHH_Cato","display_url":"bit.ly\/SHH_Cato","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":177071,"friends_count":29277,"listed_count":2207,"created_at":"Fri - Oct 05 19:10:03 +0000 2012","favourites_count":6948,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":27939,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915395033871867905\/3zbE7bAT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915395033871867905\/3zbE7bAT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/863527548\/1465411293","profile_link_color":"0A0ACC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":619,"favorite_count":704,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":619,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631090626561,"id_str":"1234895631090626561","text":"RT - @unhelado: Wow mandaron un correo en mi oficina de que est\u00e1 prohibido - saludar de mano o beso.......... mi sue\u00f1o hecho realidad,,, quiero\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"unhelado","name":"froggy - chair","id":164743765,"id_str":"164743765","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2501560086,"id_str":"2501560086","name":"\ud83d\udc07","screen_name":"Yosoyelsad","location":"","description":"Ser\u00e9 - quien todo lo di\u00f3 por triunfar.","url":"https:\/\/t.co\/GzoKI1yaE1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GzoKI1yaE1","expanded_url":"https:\/\/youtu.be\/hTVa_kqyoms","display_url":"youtu.be\/hTVa_kqyoms","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":118,"listed_count":0,"created_at":"Sat - May 17 13:29:21 +0000 2014","favourites_count":2225,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1679,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1233261309262794752\/k3EYPDy5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233261309262794752\/k3EYPDy5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2501560086\/1582867383","profile_link_color":"F58EA8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 23:36:22 +0000 2020","id":1234623616345673728,"id_str":"1234623616345673728","text":"Wow - mandaron un correo en mi oficina de que est\u00e1 prohibido saludar de mano - o beso.......... mi sue\u00f1o hecho realidad\u2026 https:\/\/t.co\/ZB0vmMFw5B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZB0vmMFw5B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234623616345673728","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164743765,"id_str":"164743765","name":"froggy - chair","screen_name":"unhelado","location":"","description":"Everything is - terrible and my back hurts","url":"https:\/\/t.co\/I9IsZQdwhj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/I9IsZQdwhj","expanded_url":"http:\/\/instagram.com\/un.helado","display_url":"instagram.com\/un.helado","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":23709,"friends_count":294,"listed_count":390,"created_at":"Fri - Jul 09 16:56:48 +0000 2010","favourites_count":63215,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":67781,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1CC99E","profile_background_image_url":"http:\/\/abs.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\/1108839391634558977\/Php3j5J3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1108839391634558977\/Php3j5J3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164743765\/1558033575","profile_link_color":"65B8B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1180,"favorite_count":8501,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1180,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631061266432,"id_str":"1234895631061266432","text":"RT - @ExpresoPeru: #Lo\u00daltimo \ud83d\udea8 Argentina reporta su primer caso - de coronavirus.\n\nM\u00e1s informaci\u00f3n en \ud83d\udc49https:\/\/t.co\/fjIxdl8o4O - https:\/\/t.co\/oXd\u2026","truncated":false,"entities":{"hashtags":[{"text":"Lo\u00daltimo","indices":[17,26]}],"symbols":[],"user_mentions":[{"screen_name":"ExpresoPeru","name":"Diario - Expreso","id":225232891,"id_str":"225232891","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/fjIxdl8o4O","expanded_url":"https:\/\/www.expreso.com.pe\/","display_url":"expreso.com.pe","indices":[99,122]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1218289058037846016,"id_str":"1218289058037846016","name":"eslado179@gmail.com","screen_name":"eslado179gmail1","location":"","description":"Soy - de Derecha, Pro Vida, Pro Familia, Dog Lover...Anti Feminista, Anti caviar, - Anti Rojo, Morado, No ideolog\u00eda deG\u00e9nero..Se los bloquea ..#Noalvotoelectronico","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":81,"listed_count":0,"created_at":"Fri - Jan 17 21:48:53 +0000 2020","favourites_count":1523,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1510,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:36:23 +0000 2020","id":1234895411242000385,"id_str":"1234895411242000385","text":"#Lo\u00daltimo - \ud83d\udea8 Argentina reporta su primer caso de coronavirus.\n\nM\u00e1s - informaci\u00f3n en \ud83d\udc49https:\/\/t.co\/fjIxdl8o4O https:\/\/t.co\/oXdYWtQPBJ","truncated":false,"entities":{"hashtags":[{"text":"Lo\u00daltimo","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fjIxdl8o4O","expanded_url":"https:\/\/www.expreso.com.pe\/","display_url":"expreso.com.pe","indices":[82,105]}],"media":[{"id":1234895400248762371,"id_str":"1234895400248762371","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM60uKXYAM3SB9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM60uKXYAM3SB9.jpg","url":"https:\/\/t.co\/oXdYWtQPBJ","display_url":"pic.twitter.com\/oXdYWtQPBJ","expanded_url":"https:\/\/twitter.com\/ExpresoPeru\/status\/1234895411242000385\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234895400248762371,"id_str":"1234895400248762371","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM60uKXYAM3SB9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESM60uKXYAM3SB9.jpg","url":"https:\/\/t.co\/oXdYWtQPBJ","display_url":"pic.twitter.com\/oXdYWtQPBJ","expanded_url":"https:\/\/twitter.com\/ExpresoPeru\/status\/1234895411242000385\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/ESM60uKXYAM3SB9.mp4"}]}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":225232891,"id_str":"225232891","name":"Diario - Expreso","screen_name":"ExpresoPeru","location":"Per\u00fa","description":"Mantente - informado al instante. Pol\u00edtica, Opini\u00f3n, Econom\u00eda, Judicial, - Mundo, Actualidad, Deportes y Espect\u00e1culos. \ud83d\uddde","url":"https:\/\/t.co\/OqgZho3oIW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OqgZho3oIW","expanded_url":"http:\/\/www.expreso.com.pe","display_url":"expreso.com.pe","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":145938,"friends_count":613,"listed_count":461,"created_at":"Sat - Dec 11 01:55:08 +0000 2010","favourites_count":105,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":107737,"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\/1212470773056565248\/vcxI6yHf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212470773056565248\/vcxI6yHf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225232891\/1573593255","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895631002390531,"id_str":"1234895631002390531","text":"RT - @TIFFLS: Honest question for Trump supporters: are you not at all concerned - that we''re facing a pandemic and our leader was surprised to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TIFFLS","name":"Tiffany - Sanders","id":17671778,"id_str":"17671778","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196298648,"id_str":"196298648","name":"Abraham - Lozoya","screen_name":"DjShocker08","location":"Sacramento ","description":"Aye - Wat Sup My Name Is Abraham From Oakpark","url":"https:\/\/t.co\/myKt6kxUYY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/myKt6kxUYY","expanded_url":"http:\/\/m.facebook.com\/DjShocker08","display_url":"m.facebook.com\/DjShocker08","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1118,"friends_count":5002,"listed_count":3,"created_at":"Tue - Sep 28 20:10:25 +0000 2010","favourites_count":1513,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43267,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477991015484108800\/h0bmRmf6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477991015484108800\/h0bmRmf6_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:36:34 +0000 2020","id":1234895455294717952,"id_str":"1234895455294717952","text":"Honest - question for Trump supporters: are you not at all concerned that we''re facing - a pandemic and our leader was\u2026 https:\/\/t.co\/9NWkVGyUxC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9NWkVGyUxC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895455294717952","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17671778,"id_str":"17671778","name":"Tiffany - Sanders","screen_name":"TIFFLS","location":"Chicago","description":"Legal - and business writer\/ghostwriter, former attorney, disciple of facts and reason","url":"https:\/\/t.co\/MIriBTdEFt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MIriBTdEFt","expanded_url":"http:\/\/www.lawfirmmarketingwriter.com","display_url":"lawfirmmarketingwriter.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":442,"friends_count":692,"listed_count":29,"created_at":"Thu - Nov 27 06:47:06 +0000 2008","favourites_count":134,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2829,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2435537555\/g10itpzb7y76gn6aaq1l_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2435537555\/g10itpzb7y76gn6aaq1l_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17671778\/1486016717","profile_link_color":"FF691F","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"},"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630905950213,"id_str":"1234895630905950213","text":"RT - @sudhirchaudhary: On my way to #dubai for the @WIONews Global Summit. Armed - with a mask to beat the #coronavirus. Precaution is better t\u2026","truncated":false,"entities":{"hashtags":[{"text":"dubai","indices":[34,40]},{"text":"coronavirus","indices":[103,115]}],"symbols":[],"user_mentions":[{"screen_name":"sudhirchaudhary","name":"Sudhir - Chaudhary","id":75246346,"id_str":"75246346","indices":[3,19]},{"screen_name":"WIONews","name":"WION","id":711760467383877632,"id_str":"711760467383877632","indices":[49,57]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92900002,"id_str":"92900002","name":"\ud83c\uddee\ud83c\uddf3\u0915\u0930\u0923\ud83c\uddee\ud83c\uddf3","screen_name":"KaranSumbly","location":"India","description":"\u092d\u093e\u0930\u0924\u0940\u092f, - Wanderer by Choice ! TT addict, e-shopaholic+curious+gadget-freak+traveller+foodie+nature - & art-lover #Inked #ISUZU acolyte #Quora T\/RT r PersonaL","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":526,"friends_count":3706,"listed_count":25,"created_at":"Fri - Nov 27 04:14:00 +0000 2009","favourites_count":8640,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19015,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1096833308074356736\/S-jcO7LV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1096833308074356736\/S-jcO7LV_normal.jpg","profile_link_color":"0C0D0D","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 12:06:58 +0000 2020","id":1234812508780802048,"id_str":"1234812508780802048","text":"On - my way to #dubai for the @WIONews Global Summit. Armed with a mask to beat - the #coronavirus. Precaution is bette\u2026 https:\/\/t.co\/fIzI390XTs","truncated":true,"entities":{"hashtags":[{"text":"dubai","indices":[13,19]},{"text":"coronavirus","indices":[82,94]}],"symbols":[],"user_mentions":[{"screen_name":"WIONews","name":"WION","id":711760467383877632,"id_str":"711760467383877632","indices":[28,36]}],"urls":[{"url":"https:\/\/t.co\/fIzI390XTs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234812508780802048","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75246346,"id_str":"75246346","name":"Sudhir - Chaudhary","screen_name":"sudhirchaudhary","location":"\u00dcT: 28.562395,77.33867","description":"Editor - In Chief, Zee News, Zee Business, WION. Hosts India''s No.1 News Show DNA - every night at 9. Recipient of Ramnath Goenka Award for Hindi Journalism","url":"https:\/\/t.co\/Zl5KSVOUJK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Zl5KSVOUJK","expanded_url":"http:\/\/www.facebook.com\/sudhirchaudhary.72","display_url":"facebook.com\/sudhirchaudhar\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4087786,"friends_count":119,"listed_count":1360,"created_at":"Fri - Sep 18 10:08:30 +0000 2009","favourites_count":543,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":27818,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/979311951456055296\/nN4E7f5K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979311951456055296\/nN4E7f5K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75246346\/1476440891","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1729,"favorite_count":17545,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1729,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630855790595,"id_str":"1234895630855790595","text":"RT - @nycsouthpaw: Like a bad joke https:\/\/t.co\/ZRldPAheTC https:\/\/t.co\/G6wRnhnw7j","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\/ZRldPAheTC","expanded_url":"https:\/\/www.nytimes.com\/2020\/03\/03\/health\/coronavirus-tests-fda.html","display_url":"nytimes.com\/2020\/03\/03\/hea\u2026","indices":[33,56]}],"media":[{"id":1234891803490471941,"id_str":"1234891803490471941","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM3jXMXUAUondV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM3jXMXUAUondV.jpg","url":"https:\/\/t.co\/G6wRnhnw7j","display_url":"pic.twitter.com\/G6wRnhnw7j","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1234891810201391104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":450,"resize":"fit"},"large":{"w":723,"h":478,"resize":"fit"},"medium":{"w":723,"h":478,"resize":"fit"}},"source_status_id":1234891810201391104,"source_status_id_str":"1234891810201391104","source_user_id":22429979,"source_user_id_str":"22429979"}]},"extended_entities":{"media":[{"id":1234891803490471941,"id_str":"1234891803490471941","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM3jXMXUAUondV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM3jXMXUAUondV.jpg","url":"https:\/\/t.co\/G6wRnhnw7j","display_url":"pic.twitter.com\/G6wRnhnw7j","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1234891810201391104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":450,"resize":"fit"},"large":{"w":723,"h":478,"resize":"fit"},"medium":{"w":723,"h":478,"resize":"fit"}},"source_status_id":1234891810201391104,"source_status_id_str":"1234891810201391104","source_user_id":22429979,"source_user_id_str":"22429979"},{"id":1234891803494666246,"id_str":"1234891803494666246","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM3jXNXUAYK9TC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM3jXNXUAYK9TC.jpg","url":"https:\/\/t.co\/G6wRnhnw7j","display_url":"pic.twitter.com\/G6wRnhnw7j","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1234891810201391104\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":128,"resize":"fit"},"medium":{"w":750,"h":128,"resize":"fit"},"thumb":{"w":128,"h":128,"resize":"crop"},"small":{"w":680,"h":116,"resize":"fit"}},"source_status_id":1234891810201391104,"source_status_id_str":"1234891810201391104","source_user_id":22429979,"source_user_id_str":"22429979"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1368179641,"id_str":"1368179641","name":"\ud83c\udf34tp\ud83c\udf12\ud83e\udd89","screen_name":"3DogCouch","location":"FL&NY","description":"\ud83d\udc36\ud83d\udc15\ud83d\udc29\ud83d\udecb&\ud83d\udc08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":604,"friends_count":1402,"listed_count":23,"created_at":"Sat - Apr 20 22:50:57 +0000 2013","favourites_count":51439,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46556,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000014165703\/e4e44a435cbb6003bf0289b296c22da9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000014165703\/e4e44a435cbb6003bf0289b296c22da9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1368179641\/1579462272","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:22:05 +0000 2020","id":1234891810201391104,"id_str":"1234891810201391104","text":"Like - a bad joke https:\/\/t.co\/ZRldPAheTC https:\/\/t.co\/G6wRnhnw7j","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZRldPAheTC","expanded_url":"https:\/\/www.nytimes.com\/2020\/03\/03\/health\/coronavirus-tests-fda.html","display_url":"nytimes.com\/2020\/03\/03\/hea\u2026","indices":[16,39]}],"media":[{"id":1234891803490471941,"id_str":"1234891803490471941","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM3jXMXUAUondV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM3jXMXUAUondV.jpg","url":"https:\/\/t.co\/G6wRnhnw7j","display_url":"pic.twitter.com\/G6wRnhnw7j","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1234891810201391104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":450,"resize":"fit"},"large":{"w":723,"h":478,"resize":"fit"},"medium":{"w":723,"h":478,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234891803490471941,"id_str":"1234891803490471941","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM3jXMXUAUondV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM3jXMXUAUondV.jpg","url":"https:\/\/t.co\/G6wRnhnw7j","display_url":"pic.twitter.com\/G6wRnhnw7j","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1234891810201391104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":450,"resize":"fit"},"large":{"w":723,"h":478,"resize":"fit"},"medium":{"w":723,"h":478,"resize":"fit"}}},{"id":1234891803494666246,"id_str":"1234891803494666246","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM3jXNXUAYK9TC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM3jXNXUAYK9TC.jpg","url":"https:\/\/t.co\/G6wRnhnw7j","display_url":"pic.twitter.com\/G6wRnhnw7j","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1234891810201391104\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":128,"resize":"fit"},"medium":{"w":750,"h":128,"resize":"fit"},"thumb":{"w":128,"h":128,"resize":"crop"},"small":{"w":680,"h":116,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22429979,"id_str":"22429979","name":"southpaw","screen_name":"nycsouthpaw","location":"","description":"Writer, - lawyer, Dodger fan, idealist, hater. nycsouthpaw18 at gmail. RTs = endorsement - or scorn.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":183454,"friends_count":4988,"listed_count":3022,"created_at":"Mon - Mar 02 00:50:07 +0000 2009","favourites_count":89086,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":291321,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1D5287","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\/680842593048002560\/s4jbWhqz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/680842593048002560\/s4jbWhqz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22429979\/1353169389","profile_link_color":"177A0A","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107,"favorite_count":173,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":107,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630629244933,"id_str":"1234895630629244933","text":"The - candy shop is closed because his dick got #COVID19 from the coronavirus in - his brain. https:\/\/t.co\/QAE9UhelUo","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[46,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QAE9UhelUo","expanded_url":"https:\/\/twitter.com\/50cent\/status\/1234884083752349699","display_url":"twitter.com\/50cent\/status\/\u2026","indices":[90,113]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22879246,"id_str":"22879246","name":"Walters - \ud83e\udd91\ud83d\udd25","screen_name":"PorkShake","location":"Michigan, - USA","description":"no ammo for you here, sorry :\/","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1398,"friends_count":65,"listed_count":53,"created_at":"Thu - Mar 05 04:21:13 +0000 2009","favourites_count":4070,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9147,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0E1316","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\/1216050295265988609\/RnIn48dE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216050295265988609\/RnIn48dE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22879246\/1566942724","profile_link_color":"E81C4F","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"1E2326","profile_text_color":"7C8084","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234884083752349699,"quoted_status_id_str":"1234884083752349699","quoted_status":{"created_at":"Tue - Mar 03 16:51:23 +0000 2020","id":1234884083752349699,"id_str":"1234884083752349699","text":"\ud83e\udd28corona - virus in New York \ud83d\ude20\ud83d\ude06 https:\/\/t.co\/HFn1yc4eKD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234884080879251456,"id_str":"1234884080879251456","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMwh2OXsAAXywm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMwh2OXsAAXywm.jpg","url":"https:\/\/t.co\/HFn1yc4eKD","display_url":"pic.twitter.com\/HFn1yc4eKD","expanded_url":"https:\/\/twitter.com\/50cent\/status\/1234884083752349699\/photo\/1","type":"photo","sizes":{"large":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":510,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234884080879251456,"id_str":"1234884080879251456","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/ESMwh2OXsAAXywm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESMwh2OXsAAXywm.jpg","url":"https:\/\/t.co\/HFn1yc4eKD","display_url":"pic.twitter.com\/HFn1yc4eKD","expanded_url":"https:\/\/twitter.com\/50cent\/status\/1234884083752349699\/photo\/1","type":"photo","sizes":{"large":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":510,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18222378,"id_str":"18222378","name":"50cent","screen_name":"50cent","location":"NYC","description":"Artist-Actor-Television - Producer\u2014\u2014\u2014\u2014Executive Producer of POWER on @STARZ Executive - Producer of FOR LIFE on @ABCNetwork","url":"https:\/\/t.co\/VJjWhXF2uU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VJjWhXF2uU","expanded_url":"http:\/\/www.gunitbrands.com","display_url":"gunitbrands.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11494060,"friends_count":8,"listed_count":33606,"created_at":"Thu - Dec 18 19:18:49 +0000 2008","favourites_count":103,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":15448,"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\/1226895461941940224\/hBx6tZxz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226895461941940224\/hBx6tZxz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18222378\/1581349738","profile_link_color":"7A0505","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1400,"favorite_count":5582,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630557995008,"id_str":"1234895630557995008","text":"RT - @DonaldJTrumpJr: When @realDonaldTrump first shut down travel from China Dems - said it was too early and he was being xenophobic agains A\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[3,18]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[25,41]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813516163883929600,"id_str":"813516163883929600","name":"Welaypipedayornight","screen_name":"Welaypipedayor2","location":"Waynesboro, - VA","description":"love President Trump! drain the swamp. proud conservative - !","url":"https:\/\/t.co\/FKiayU5t1M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FKiayU5t1M","expanded_url":"http:\/\/welaypipedayornight.com","display_url":"welaypipedayornight.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":559,"friends_count":734,"listed_count":21,"created_at":"Mon - Dec 26 22:45:42 +0000 2016","favourites_count":26693,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18648,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/813535436958265344\/QQaSBlDy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/813535436958265344\/QQaSBlDy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813516163883929600\/1487785226","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:02:24 +0000 2020","id":1234886857386708992,"id_str":"1234886857386708992","text":"When - @realDonaldTrump first shut down travel from China Dems said it was too early - and he was being xenophobic agai\u2026 https:\/\/t.co\/cuHALgCQ8q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[5,21]}],"urls":[{"url":"https:\/\/t.co\/cuHALgCQ8q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234886857386708992","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39344374,"id_str":"39344374","name":"Donald - Trump Jr.","screen_name":"DonaldJTrumpJr","location":"","description":"EVP - of Development & Acquisitions The @Trump Organization, Father, Outdoorsman, - In a past life Boardroom Advisor on The Apprentice","url":"https:\/\/t.co\/p0wYduKA0W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p0wYduKA0W","expanded_url":"https:\/\/www.centerstreet.com\/titles\/donald-trump-jr\/triggered\/9781546086031\/","display_url":"centerstreet.com\/titles\/donald-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4514857,"friends_count":1431,"listed_count":12135,"created_at":"Mon - May 11 21:18:33 +0000 2009","favourites_count":15709,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":33632,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/766652495858896897\/LjrJJB9a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/766652495858896897\/LjrJJB9a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39344374\/1571423068","profile_link_color":"15317E","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2054,"favorite_count":4362,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2054,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630553755649,"id_str":"1234895630553755649","text":"RT - @VotersItalia: #Coronavirus 3.6 Miliardi NON SONO SUFFICIENTI.\n\"O il Decreto - migliora e si arricchisce di Soldi e Competenze o il #Voto\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[18,30]},{"text":"Voto","indices":[133,138]}],"symbols":[],"user_mentions":[{"screen_name":"VotersItalia","name":"VotersItalia - \ud83c\uddee\ud83c\uddf9","id":1228299296241528833,"id_str":"1228299296241528833","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264287946,"id_str":"264287946","name":"\ud83c\udd82\ud83c\udd83\ud83c\udd70\ud83c\udd81\ud83c\udd71\ud83c\udd7b\ud83c\udd84\ud83c\udd74\ud83c\uddee\ud83c\uddf9\ud83c\uddee\ud83c\uddf9\ud83c\uddee\ud83c\uddf9\ud83c\uddee\ud83c\uddf9\ud83c\uddee\ud83c\uddf9","screen_name":"nfswitalia","location":"Lazio, - Italia","description":"\ud83c\uddee\ud83c\uddf9Art. 52 della Costituzione - Italiana \nLa difesa della Patria \u00e8 sacro dovere del cittadino. #DioPatriaFamiglia\n\u201cNon - rinnegare, non restaurare.\u201d\ud83c\uddee\ud83c\uddf9","url":"https:\/\/t.co\/E151H3aYPE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/E151H3aYPE","expanded_url":"http:\/\/t.me\/StarBlueTW","display_url":"t.me\/StarBlueTW","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1032,"friends_count":1004,"listed_count":1,"created_at":"Fri - Mar 11 17:10:41 +0000 2011","favourites_count":69727,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":51209,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/905005189106737158\/5u_RgL2M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905005189106737158\/5u_RgL2M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264287946\/1572794858","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:57:13 +0000 2020","id":1234885552207519747,"id_str":"1234885552207519747","text":"#Coronavirus - 3.6 Miliardi NON SONO SUFFICIENTI.\n\"O il Decreto migliora e si arricchisce - di Soldi e Competenze o il\u2026 https:\/\/t.co\/pX2ixTYYX8","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pX2ixTYYX8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234885552207519747","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1228299296241528833,"id_str":"1228299296241528833","name":"VotersItalia - \ud83c\uddee\ud83c\uddf9","screen_name":"VotersItalia","location":"","description":"Scendi - in Piazza con noi a chiedere il #voto contro questo #Governodellavergogna - prima che ci mandi definitivamente in rovina.\n#VogliamoVotare \n@RiccardoFortin","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1660,"friends_count":1239,"listed_count":4,"created_at":"Fri - Feb 14 12:46:02 +0000 2020","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2316,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228313867383603203\/sWtpaixn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228313867383603203\/sWtpaixn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1228299296241528833\/1582673394","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":35,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":25,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630528466944,"id_str":"1234895630528466944","text":"RT - @RyutaroUchiyama: I''m stunned by the depth of #coronavirus information being - released in #Singapore. On this website you can see every k\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[49,61]},{"text":"Singapore","indices":[92,102]}],"symbols":[],"user_mentions":[{"screen_name":"RyutaroUchiyama","name":"\ud83d\udcce - \u00ae \u00a5 \u00a8 \u2020 \u00e5 \u00ae \u00f8","id":1080275878771388416,"id_str":"1080275878771388416","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294144048,"id_str":"294144048","name":"Fallin'' - \ud83c\udf37\ud83e\uddcf\ud83c\udffb\u200d\u2642\ufe0f","screen_name":"nrbhynpcy","location":"","description":"\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e39\u0e48\u0e44\u0e17\u0e22 - \u0e43\u0e08\u0e2d\u0e22\u0e39\u0e48\u0e42\u0e0b\u0e25 \u0e43\u0e04\u0e23\u0e2b\u0e25\u0e48\u0e2d\u0e01\u0e47\u0e23\u0e31\u0e01 - \u0e40\u0e23\u0e32\u0e08\u0e30\u0e1e\u0e31\u0e01\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e17\u0e33\u0e44\u0e21","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":193,"friends_count":145,"listed_count":4,"created_at":"Fri - May 06 16:12:00 +0000 2011","favourites_count":284,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":34606,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D9D9D9","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\/1193578291854069760\/CkkgERav_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193578291854069760\/CkkgERav_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294144048\/1573406216","profile_link_color":"FF6666","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 23:08:59 +0000 2020","id":1234616723615166465,"id_str":"1234616723615166465","text":"I''m - stunned by the depth of #coronavirus information being released in #Singapore. - On this website you can see ever\u2026 https:\/\/t.co\/cPgcd7BRFm","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]},{"text":"Singapore","indices":[71,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cPgcd7BRFm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234616723615166465","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1080275878771388416,"id_str":"1080275878771388416","name":"\ud83d\udcce - \u00ae \u00a5 \u00a8 \u2020 \u00e5 \u00ae \u00f8","screen_name":"RyutaroUchiyama","location":"London, - England","description":"\u02da \u02d9\u5185\u5c71\u9686\u592a\u90ce\u3067\u3059 - \u02da\ud83d\udcce Computational cultural psychology & cognitive evolution - \u00ba \u301c \u02da PhD candidate at the London School of Economics \u00ba\u02da\u00a8\ud83d\udcce - Japanese sense of reality \u2022 \u2248","url":"https:\/\/t.co\/jAffbNH909","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jAffbNH909","expanded_url":"http:\/\/uchiyamaryutaro.com","display_url":"uchiyamaryutaro.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":150,"listed_count":4,"created_at":"Wed - Jan 02 01:33:34 +0000 2019","favourites_count":28,"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":"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\/1208543072273010689\/CWpHKcTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208543072273010689\/CWpHKcTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1080275878771388416\/1576974442","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3698,"favorite_count":6797,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3698,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630457344004,"id_str":"1234895630457344004","text":"RT - @jillboard: mental illness is crazy cause i\u2019m like\nomg i\u2019m gonna - be late\nomg i\u2019m gonna be late\nomg i\u2019m gonna be late\nomg i\u2019m - gonna be la\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jillboard","name":"Jill - Gutowitz","id":95485773,"id_str":"95485773","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185056890,"id_str":"185056890","name":"Rosina - Halverson","screen_name":"RosinaLeoneHS","location":"Minnesota, USA","description":"She\/her\/hers. - Hufflepuff, Empath, Queer. Aspiring Progressive. Occasional misanthrope.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":315,"friends_count":542,"listed_count":4,"created_at":"Tue - Aug 31 03:29:35 +0000 2010","favourites_count":17905,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5046,"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\/1172255629215436812\/pvwqzS-y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172255629215436812\/pvwqzS-y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185056890\/1568399419","profile_link_color":"04B4AE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 23:24:54 +0000 2020","id":1234620726558113792,"id_str":"1234620726558113792","text":"mental - illness is crazy cause i\u2019m like\nomg i\u2019m gonna be late\nomg i\u2019m - gonna be late\nomg i\u2019m gonna be late\nomg i\u2019m go\u2026 https:\/\/t.co\/idl2l9UE8B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/idl2l9UE8B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234620726558113792","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95485773,"id_str":"95485773","name":"Jill - Gutowitz","screen_name":"jillboard","location":"LA","description":"Writing - a book @AtriaBooks.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75126,"friends_count":980,"listed_count":370,"created_at":"Tue - Dec 08 19:34:10 +0000 2009","favourites_count":56626,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":22203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"340B9C","profile_background_image_url":"http:\/\/abs.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\/1028388189310832640\/zYwsVCNC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1028388189310832640\/zYwsVCNC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95485773\/1511660801","profile_link_color":"4400C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"FF005E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5998,"favorite_count":39868,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5998,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630457344002,"id_str":"1234895630457344002","text":"All - employees to have paid mandatory leave to avoid the spread of the COVID-19 - novel coronavirus starting from Marc\u2026 https:\/\/t.co\/VO71DPVc4y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VO71DPVc4y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895630457344002","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102963232,"id_str":"102963232","name":"Rohan - MB","screen_name":"RohanMB","location":"","description":"Science enthusiast, - vertical grower, sports fan, critic and business consultant.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":273,"friends_count":456,"listed_count":0,"created_at":"Fri - Jan 08 11:55:38 +0000 2010","favourites_count":710,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1376,"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\/1185809908006096896\/V4Lh6vlm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185809908006096896\/V4Lh6vlm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102963232\/1371670603","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"},"geo":null,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630453047296,"id_str":"1234895630453047296","text":"RT - @WhiteHouse: President @realDonaldTrump''s early action on coronavirus bought - time and saved lives. \n\nCommunity leaders can help by shari\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WhiteHouse","name":"The - White House","id":822215673812119553,"id_str":"822215673812119553","indices":[3,14]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[26,42]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28789962,"id_str":"28789962","name":"Cat","screen_name":"mariesnylife","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":220,"friends_count":916,"listed_count":0,"created_at":"Sat - Apr 04 13:12:57 +0000 2009","favourites_count":17258,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83123,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695774046697476096\/Wk6zfALP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695774046697476096\/Wk6zfALP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28789962\/1456277798","profile_link_color":"4A913C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:34:57 +0000 2020","id":1234895047004389376,"id_str":"1234895047004389376","text":"President - @realDonaldTrump''s early action on coronavirus bought time and saved lives. - \n\nCommunity leaders can help\u2026 https:\/\/t.co\/MP2QA2YcTA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[10,26]}],"urls":[{"url":"https:\/\/t.co\/MP2QA2YcTA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895047004389376","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eTheWhiteHouse\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":822215673812119553,"id_str":"822215673812119553","name":"The - White House","screen_name":"WhiteHouse","location":"Washington, D.C.","description":"Welcome - to @WhiteHouse! Follow for the latest from President @realDonaldTrump and - his Administration. Tweets may be archived: https:\/\/t.co\/IURuMIrzxb","url":"https:\/\/t.co\/wyOVgSLgBV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wyOVgSLgBV","expanded_url":"http:\/\/www.WhiteHouse.gov","display_url":"WhiteHouse.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IURuMIrzxb","expanded_url":"http:\/\/whitehouse.gov\/privacy","display_url":"whitehouse.gov\/privacy","indices":[126,149]}]}},"protected":false,"followers_count":20347288,"friends_count":18,"listed_count":13095,"created_at":"Thu - Jan 19 22:54:27 +0000 2017","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":16013,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1059888693945630720\/yex0Gcbi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1059888693945630720\/yex0Gcbi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/822215673812119553\/1580922287","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":183,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630322946049,"id_str":"1234895630322946049","text":"RT - @RyanAFournier: Disgusting.\n\nCouncilwoman Candi CdeBaca, an elected official - in Colorado, praised a Twitter post calling for Trump suppo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RyanAFournier","name":"Ryan - Fournier","id":166751745,"id_str":"166751745","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19465598,"id_str":"19465598","name":"Terri - Jeffrey","screen_name":"tljeffrey","location":"Traveling","description":"Librarian - on hiatus.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":17,"listed_count":6,"created_at":"Sat - Jan 24 22:03:38 +0000 2009","favourites_count":1856,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4945,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CCCCCC","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\/97405851\/heart_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/97405851\/heart_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19465598\/1460868614","profile_link_color":"666666","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"333333","profile_text_color":"999999","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:27:23 +0000 2020","id":1234878043887472640,"id_str":"1234878043887472640","text":"Disgusting.\n\nCouncilwoman - Candi CdeBaca, an elected official in Colorado, praised a Twitter post calling - for Trump\u2026 https:\/\/t.co\/jgtcHl8eu2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jgtcHl8eu2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234878043887472640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166751745,"id_str":"166751745","name":"Ryan - Fournier","screen_name":"RyanAFournier","location":"Washington, DC & Raleigh, - NC","description":"Founder and Co-Chairman of @TrumpStudents \/ Turning Point - Action \/ Ephesians 4:32 \ud83d\udce7 press@ryanfournier.com","url":"https:\/\/t.co\/usg47s1iyY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/usg47s1iyY","expanded_url":"http:\/\/instagram.com\/ryanafournier","display_url":"instagram.com\/ryanafournier","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":818466,"friends_count":320297,"listed_count":2804,"created_at":"Wed - Jul 14 22:44:56 +0000 2010","favourites_count":25463,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12706,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"303D5D","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\/1171465484450947076\/0RgZ2Kac_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171465484450947076\/0RgZ2Kac_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166751745\/1580000339","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C5D1","profile_text_color":"D4443F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1695,"favorite_count":3439,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1695,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630159548416,"id_str":"1234895630159548416","text":"RT - @tedlieu: Dear @VP Pence: Is the below true? If so, that means there are still - many Americans not being tested for #coronavirus who shou\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[118,130]}],"symbols":[],"user_mentions":[{"screen_name":"tedlieu","name":"Ted - Lieu","id":21059255,"id_str":"21059255","indices":[3,11]},{"screen_name":"VP","name":"Vice - President Mike Pence","id":818910970567344128,"id_str":"818910970567344128","indices":[18,21]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1152266085468688386,"id_str":"1152266085468688386","name":"Phill - MaCrackin","screen_name":"PhillMaCrackin3","location":"","description":"Y - tho?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":583,"listed_count":0,"created_at":"Fri - Jul 19 17:16:57 +0000 2019","favourites_count":42432,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8401,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152266381313871873\/Xw5dAXog_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152266381313871873\/Xw5dAXog_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1152266085468688386\/1571284488","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 15:52:02 +0000 2020","id":1234869149224046592,"id_str":"1234869149224046592","text":"Dear - @VP Pence: Is the below true? If so, that means there are still many Americans - not being tested for\u2026 https:\/\/t.co\/H037FpPirb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VP","name":"Vice - President Mike Pence","id":818910970567344128,"id_str":"818910970567344128","indices":[5,8]}],"urls":[{"url":"https:\/\/t.co\/H037FpPirb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234869149224046592","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[106,129]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21059255,"id_str":"21059255","name":"Ted - Lieu","screen_name":"tedlieu","location":"California","description":"Husband - of Betty, the love of my life. Father of two great kids. USAF veteran. Member - of Congress. In that order. Also, I don''t take orders from Vladimir Putin.","url":"https:\/\/t.co\/YZX138uDSy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YZX138uDSy","expanded_url":"http:\/\/www.TedLieu.com","display_url":"TedLieu.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1249719,"friends_count":9791,"listed_count":7153,"created_at":"Tue - Feb 17 03:12:31 +0000 2009","favourites_count":50416,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":24085,"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\/537271043937673217\/3O1qePzP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537271043937673217\/3O1qePzP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21059255\/1485531357","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234685467682979840,"quoted_status_id_str":"1234685467682979840","retweet_count":2669,"favorite_count":7177,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234685467682979840,"quoted_status_id_str":"1234685467682979840","retweet_count":2669,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630121697281,"id_str":"1234895630121697281","text":"RT - @PanAmPost_es: \ud83d\udd34 #\u00daLTIMAHORA | Primer caso de #coronavirus - confirmado en Argentina. #3Mar https:\/\/t.co\/UgAgHTv3uQ","truncated":false,"entities":{"hashtags":[{"text":"\u00daLTIMAHORA","indices":[20,31]},{"text":"coronavirus","indices":[49,61]},{"text":"3Mar","indices":[87,92]}],"symbols":[],"user_mentions":[{"screen_name":"PanAmPost_es","name":"PanAm - Post Espa\u00f1ol","id":2228816504,"id_str":"2228816504","indices":[3,16]}],"urls":[],"media":[{"id":1234895241175617536,"id_str":"1234895241175617536","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM6rdkX0AAiIBL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM6rdkX0AAiIBL.jpg","url":"https:\/\/t.co\/UgAgHTv3uQ","display_url":"pic.twitter.com\/UgAgHTv3uQ","expanded_url":"https:\/\/twitter.com\/PanAmPost_es\/status\/1234895249601941504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1234895249601941504,"source_status_id_str":"1234895249601941504","source_user_id":2228816504,"source_user_id_str":"2228816504"}]},"extended_entities":{"media":[{"id":1234895241175617536,"id_str":"1234895241175617536","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM6rdkX0AAiIBL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM6rdkX0AAiIBL.jpg","url":"https:\/\/t.co\/UgAgHTv3uQ","display_url":"pic.twitter.com\/UgAgHTv3uQ","expanded_url":"https:\/\/twitter.com\/PanAmPost_es\/status\/1234895249601941504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1234895249601941504,"source_status_id_str":"1234895249601941504","source_user_id":2228816504,"source_user_id_str":"2228816504"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":998569628,"id_str":"998569628","name":"\ud835\udc71\ud835\udc90\ud835\udc94\ud835\udc89\ud835\udc96\ud835\udc82 - \u03a8","screen_name":"Material_Noah","location":"Caracas, Venezuela.","description":"\u2604\ufe0fLevel - 24.\u300ePersona, psic\u00f3logo (UCAB) y Pok\u00e9fan desde que nac\u00ed. - Soy al\u00e9rgico al comunismo y amante del Nestea.\ud83d\udc7e \u300f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1025,"friends_count":538,"listed_count":9,"created_at":"Sun - Dec 09 04:32:12 +0000 2012","favourites_count":32142,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29417,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1155907226743316480\/lpL4mOIN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1155907226743316480\/lpL4mOIN_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/998569628\/1564428145","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:35:45 +0000 2020","id":1234895249601941504,"id_str":"1234895249601941504","text":"\ud83d\udd34 - #\u00daLTIMAHORA | Primer caso de #coronavirus confirmado en Argentina. #3Mar - https:\/\/t.co\/UgAgHTv3uQ","truncated":false,"entities":{"hashtags":[{"text":"\u00daLTIMAHORA","indices":[2,13]},{"text":"coronavirus","indices":[31,43]},{"text":"3Mar","indices":[69,74]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234895241175617536,"id_str":"1234895241175617536","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM6rdkX0AAiIBL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM6rdkX0AAiIBL.jpg","url":"https:\/\/t.co\/UgAgHTv3uQ","display_url":"pic.twitter.com\/UgAgHTv3uQ","expanded_url":"https:\/\/twitter.com\/PanAmPost_es\/status\/1234895249601941504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234895241175617536,"id_str":"1234895241175617536","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/ESM6rdkX0AAiIBL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESM6rdkX0AAiIBL.jpg","url":"https:\/\/t.co\/UgAgHTv3uQ","display_url":"pic.twitter.com\/UgAgHTv3uQ","expanded_url":"https:\/\/twitter.com\/PanAmPost_es\/status\/1234895249601941504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2228816504,"id_str":"2228816504","name":"PanAm - Post Espa\u00f1ol","screen_name":"PanAmPost_es","location":"Miami, FL","description":"La - principal fuente de noticias y an\u00e1lisis de todo el continente Americano. - (English: @PanAmPost)","url":"https:\/\/t.co\/TLIoSfgOfG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TLIoSfgOfG","expanded_url":"http:\/\/es.PanAmPost.com","display_url":"es.PanAmPost.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":135224,"friends_count":100,"listed_count":843,"created_at":"Tue - Dec 03 20:28:36 +0000 2013","favourites_count":3496,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":168592,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EEEEEE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228567733832421383\/7QM_AMGP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228567733832421383\/7QM_AMGP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2228816504\/1581748453","profile_link_color":"5999DE","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895630042091522,"id_str":"1234895630042091522","text":"ONU - advierte: mortalidad del coronavirus llega al 3,4%, el triple de la influenza - https:\/\/t.co\/3uh3wBb94V","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3uh3wBb94V","expanded_url":"http:\/\/a.msn.com\/01\/es-cl\/BB10GUvb?ocid=st","display_url":"a.msn.com\/01\/es-cl\/BB10G\u2026","indices":[82,105]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":1191087537110048771,"id_str":"1191087537110048771","name":"Frente - Invisible","screen_name":"FrenteInvisible","location":"N. W. Overton St.","description":"...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3826,"friends_count":2058,"listed_count":4,"created_at":"Sun - Nov 03 20:20:53 +0000 2019","favourites_count":4067,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5746,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191088483051483137\/AvLn1WOF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191088483051483137\/AvLn1WOF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1191087537110048771\/1572813250","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895629949771776,"id_str":"1234895629949771776","text":"@alferdez - si hay casos de coronavirus en La Argentina, sos el \u00fanico culpable y - responsable por no hacer los contro\u2026 https:\/\/t.co\/l2NQumywtN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alferdez","name":"Alberto - Fern\u00e1ndez","id":149991703,"id_str":"149991703","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/l2NQumywtN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895629949771776","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":149991703,"in_reply_to_user_id_str":"149991703","in_reply_to_screen_name":"alferdez","user":{"id":1276688930,"id_str":"1276688930","name":"PATO","screen_name":"sanpatrik62","location":"R\u00edo - grande, Tierra del Fuego. ","description":"Ser\u00e1s feliz me dijo la vida, - pero primero te har\u00e9 fuerte.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":909,"listed_count":1,"created_at":"Mon - Mar 18 03:39:12 +0000 2013","favourites_count":791,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":903,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3395235409\/6d854d9ed751eb3c7d266e9ddc52ee74_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3395235409\/6d854d9ed751eb3c7d266e9ddc52ee74_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1276688930\/1467678635","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895629941432320,"id_str":"1234895629941432320","text":"RT - @Visitante78: Si cada 23 hs se muriera un argentin@ por coronavirus estariamos - todos en p\u00e1nico. Pero como son femicidios nadie se escand\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Visitante78","name":"#Volvimos\u270c\ud83c\udffe","id":1652676409,"id_str":"1652676409","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217294874808111104,"id_str":"1217294874808111104","name":"Selena\ud83d\udc81\u200d\u2640\ufe0f","screen_name":"Selee1889","location":"","description":"\u00a1Este - amor con nada se compara! \ud83d\udc9b\ud83d\udc99\n16\/12\/18.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":114,"listed_count":0,"created_at":"Wed - Jan 15 03:58:36 +0000 2020","favourites_count":249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":302,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221993024814755840\/azzFIlIN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221993024814755840\/azzFIlIN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217294874808111104\/1579062439","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 20:29:55 +0000 2020","id":1234576692682903559,"id_str":"1234576692682903559","text":"Si - cada 23 hs se muriera un argentin@ por coronavirus estariamos todos en p\u00e1nico. - Pero como son femicidios nadie se\u2026 https:\/\/t.co\/u4MkfxleLx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u4MkfxleLx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234576692682903559","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1652676409,"id_str":"1652676409","name":"#Volvimos\u270c\ud83c\udffe","screen_name":"Visitante78","location":"Patagonia, - Argentina ","description":"En barrio de ricachones, sin armas ni rencores, - es solo plata y no amores. \/\/Sub\u00ed, despu\u00e9s te explico.\\\\ La - patria es el otro\/\/","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6972,"friends_count":6815,"listed_count":8,"created_at":"Wed - Aug 07 10:49:55 +0000 2013","favourites_count":100293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64874,"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\/1211059959280078849\/zniLRpBe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211059959280078849\/zniLRpBe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652676409\/1581028846","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2891,"favorite_count":3928,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":2891,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895629920260096,"id_str":"1234895629920260096","text":"RT - @motorwars: \u0e1b\u0e23\u0e30\u0e18\u0e32\u0e19\u0e32\u0e18\u0e34\u0e1a\u0e14\u0e35\u0e21\u0e38\u0e19 - \u0e41\u0e08-\u0e2d\u0e34\u0e19 \u0e1c\u0e39\u0e49\u0e19\u0e33\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e43\u0e15\u0e49 - \u0e02\u0e2d\u0e42\u0e17\u0e29\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e0a\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a - \"\u0e04\u0e27\u0e32\u0e21\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\" \u0e02\u0e2d\u0e07\u0e23\u0e31\u0e10\u0e1a\u0e32\u0e25 - \u0e43\u0e19\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 #\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22 - \u0e02\u0e32\u0e14\u0e41\u0e04\u0e25\u0e19 \u0e17\u0e48\u0e32\u0e21\u0e01\u0e25\u0e32\u0e07\u0e27\u0e34\u0e01\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22","indices":[105,119]}],"symbols":[],"user_mentions":[{"screen_name":"motorwars","name":"pone - poyepoloye","id":75972047,"id_str":"75972047","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":810497272874024960,"id_str":"810497272874024960","name":"\ub2c8\ub77c\ub0a8 - feat.jae''s lover","screen_name":"fallinginjae","location":"U -127 - DREAM - - WayV PRVT01","description":"Dear. my jae\n\ud83c\udf27when there is rainning - in my heart, you''re the moon which bring the light in the darkness\ud83c\udf15\ud83c\udf20\n\u2661renjun''s - mom\n\u2661always looking on jae","url":"https:\/\/t.co\/wvQkKRfC6y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wvQkKRfC6y","expanded_url":"https:\/\/twitter.com\/fallinginjae\/status\/1231509698592964609?s=09","display_url":"twitter.com\/fallinginjae\/s\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":435,"listed_count":0,"created_at":"Sun - Dec 18 14:49:42 +0000 2016","favourites_count":9402,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56671,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229709207814852609\/RG4oAQoM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229709207814852609\/RG4oAQoM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/810497272874024960\/1575839800","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 06:02:21 +0000 2020","id":1234720751720095744,"id_str":"1234720751720095744","text":"\u0e1b\u0e23\u0e30\u0e18\u0e32\u0e19\u0e32\u0e18\u0e34\u0e1a\u0e14\u0e35\u0e21\u0e38\u0e19 - \u0e41\u0e08-\u0e2d\u0e34\u0e19 \u0e1c\u0e39\u0e49\u0e19\u0e33\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e43\u0e15\u0e49 - \u0e02\u0e2d\u0e42\u0e17\u0e29\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e0a\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a - \"\u0e04\u0e27\u0e32\u0e21\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\" \u0e02\u0e2d\u0e07\u0e23\u0e31\u0e10\u0e1a\u0e32\u0e25 - \u0e43\u0e19\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 #\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22 - \u0e02\u0e32\u0e14\u0e41\u0e04\u0e25\u0e19 \u0e17\u0e48\u2026 https:\/\/t.co\/TSgPmJhcnI","truncated":true,"entities":{"hashtags":[{"text":"\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e2d\u0e19\u0e32\u0e21\u0e31\u0e22","indices":[90,104]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TSgPmJhcnI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234720751720095744","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"th","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75972047,"id_str":"75972047","name":"pone - poyepoloye","screen_name":"motorwars","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7685,"friends_count":2583,"listed_count":185,"created_at":"Mon - Sep 21 06:28:06 +0000 2009","favourites_count":189780,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":228730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1097792170591830016\/6waaec1Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1097792170591830016\/6waaec1Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75972047\/1564709395","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6975,"favorite_count":992,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},"is_quote_status":false,"retweet_count":6975,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"th"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895629828214785,"id_str":"1234895629828214785","text":"RT - @BuzzFeed: BTS Fans Have Donated Over $300,000 To Coronavirus Relief Efforts - After The Band Cancelled Their Seoul Tour Dates https:\/\/t.c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BuzzFeed","name":"BuzzFeed","id":5695632,"id_str":"5695632","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":995531161576206336,"id_str":"995531161576206336","name":"YESjams\u2679","screen_name":"lilmeowmeowboy","location":"BTS - world","description":"Kim Namjoon for president!\ud83d\udc9c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":527,"friends_count":1104,"listed_count":0,"created_at":"Sun - May 13 05:08:19 +0000 2018","favourites_count":19645,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4468,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228835768811917312\/_dFPQ50D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228835768811917312\/_dFPQ50D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/995531161576206336\/1576746801","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:54:06 +0000 2020","id":1234461980737654784,"id_str":"1234461980737654784","text":"BTS - Fans Have Donated Over $300,000 To Coronavirus Relief Efforts After The Band - Cancelled Their Seoul Tour Dates https:\/\/t.co\/DRCdxZJudy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DRCdxZJudy","expanded_url":"https:\/\/www.buzzfeed.com\/eleanorbate\/bts-army-donated-coronavirus-relief-tour-cancelled?utm_source=dynamic&utm_campaign=bftwbuzzfeed&ref=bftwbuzzfeed","display_url":"buzzfeed.com\/eleanorbate\/bt\u2026","indices":[114,137]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":5695632,"id_str":"5695632","name":"BuzzFeed","screen_name":"BuzzFeed","location":"New - York","description":"Brb, taking quizzes.","url":"https:\/\/t.co\/iiAufe34NG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iiAufe34NG","expanded_url":"http:\/\/buzzfeed.com","display_url":"buzzfeed.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6590202,"friends_count":2905,"listed_count":23910,"created_at":"Tue - May 01 21:40:03 +0000 2007","favourites_count":5311,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":242578,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/687767655214891008\/n9pHVYUl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/687767655214891008\/n9pHVYUl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5695632\/1576098627","profile_link_color":"0077CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EEEEEE","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6870,"favorite_count":19272,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6870,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895629819797507,"id_str":"1234895629819797507","text":"RT - @Elysee: EN DIRECT | Coronavirus COVID-19 : le Pr\u00e9sident @EmmanuelMacron - est au centre de crise du minist\u00e8re des Solidarit\u00e9s et de la Sa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Elysee","name":"\u00c9lys\u00e9e","id":16717501,"id_str":"16717501","indices":[3,10]},{"screen_name":"EmmanuelMacron","name":"Emmanuel - Macron","id":1976143068,"id_str":"1976143068","indices":[60,75]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1048839448669179904,"id_str":"1048839448669179904","name":"sandra - #Macroniste #PuteAMacronPourLesHaineux","screen_name":"sansan131174","location":"Hauts-de-Seine, - Ile-de-France","description":"#SoutienNosFDO #SoutienLeChefDesArm\u00e9es - #SoutienLaR\u00e9forme #MarreDesGr\u00e9vistesFeignasses #soutien\u00c0ChristopheCastaner - #DeDroiteAvecMacron #JeanLucViensNousChercher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1109,"friends_count":846,"listed_count":8,"created_at":"Sun - Oct 07 07:36:25 +0000 2018","favourites_count":4386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6165,"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\/1232926240446742528\/wi4nUzqq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232926240446742528\/wi4nUzqq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1048839448669179904\/1579811922","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:18:17 +0000 2020","id":1234890853044195328,"id_str":"1234890853044195328","text":"EN - DIRECT | Coronavirus COVID-19 : le Pr\u00e9sident @EmmanuelMacron est au centre - de crise du minist\u00e8re des Solidarit\u00e9s\u2026 https:\/\/t.co\/kqMsnMw0vm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmmanuelMacron","name":"Emmanuel - Macron","id":1976143068,"id_str":"1976143068","indices":[48,63]}],"urls":[{"url":"https:\/\/t.co\/kqMsnMw0vm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234890853044195328","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":16717501,"id_str":"16717501","name":"\u00c9lys\u00e9e","screen_name":"Elysee","location":"France","description":"Bienvenue - sur le compte officiel de la Pr\u00e9sidence de la R\u00e9publique fran\u00e7aise - et du Palais de l''\u00c9lys\u00e9e.","url":"https:\/\/t.co\/tXWVLyHyWM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tXWVLyHyWM","expanded_url":"http:\/\/www.elysee.fr","display_url":"elysee.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2375380,"friends_count":293,"listed_count":7160,"created_at":"Mon - Oct 13 06:23:33 +0000 2008","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":23438,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181902227490914304\/X21iEaEv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181902227490914304\/X21iEaEv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16717501\/1570132215","profile_link_color":"4260A2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E9E9E8","profile_text_color":"434544","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":93,"favorite_count":118,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":93,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895629786243072,"id_str":"1234895629786243072","text":"RT - @AudreyAurus1: Hard pass on that, thanks! \n\n\"Sing God Save The Queen as - you wash hands to stop coronavirus, Hancock instructs https:\/\/t.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AudreyAurus1","name":"Audrey","id":621023206,"id_str":"621023206","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":239077812,"id_str":"239077812","name":"Tim - Yates","screen_name":"TPY52","location":"","description":"All views are my - own. Re tweeting something doesn''t mean I agree with it.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":818,"friends_count":1734,"listed_count":36,"created_at":"Sun - Jan 16 19:19:03 +0000 2011","favourites_count":13311,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21955,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217439864\/Tim_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217439864\/Tim_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/239077812\/1454073743","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:05:13 +0000 2020","id":1234494978858024961,"id_str":"1234494978858024961","text":"Hard - pass on that, thanks! \n\n\"Sing God Save The Queen as you wash hands to stop - coronavirus, Hancock instructs https:\/\/t.co\/RonWc7JTQG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RonWc7JTQG","expanded_url":"https:\/\/www.thenational.scot\/news\/18274272.coronavirus-matt-hancock-tells-public-sing-god-save-queen\/?ref=twtrec","display_url":"thenational.scot\/news\/18274272.\u2026","indices":[111,134]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":621023206,"id_str":"621023206","name":"Audrey","screen_name":"AudreyAurus1","location":"","description":"Views - and typos are my own unless stated otherwise.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8166,"friends_count":3454,"listed_count":53,"created_at":"Thu - Jun 28 14:14:06 +0000 2012","favourites_count":65595,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":75142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1226245525449715713\/wbf1vyx5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226245525449715713\/wbf1vyx5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/621023206\/1572638596","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":112,"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"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895629710700544,"id_str":"1234895629710700544","text":"RT - @Riesgos_Ec: Medidas b\u00e1sicas para la prevenci\u00f3n del coronavirus - #COVID19:\n\u2705Lavado de manos con agua y jab\u00f3n o alcohol gel.\n\u2705Higiene - pers\u2026","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[67,75]}],"symbols":[],"user_mentions":[{"screen_name":"Riesgos_Ec","name":"Riesgos - Ecuador","id":303941159,"id_str":"303941159","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":746505331526762497,"id_str":"746505331526762497","name":"Alexandra - Chichanda","screen_name":"AlexandraChich5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":105,"listed_count":2,"created_at":"Sat - Jun 25 00:48:35 +0000 2016","favourites_count":278,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15151,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1065650445656485888\/KnRw2CJD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1065650445656485888\/KnRw2CJD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/746505331526762497\/1477531490","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 19:40:35 +0000 2020","id":1233839500339634177,"id_str":"1233839500339634177","text":"Medidas - b\u00e1sicas para la prevenci\u00f3n del coronavirus #COVID19:\n\u2705Lavado - de manos con agua y jab\u00f3n o alcohol gel.\n\u2705Higi\u2026 https:\/\/t.co\/N45n3T5xDN","truncated":true,"entities":{"hashtags":[{"text":"COVID19","indices":[51,59]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/N45n3T5xDN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233839500339634177","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1233839037468872706,"in_reply_to_status_id_str":"1233839037468872706","in_reply_to_user_id":303941159,"in_reply_to_user_id_str":"303941159","in_reply_to_screen_name":"Riesgos_Ec","user":{"id":303941159,"id_str":"303941159","name":"Riesgos - Ecuador","screen_name":"Riesgos_Ec","location":"Ecuador","description":"Cuenta - Oficial de Twitter del Servicio Nacional de Gesti\u00f3n de Riesgos y Emergencias - del Ecuador (SNGRE) | Fomentamos una Cultura de Prevenci\u00f3n","url":"https:\/\/t.co\/mayTlHfdYn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mayTlHfdYn","expanded_url":"http:\/\/www.gestionderiesgos.gob.ec\/","display_url":"gestionderiesgos.gob.ec","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":496490,"friends_count":799,"listed_count":714,"created_at":"Mon - May 23 17:32:18 +0000 2011","favourites_count":1563,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":85980,"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\/1213502103383089153\/g8ftOguf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213502103383089153\/g8ftOguf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/303941159\/1580250887","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":40,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":81,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:16 +0000 2020","id":1234895629593305090,"id_str":"1234895629593305090","text":"RT - @ReinaldoHN: Hay muchas manera de saludar para prevenir el Coronavirus. \n\u00bfYa - elegiste el tuyo? \n#CODVID19 https:\/\/t.co\/cXBtVvdaDe","truncated":false,"entities":{"hashtags":[{"text":"CODVID19","indices":[99,108]}],"symbols":[],"user_mentions":[{"screen_name":"ReinaldoHN","name":"Reinaldo - S\u00e1nchez","id":442936266,"id_str":"442936266","indices":[3,14]}],"urls":[],"media":[{"id":1234830907669975040,"id_str":"1234830907669975040","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234830907669975040\/pu\/img\/W_sq-6C_l3WxBUn8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234830907669975040\/pu\/img\/W_sq-6C_l3WxBUn8.jpg","url":"https:\/\/t.co\/cXBtVvdaDe","display_url":"pic.twitter.com\/cXBtVvdaDe","expanded_url":"https:\/\/twitter.com\/ReinaldoHN\/status\/1234830980327800832\/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":1234830980327800832,"source_status_id_str":"1234830980327800832","source_user_id":442936266,"source_user_id_str":"442936266"}]},"extended_entities":{"media":[{"id":1234830907669975040,"id_str":"1234830907669975040","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234830907669975040\/pu\/img\/W_sq-6C_l3WxBUn8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234830907669975040\/pu\/img\/W_sq-6C_l3WxBUn8.jpg","url":"https:\/\/t.co\/cXBtVvdaDe","display_url":"pic.twitter.com\/cXBtVvdaDe","expanded_url":"https:\/\/twitter.com\/ReinaldoHN\/status\/1234830980327800832\/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":1234830980327800832,"source_status_id_str":"1234830980327800832","source_user_id":442936266,"source_user_id_str":"442936266","video_info":{"aspect_ratio":[20,11],"duration_millis":77760,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234830907669975040\/pu\/pl\/_wOkHJfirOsCh62h.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234830907669975040\/pu\/vid\/490x270\/BP9S1rc-7-SPlCCT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234830907669975040\/pu\/vid\/640x352\/fs4ENxcuGkNpDwO8.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":442936266,"id_str":"442936266","name":"Reinaldo - S\u00e1nchez","screen_name":"ReinaldoHN","location":"Honduras","description":"Presidente - del @PNH_oficial, Diputado por el Departamento de Olancho y Ministro de la - @sedis_hn. Mi lucha, crear oportunidades para los m\u00e1s pobres.","url":"https:\/\/t.co\/Ll7dq6t4sH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ll7dq6t4sH","expanded_url":"http:\/\/www.reinaldosanchez.com","display_url":"reinaldosanchez.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":56642,"friends_count":368,"listed_count":88,"created_at":"Wed - Dec 21 16:41:38 +0000 2011","favourites_count":6101,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10478,"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\/1226688790841958401\/Vmls3ZAa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226688790841958401\/Vmls3ZAa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/442936266\/1566433708","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"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":823544138578661376,"id_str":"823544138578661376","name":"Blanca - Baraho","screen_name":"barahona_blanc","location":"Honduras","description":"super - amistosa y simpatica. pero no confies en nadie... #CR7","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":0,"listed_count":0,"created_at":"Mon - Jan 23 14:53:18 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2650,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/849457116507144192\/xK4rBLYm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/849457116507144192\/xK4rBLYm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/823544138578661376\/1491361394","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 13:20:22 +0000 2020","id":1234830980327800832,"id_str":"1234830980327800832","text":"Hay - muchas manera de saludar para prevenir el Coronavirus. \n\u00bfYa elegiste - el tuyo? \n#CODVID19 https:\/\/t.co\/cXBtVvdaDe","truncated":false,"entities":{"hashtags":[{"text":"CODVID19","indices":[83,92]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234830907669975040,"id_str":"1234830907669975040","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234830907669975040\/pu\/img\/W_sq-6C_l3WxBUn8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234830907669975040\/pu\/img\/W_sq-6C_l3WxBUn8.jpg","url":"https:\/\/t.co\/cXBtVvdaDe","display_url":"pic.twitter.com\/cXBtVvdaDe","expanded_url":"https:\/\/twitter.com\/ReinaldoHN\/status\/1234830980327800832\/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":1234830907669975040,"id_str":"1234830907669975040","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234830907669975040\/pu\/img\/W_sq-6C_l3WxBUn8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234830907669975040\/pu\/img\/W_sq-6C_l3WxBUn8.jpg","url":"https:\/\/t.co\/cXBtVvdaDe","display_url":"pic.twitter.com\/cXBtVvdaDe","expanded_url":"https:\/\/twitter.com\/ReinaldoHN\/status\/1234830980327800832\/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":77760,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234830907669975040\/pu\/pl\/_wOkHJfirOsCh62h.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234830907669975040\/pu\/vid\/490x270\/BP9S1rc-7-SPlCCT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234830907669975040\/pu\/vid\/640x352\/fs4ENxcuGkNpDwO8.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":442936266,"id_str":"442936266","name":"Reinaldo - S\u00e1nchez","screen_name":"ReinaldoHN","location":"Honduras","description":"Presidente - del @PNH_oficial, Diputado por el Departamento de Olancho y Ministro de la - @sedis_hn. Mi lucha, crear oportunidades para los m\u00e1s pobres.","url":"https:\/\/t.co\/Ll7dq6t4sH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ll7dq6t4sH","expanded_url":"http:\/\/www.reinaldosanchez.com","display_url":"reinaldosanchez.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":56642,"friends_count":368,"listed_count":88,"created_at":"Wed - Dec 21 16:41:38 +0000 2011","favourites_count":6101,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10478,"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\/1226688790841958401\/Vmls3ZAa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226688790841958401\/Vmls3ZAa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/442936266\/1566433708","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":96,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":47,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:15 +0000 2020","id":1234895629509431296,"id_str":"1234895629509431296","text":"RT - @WhiteHouse: President @realDonaldTrump''s early action on coronavirus bought - time and saved lives. \n\nCommunity leaders can help by shari\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WhiteHouse","name":"The - White House","id":822215673812119553,"id_str":"822215673812119553","indices":[3,14]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[26,42]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46945288,"id_str":"46945288","name":"Samuel - E Roberson Jr","screen_name":"SamRobersonJr","location":"Rich Creek, VA","description":"I - am a retired-Disabled Sound Engineer enjoying helping people with sound advice. - #MAGAveteran \ud83c\uddfa\ud83c\uddf8 \ud83c\udfbc \ud83c\uddfa\ud83c\uddf8 - \u2696\ufe0f \ud83c\uddfa\ud83c\uddf8 \ud83c\udfbc \ud83c\uddfa\ud83c\uddf8 - \ud83c\udfbc \ud83c\uddfa\ud83c\uddf8\u267f\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10958,"friends_count":10985,"listed_count":8,"created_at":"Sat - Jun 13 19:18:34 +0000 2009","favourites_count":48043,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48943,"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\/1170062237266042885\/vq6JsVVL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170062237266042885\/vq6JsVVL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46945288\/1567952157","profile_link_color":"B11A1D","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:34:57 +0000 2020","id":1234895047004389376,"id_str":"1234895047004389376","text":"President - @realDonaldTrump''s early action on coronavirus bought time and saved lives. - \n\nCommunity leaders can help\u2026 https:\/\/t.co\/MP2QA2YcTA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[10,26]}],"urls":[{"url":"https:\/\/t.co\/MP2QA2YcTA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234895047004389376","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eTheWhiteHouse\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":822215673812119553,"id_str":"822215673812119553","name":"The - White House","screen_name":"WhiteHouse","location":"Washington, D.C.","description":"Welcome - to @WhiteHouse! Follow for the latest from President @realDonaldTrump and - his Administration. Tweets may be archived: https:\/\/t.co\/IURuMIrzxb","url":"https:\/\/t.co\/wyOVgSLgBV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wyOVgSLgBV","expanded_url":"http:\/\/www.WhiteHouse.gov","display_url":"WhiteHouse.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IURuMIrzxb","expanded_url":"http:\/\/whitehouse.gov\/privacy","display_url":"whitehouse.gov\/privacy","indices":[126,149]}]}},"protected":false,"followers_count":20347288,"friends_count":18,"listed_count":13095,"created_at":"Thu - Jan 19 22:54:27 +0000 2017","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":16013,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1059888693945630720\/yex0Gcbi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1059888693945630720\/yex0Gcbi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/822215673812119553\/1580922287","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":183,"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"},{"created_at":"Tue - Mar 03 17:37:15 +0000 2020","id":1234895629069029378,"id_str":"1234895629069029378","text":"RT - @bigbangnw: ATENTOS:\nEl hombre de 40 a\u00f1os hizo un recorrido Budapest-Italia - y luego regres\u00f3 al pa\u00eds el 26 de febrero, presentando s\u00edntom\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bigbangnw","name":"Big - Bang News","id":2942385669,"id_str":"2942385669","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129932574,"id_str":"129932574","name":"Matias. - B. O.","screen_name":"MaatOcampo","location":"Ciudad Aut\u00f3noma de Buenos - Aire","description":"No triunfa el inteligente, triunfa el voluntarioso #Cambiemos. - #JuntosPorElCambio. #SiSePuede UBA Derecho.","url":"https:\/\/t.co\/nUAM21r5vJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nUAM21r5vJ","expanded_url":"http:\/\/facebook.com\/maatocampo","display_url":"facebook.com\/maatocampo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":330,"friends_count":989,"listed_count":3,"created_at":"Mon - Apr 05 21:04:53 +0000 2010","favourites_count":734,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18525,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/947999943146524672\/Tj0OT2nf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/947999943146524672\/Tj0OT2nf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129932574\/1497526308","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:34:17 +0000 2020","id":1234894880628989953,"id_str":"1234894880628989953","text":"ATENTOS:\nEl - hombre de 40 a\u00f1os hizo un recorrido Budapest-Italia y luego regres\u00f3 - al pa\u00eds el 26 de febrero, presentan\u2026 https:\/\/t.co\/uU2aDN05IA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uU2aDN05IA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234894880628989953","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":2942385669,"id_str":"2942385669","name":"Big - Bang News","screen_name":"bigbangnw","location":"","description":"No sos un - simple lector, sos parte. Informate r\u00e1pido y no te pierdas nada. Sumate.","url":"https:\/\/t.co\/0D9qurFWj1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0D9qurFWj1","expanded_url":"http:\/\/www.bigbangnews.com","display_url":"bigbangnews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":240308,"friends_count":852,"listed_count":505,"created_at":"Fri - Dec 26 17:29:25 +0000 2014","favourites_count":809,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":169025,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/777961216882925568\/2n9WQMEt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/777961216882925568\/2n9WQMEt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2942385669\/1579535695","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"es"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:15 +0000 2020","id":1234895629035458562,"id_str":"1234895629035458562","text":"RT - @elchiringuitotv: \ud83d\udea8 OFICIAL | Estos partidos se jugar\u00e1n a - puerta cerrada por el CORONAVIRUS:\n\n\u274c VALENCIA - ATALANTA (10 de marzo)\n\n\u274c - GET\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elchiringuitotv","name":"El - Chiringuito TV","id":18905975,"id_str":"18905975","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":413254384,"id_str":"413254384","name":"santos","screen_name":"sants_20","location":"","description":"los - hombres no se hacen ladrones porque quieran, sino por la miseria y la necesidad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":48,"listed_count":0,"created_at":"Tue - Nov 15 17:23:14 +0000 2011","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2767,"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\/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\/564403421034184704\/1-DQd5zc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564403421034184704\/1-DQd5zc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/413254384\/1423399265","profile_link_color":"19CF86","profile_sidebar_border_color":"03F703","profile_sidebar_fill_color":"E5F505","profile_text_color":"FF0000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:53:52 +0000 2020","id":1234884710272249858,"id_str":"1234884710272249858","text":"\ud83d\udea8 - OFICIAL | Estos partidos se jugar\u00e1n a puerta cerrada por el CORONAVIRUS:\n\n\u274c - VALENCIA - ATALANTA (10 de marzo)\n\n\u274c\u2026 https:\/\/t.co\/z6Pf6OStnw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/z6Pf6OStnw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234884710272249858","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18905975,"id_str":"18905975","name":"El - Chiringuito TV","screen_name":"elchiringuitotv","location":"","description":"De - domingo a jueves, en @MegaTDT. Presentado y dirigido por @jpedrerol Facebook: - https:\/\/t.co\/DeuqojdYOY | Instagram: https:\/\/t.co\/leZemA8zzo","url":"https:\/\/t.co\/wLGSmQyxKH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wLGSmQyxKH","expanded_url":"http:\/\/mega.atresmedia.com\/programas\/el-chiringuito-de-jugones\/","display_url":"mega.atresmedia.com\/programas\/el-c\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/DeuqojdYOY","expanded_url":"http:\/\/fb.com\/elchiringuitotv","display_url":"fb.com\/elchiringuitotv","indices":[81,104]},{"url":"https:\/\/t.co\/leZemA8zzo","expanded_url":"http:\/\/instagram.com\/elchiringuitotv","display_url":"instagram.com\/elchiringuitotv","indices":[118,141]}]}},"protected":false,"followers_count":1560074,"friends_count":74,"listed_count":5391,"created_at":"Mon - Jan 12 16:43:41 +0000 2009","favourites_count":8694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":453902,"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\/1186040077136355329\/Z-_Hmkv4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186040077136355329\/Z-_Hmkv4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18905975\/1479234373","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"999999","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":133,"favorite_count":451,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":133,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Tue - Mar 03 17:37:15 +0000 2020","id":1234895629010325504,"id_str":"1234895629010325504","text":"RT - @charliekirk11: Democrats claim they''re not \"playing politics\" with the - Coronavirus\n\nSo why are reports claiming that House Leadership i\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"charliekirk11","name":"Charlie - Kirk","id":292929271,"id_str":"292929271","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2530206090,"id_str":"2530206090","name":"DAVID - WILLIAMS","screen_name":"davew266","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":50,"listed_count":0,"created_at":"Wed - May 28 15:06:53 +0000 2014","favourites_count":5290,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1245,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:30:39 +0000 2020","id":1234893966966804480,"id_str":"1234893966966804480","text":"Democrats - claim they''re not \"playing politics\" with the Coronavirus\n\nSo why are - reports claiming that House Leaders\u2026 https:\/\/t.co\/3HiWW7CQ82","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3HiWW7CQ82","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234893966966804480","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292929271,"id_str":"292929271","name":"Charlie - Kirk","screen_name":"charliekirk11","location":"Phoenix, AZ","description":"Founder - & President of @TPUSA Chairman of @TrumpStudents Author of upcoming book MAGA - Doctrine We are all sinners, saved by Jesus Opinions here are my own","url":"https:\/\/t.co\/WWs5TJFjJd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WWs5TJFjJd","expanded_url":"http:\/\/apple.co\/2VCxGsh","display_url":"apple.co\/2VCxGsh","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1646714,"friends_count":233407,"listed_count":5489,"created_at":"Wed - May 04 13:37:25 +0000 2011","favourites_count":31411,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":46603,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1095532385926631424\/ODX2AmEZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095532385926631424\/ODX2AmEZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292929271\/1578694312","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":398,"favorite_count":711,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":398,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:15 +0000 2020","id":1234895628959772672,"id_str":"1234895628959772672","text":"RT - @Independent: Greggs will pay workers who self isolate due to coronavirus - https:\/\/t.co\/kwXGP6y6a3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Independent","name":"The - Independent","id":16973333,"id_str":"16973333","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/kwXGP6y6a3","expanded_url":"https:\/\/www.independent.co.uk\/news\/business\/news\/coronavirus-greggs-workers-pay-self-isolation-a9372946.html?utm_medium=Social&utm_source=Twitter#Echobox=1583252668","display_url":"independent.co.uk\/news\/business\/\u2026","indices":[77,100]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":827830917313945601,"id_str":"827830917313945601","name":"Prakay - Cc","screen_name":"CcPrakay","location":"\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23, - \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","description":"\u0e28\u0e34\u0e25\u0e1b\u0e30\u0e41\u0e25\u0e30\u0e27\u0e31\u0e12\u0e19\u0e18\u0e23\u0e23\u0e21 - \u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e41\u0e25\u0e30\u0e27\u0e23\u0e23\u0e13\u0e04\u0e14\u0e35","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1000,"friends_count":163,"listed_count":26,"created_at":"Sat - Feb 04 10:47:25 +0000 2017","favourites_count":186007,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":125203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1066624163173982208\/H5Jv1g3o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1066624163173982208\/H5Jv1g3o_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 16:50:24 +0000 2020","id":1234883836275720192,"id_str":"1234883836275720192","text":"Greggs - will pay workers who self isolate due to coronavirus https:\/\/t.co\/kwXGP6y6a3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kwXGP6y6a3","expanded_url":"https:\/\/www.independent.co.uk\/news\/business\/news\/coronavirus-greggs-workers-pay-self-isolation-a9372946.html?utm_medium=Social&utm_source=Twitter#Echobox=1583252668","display_url":"independent.co.uk\/news\/business\/\u2026","indices":[60,83]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":16973333,"id_str":"16973333","name":"The - Independent","screen_name":"Independent","location":"London, England","description":"News, - comment and features from The Independent. \n\nTry an ad-free experience with - access to premium articles with our app: https:\/\/t.co\/XGI8DtCR6B","url":"https:\/\/t.co\/ENon5VCZ03","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ENon5VCZ03","expanded_url":"http:\/\/independent.co.uk","display_url":"independent.co.uk","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/XGI8DtCR6B","expanded_url":"http:\/\/independent.onelink.me\/wgiA\/cfc","display_url":"independent.onelink.me\/wgiA\/cfc","indices":[123,146]}]}},"protected":false,"followers_count":3075603,"friends_count":1196,"listed_count":24114,"created_at":"Sun - Oct 26 00:00:29 +0000 2008","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":956403,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.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\/1148561910134202369\/DRu4DQGV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148561910134202369\/DRu4DQGV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16973333\/1580733877","profile_link_color":"FC051A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":92,"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"},{"created_at":"Tue - Mar 03 17:37:15 +0000 2020","id":1234895628943155201,"id_str":"1234895628943155201","text":"RT - @CNBCnow: BREAKING: Fed cuts rates by half a percentage point to combat coronavirus - slowdown https:\/\/t.co\/OI1ONXLb4P","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNBCnow","name":"CNBC - Now","id":26574283,"id_str":"26574283","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/OI1ONXLb4P","expanded_url":"https:\/\/cnb.cx\/2Tk1KqU","display_url":"cnb.cx\/2Tk1KqU","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":850197235329400832,"id_str":"850197235329400832","name":".","screen_name":"jmoneyy81","location":"Maryland","description":"Family - 1\ufe0f\u20e3st \ud83d\udc3a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":286,"friends_count":250,"listed_count":0,"created_at":"Fri - Apr 07 04:03:11 +0000 2017","favourites_count":875,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11175,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212405563012898816\/xNDaDf-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212405563012898816\/xNDaDf-u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/850197235329400832\/1577895127","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 15:01:37 +0000 2020","id":1234856461618024459,"id_str":"1234856461618024459","text":"BREAKING: - Fed cuts rates by half a percentage point to combat coronavirus slowdown https:\/\/t.co\/OI1ONXLb4P","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OI1ONXLb4P","expanded_url":"https:\/\/cnb.cx\/2Tk1KqU","display_url":"cnb.cx\/2Tk1KqU","indices":[83,106]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":26574283,"id_str":"26574283","name":"CNBC - Now","screen_name":"CNBCnow","location":"","description":"Breaking news, real-time - market updates & more from @CNBC.","url":"https:\/\/t.co\/xNSucapdhO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xNSucapdhO","expanded_url":"http:\/\/cnbc.com","display_url":"cnbc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":424150,"friends_count":52,"listed_count":7808,"created_at":"Wed - Mar 25 19:48:57 +0000 2009","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":39937,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"010C13","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025457837026275329\/F51xxiuX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025457837026275329\/F51xxiuX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26574283\/1533323170","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCCCCC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":719,"favorite_count":737,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":719,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:15 +0000 2020","id":1234895628766978055,"id_str":"1234895628766978055","text":"RT - @DrNealHouston: Yes, A Border Wall Will Help Contain The Coronavirus\n\nIf - the coronavirus begins to spread in Mexico, we\u2019re going to wish\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrNealHouston","name":"Neal - Houston, PhD \ud83c\uddfa\ud83c\uddf2 \u2b50\u2b50\u2b50","id":56491860,"id_str":"56491860","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46291456,"id_str":"46291456","name":"Marcia - Anstall","screen_name":"MstallMN","location":"Texas, USA","description":"From - Detroit originally followed by Ohio, Florida, Minnesota, Salt Lake City and - landing in South Texas. Conservative, Banker, Free Thinker. TRUMP 2020 IFB - MAGA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1553,"friends_count":1824,"listed_count":1,"created_at":"Thu - Jun 11 02:24:35 +0000 2009","favourites_count":52302,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1140738629259661315\/vy4gmvsu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140738629259661315\/vy4gmvsu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 14:05:43 +0000 2020","id":1234842394274795521,"id_str":"1234842394274795521","text":"Yes, - A Border Wall Will Help Contain The Coronavirus\n\nIf the coronavirus begins - to spread in Mexico, we\u2019re going to\u2026 https:\/\/t.co\/aVKxnDTvCB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aVKxnDTvCB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234842394274795521","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":56491860,"id_str":"56491860","name":"Neal - Houston, PhD \ud83c\uddfa\ud83c\uddf2 \u2b50\u2b50\u2b50","screen_name":"DrNealHouston","location":"DC - Constitutional Conservative","description":"THE CONSERVATIVE DOC | KAG \ud83c\uddfa\ud83c\uddf8 - Unapologetic | MAGA | US Army Vet-91B | Sociology \u2022 Researcher | Now - Enjoying Retirement | Political Commentator | \u039c\u039f\u039b\u03a9\u039d - \u039b\u0391\u0392\u0395","url":"https:\/\/t.co\/OPV898umcj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OPV898umcj","expanded_url":"https:\/\/mikeflynndefensefund.org\/","display_url":"mikeflynndefensefund.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53466,"friends_count":45988,"listed_count":580,"created_at":"Mon - Jul 13 21:02:39 +0000 2009","favourites_count":235299,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":117288,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131414","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\/1234485912731627520\/gq3c21_E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234485912731627520\/gq3c21_E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/56491860\/1581251050","profile_link_color":"0B0D01","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"337A7A","profile_text_color":"181A09","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":30,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Mar 03 17:37:15 +0000 2020","id":1234895628708327425,"id_str":"1234895628708327425","text":"RT - @ABCCardinal: [AHORA] #ABCMundo\ud83c\udf0e Analizan un primer caso de #Coronavirus - en Argentina.\n\n\ud83d\udcccEl protocolo se activ\u00f3 en una cl\u00ednica - privada d\u2026","truncated":false,"entities":{"hashtags":[{"text":"ABCMundo","indices":[25,34]},{"text":"Coronavirus","indices":[63,75]}],"symbols":[],"user_mentions":[{"screen_name":"ABCCardinal","name":"ABC - Cardinal 730 AM","id":218488955,"id_str":"218488955","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":249126719,"id_str":"249126719","name":"El - Informante","screen_name":"LaJusticierra","location":"PARAGUAY","description":"7 - Informantes de la Rep\u00fablica del Paraguay que compartimos informaciones - A1 las 24 hs. Compartinos tu informaci\u00f3n y la ponemos en la Red.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6762,"friends_count":2265,"listed_count":40,"created_at":"Tue - Feb 08 12:30:21 +0000 2011","favourites_count":65061,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":115972,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"185569","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198951571150774274\/27uLAhY__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198951571150774274\/27uLAhY__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/249126719\/1546513571","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 03 17:30:51 +0000 2020","id":1234894018074554368,"id_str":"1234894018074554368","text":"[AHORA] - #ABCMundo\ud83c\udf0e Analizan un primer caso de #Coronavirus en Argentina.\n\n\ud83d\udcccEl - protocolo se activ\u00f3 en una cl\u00ednica pr\u2026 https:\/\/t.co\/SKNGmMImVT","truncated":true,"entities":{"hashtags":[{"text":"ABCMundo","indices":[8,17]},{"text":"Coronavirus","indices":[46,58]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SKNGmMImVT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234894018074554368","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218488955,"id_str":"218488955","name":"ABC - Cardinal 730 AM","screen_name":"ABCCardinal","location":"Paraguay","description":"ABC - Cardinal, la radio m\u00e1s potente del pa\u00eds. Noticias, deportes, debates, - econom\u00eda, agro, espect\u00e1culos y m\u00e1s. \u260e 41 51 730 \/ whatsapp - (0972)730 730","url":"https:\/\/t.co\/8MlACDmVFo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8MlACDmVFo","expanded_url":"http:\/\/www.abc.com.py\/730am","display_url":"abc.com.py\/730am","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":277188,"friends_count":300,"listed_count":535,"created_at":"Mon - Nov 22 13:52:05 +0000 2010","favourites_count":2005,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":330756,"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\/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\/1134603335691120640\/M6QSJIGI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134603335691120640\/M6QSJIGI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218488955\/1581340343","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"}],"search_metadata":{"completed_in":0.113,"max_id":1234895635125436416,"max_id_str":"1234895635125436416","next_results":"?max_id=1234518572921237508&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1234895635125436416&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/636336373453053952/yv-YqI5w_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '543569' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:20 GMT - Last-Modified: - - Wed, 26 Aug 2015 00:34:28 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/636336373453053952 - X-Cache: - - HIT - X-Connection-Hash: - - 2b3d800120374d83d24f888cfe63e0ca - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/551152004148785152/WavzMR0C_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '217353' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Last-Modified: - - Fri, 02 Jan 2015 23:02:12 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/551152004148785152 - X-Cache: - - HIT - X-Connection-Hash: - - 5edce12a899378aac21bc59e41a2a41b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '1655' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Houston,%20Texas&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232763579830558720/055sMET8_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '508292' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Last-Modified: - - Wed, 26 Feb 2020 20:23:15 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1232763579830558720 - X-Cache: - - HIT - X-Connection-Hash: - - 8638a12da3a81bbbbe0e0b3e1d982efc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Houston,%20Texas&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mirfield,%20England&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/499272392791687170/x-Xf4yuF_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '78288' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Last-Modified: - - Tue, 12 Aug 2014 19:11:09 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/499272392791687170 - X-Cache: - - HIT - X-Connection-Hash: - - 01cd4255dea35a13a3800c2af95412ae - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '1959' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mirfield,%20England&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Asturias&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199201971376467968/T4PaRcM1_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '137633' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:22 GMT - Last-Modified: - - Tue, 26 Nov 2019 05:41:24 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1199201971376467968 - X-Cache: - - HIT - X-Connection-Hash: - - 45e028092cf83dd8b83f30b1d911c4cb - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALABoABQArABlhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAEAAgMBAQAAAAAAAAAAAAAABAYBBQcDAv/EABQBAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhADEAAAAeygAAAAabc80LpM+NUTItCuR65p1wN3MhTRyfp3IjsNY0Uo0tuhexSb/UdudBAxkYyAGMgAAAAAB//EACMQAAICAgEDBQEAAAAAAAAAAAQFAwYBAhARIyQTFCIlQFD/2gAIAQEAAQUC/KzYwr9Vx8R+hc+o0CtiMxiIbjwmnOxApinMAsYREZYvF9mz7UCHA4Vll9FLUM7guhO/ZGvm3Nt0NVgxYgD4c+bcZpNIonffNsf11lrHzCUwbtHFfxqIp4KniGhRlwbWVk10OPFPGLtF1GzOoKJhUoqeUGGvUGbNHvPT+P8A/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP/aAAgBAwEBPwFP/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP/aAAgBAgEBPwFP/8QAMhAAAQMDAgMFBQkAAAAAAAAAAQIDEQAEEiExBRNBEBQjQoEyQGGhsURQcZGyweHw8f/aAAgBAQAGPwL3ULuEu4HzJRIrmMtvYdFKRANF5SFqSnfATSnLYqISYMiK7mpq4Lx2CW5mg1cofQo7eHvQcuGLptB2JapFw1OCxIkR229sndxc/l/tMsDyICauI9pYwHrpV1w506kfMVePdGG0sj6mra33SzE/qq/ZQjLAFIjWVUyyPIgDttbXdLUT9aU64YSkSa4badFvcxQ+CRNWnEPIuMvTQ/Knbs/aX1uemwriF0i4dYicVo+P8CrRtw+I7r+JOvaXXlYoHWrm+uSWwoK5eQ/vSrewtsuRzAp5yNCBrFZJUcUM4NGPaJOtcxIlbKsv2pFuT4vIxQkDUmKe7w7y3CuSCOlKdShSLa2bhoERqev3X//EACcQAAIBAwIGAQUAAAAAAAAAAAERACExUWFxEIGRobHB8CBAQVDR/9oACAEBAAE/IftWfUqSODFhFZbaO8Gqx1oDKlx+ewKcuOYdTkHEDEl1zyqFv6i6fqZRuYtuIh6tXKIdwltzpwhSDQO+f9QGbFscfInpBF4LuplqdeSr1HaGV2EA01Bg2kE+w44cF9/qNY4XAmc/DMvASghgwPgYRrjYbvAIXetPDqQB0gV9VyLx9uI/9+j8QiVwjAVIChuBymLCaUrKjrmGA0TkI9cCCFUavI6Q4lWYaE+phhrGtkBRUr+YQa+tBVRsD9CYEQwIhjghiIYEQ/Q//9oADAMBAAIAAwAAABDzzzzzighTyShDjzyyyzzzzzzz/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP/aAAgBAwEBPxBP/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP/aAAgBAgEBPxBP/8QAJBABAQACAQMEAgMAAAAAAAAAAREAITFBYYEQUXGhkfFAUPD/2gAIAQEAAT8Q/inyitJ8IOlmtYtV+R3iNXwJ3xxVCj4qg2AbmRyp0mBp6Im8ACKFvZzHR3wTeE4cMI0VJu2fOBAxRC2DFrsxwVdxutIKuLPWq56eiA/6TAEkZ3Efu48GM3afTwnxhFiNVzN7F3hiDjlFl4d9g5rbAXobC/MPnFvegCGg3WHyOaBdLoiP3fR4wamtDfFf8A8YChtdwK/L265IJukbo2PZQYXUTiqjrmo74NuGUSv8Tb5yQ8QVKsjYLI8RwSlQ5opeeCq4cekR6WWywACqvQw1ZhYgJmmHXjHfUiOroHvrroMHIFfuOk6ACy7xQdVstb9mA0yIgU0GBRX2w1GmPKMC2XQx9sU0QnwFEHQnu+qCRBzTPqz9dgDQHjEEjvFuQ/Jn67AOAPg/of/ZICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:22 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Asturias&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:22 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:22 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1231795726017007617/afTEUnwC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '54676' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:22 GMT - Last-Modified: - - Mon, 24 Feb 2020 04:17:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1231795726017007617 - X-Cache: - - HIT - X-Connection-Hash: - - 25e82b965f76e5177c9f64969cd3f216 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:22 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234894179299360768.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="d459b8927d1581ebe2c0ebcdc68f9003", - oauth_signature="6aBx2M7hasJjjtLDHjRTGCq9RlM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257042", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2557' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:22 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:22 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325704292436268; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:22 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_nyR+J515gFu9cVeuf953Hg=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:22 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - f5c554fd7e528fd106baaf29bbcab13e - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '882' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '123' - X-Transaction: - - '0092e8ca002a475f' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 17:31:30 +0000 2020","id":1234894179299360768,"id_str":"1234894179299360768","text":"@SamPlayItAgain - @UrBetsyJean @JenniferJJacobs It''s really weird, as she''s usually a good - reporter, so maybe she didn''t see the implication","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SamPlayItAgain","name":"Rick''s - Cafe","id":802137370598457344,"id_str":"802137370598457344","indices":[0,15]},{"screen_name":"UrBetsyJean","name":"Look, - Fat - Austere Scholar\ud83d\udc4c","id":1018869130106155009,"id_str":"1018869130106155009","indices":[16,28]},{"screen_name":"JenniferJJacobs","name":"Jennifer - Jacobs","id":15433452,"id_str":"15433452","indices":[29,45]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":1234891874441322498,"in_reply_to_status_id_str":"1234891874441322498","in_reply_to_user_id":802137370598457344,"in_reply_to_user_id_str":"802137370598457344","in_reply_to_screen_name":"SamPlayItAgain","user":{"id":962422577472987142,"id_str":"962422577472987142","name":"Mike","screen_name":"CBerthelot227","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":210,"friends_count":635,"listed_count":0,"created_at":"Sat - Feb 10 20:26:38 +0000 2018","favourites_count":21711,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44621,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214268828370255874\/P1uX7nYz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214268828370255874\/P1uX7nYz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/962422577472987142\/1578339355","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1214268828370255874/P1uX7nYz_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '472938' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:23 GMT - Last-Modified: - - Mon, 06 Jan 2020 19:31:43 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1214268828370255874 - X-Cache: - - HIT - X-Connection-Hash: - - 7cc6a1d2dc29f56981b03c458d271abf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '6177' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:23 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234891874441322498.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="52009e78539d0c1991c5533a3b9bb63d", - oauth_signature="mhzPj0l6mMK4C%2FOXnFwbtxbKVm8%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257043", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2827' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:23 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:23 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325704383286324; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:23 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_01PjZrjhVDNc6B7y2l3MCw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:23 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 41d799e12e23149150ad74653dd248e0 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '881' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '123' - X-Transaction: - - 00e73c610003b407 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 17:22:20 +0000 2020","id":1234891874441322498,"id_str":"1234891874441322498","text":"@CBerthelot227 - @UrBetsyJean Is this @JenniferJJacobs a Russian useful idiot. All I''ve ever - seen her post is disinformation.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBerthelot227","name":"Mike","id":962422577472987142,"id_str":"962422577472987142","indices":[0,14]},{"screen_name":"UrBetsyJean","name":"Look, - Fat - Austere Scholar\ud83d\udc4c","id":1018869130106155009,"id_str":"1018869130106155009","indices":[15,27]},{"screen_name":"JenniferJJacobs","name":"Jennifer - Jacobs","id":15433452,"id_str":"15433452","indices":[36,52]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234889789855485952,"in_reply_to_status_id_str":"1234889789855485952","in_reply_to_user_id":962422577472987142,"in_reply_to_user_id_str":"962422577472987142","in_reply_to_screen_name":"CBerthelot227","user":{"id":802137370598457344,"id_str":"802137370598457344","name":"Rick''s - Cafe","screen_name":"SamPlayItAgain","location":"","description":"\"Its Still - the same old story, a fight for love and glory\"\nFather, Grandfather, Husband - (47 years). Conservative, MAGA.\nStudent of history, politics, culture","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":669,"friends_count":780,"listed_count":4,"created_at":"Fri - Nov 25 13:10:26 +0000 2016","favourites_count":3057,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17825,"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\/1231795726017007617\/afTEUnwC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231795726017007617\/afTEUnwC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/802137370598457344\/1572923708","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1231795726017007617/afTEUnwC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '54678' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:24 GMT - Last-Modified: - - Mon, 24 Feb 2020 04:17:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1231795726017007617 - X-Cache: - - MISS - X-Connection-Hash: - - 25e82b965f76e5177c9f64969cd3f216 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:24 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234889789855485952.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b08a458779efc894037b1159433d1f7e", - oauth_signature="5%2FwCcoZvsECU6QuhN2AOqBclLdY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257044", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '5272' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:24 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:24 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325704468072067; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:24 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_tik2kUouXarNL12ZEc2bAw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:24 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 9d72663fd30bcd241d6ea01f75946aa5 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '880' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '135' - X-Transaction: - - 00d7341d00e7172c - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 17:14:03 +0000 2020","id":1234889789855485952,"id_str":"1234889789855485952","text":"What - Jennifer Jacobs leaves out (leaving the implication that Pence was the one - who exposed the student)? That stud\u2026 https:\/\/t.co\/iq1uujJMlO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iq1uujJMlO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234889789855485952","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":962422577472987142,"id_str":"962422577472987142","name":"Mike","screen_name":"CBerthelot227","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":210,"friends_count":635,"listed_count":0,"created_at":"Sat - Feb 10 20:26:38 +0000 2018","favourites_count":21711,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44621,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214268828370255874\/P1uX7nYz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214268828370255874\/P1uX7nYz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/962422577472987142\/1578339355","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234822447947558915,"quoted_status_id_str":"1234822447947558915","quoted_status":{"created_at":"Tue - Mar 03 12:46:28 +0000 2020","id":1234822447947558915,"id_str":"1234822447947558915","text":"A - student whose classmates met with and touched VP Pence is now quarantined.\n\nOn - Friday, cadets at Sarasota Militar\u2026 https:\/\/t.co\/Jt1ABNxLbl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Jt1ABNxLbl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234822447947558915","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15433452,"id_str":"15433452","name":"Jennifer - Jacobs","screen_name":"JenniferJJacobs","location":"Washington, DC","description":"Sr. - White House reporter for Bloomberg News \/ @business. Reporting what I know, - not what I think. jjacobs68@bloomberg.net \ud83d\udc95Iowa","url":"https:\/\/t.co\/ZoK9ipPasX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZoK9ipPasX","expanded_url":"http:\/\/www.bloomberg.com\/politics\/","display_url":"bloomberg.com\/politics\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":173662,"friends_count":35901,"listed_count":3752,"created_at":"Mon - Jul 14 22:44:34 +0000 2008","favourites_count":1682,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":45711,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/739446068589563904\/nEs68qdk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/739446068589563904\/nEs68qdk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15433452\/1468026333","profile_link_color":"088253","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3387,"favorite_count":5700,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1214268828370255874/P1uX7nYz_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '472939' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:24 GMT - Last-Modified: - - Mon, 06 Jan 2020 19:31:43 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1214268828370255874 - X-Cache: - - MISS - X-Connection-Hash: - - 7cc6a1d2dc29f56981b03c458d271abf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '6177' - body: - encoding: ASCII-8BIT - string: !binary |- - iVBORw0KGgoAAAANSUhEUgAAAEkAAABJCAMAAABGrfvuAAADAFBMVEWCgoKDg4N8fHx6enp5eXl7e3t0dHRvb29xcXF2dnZycnKBgYF+fn5sbGxpaWmAgICSkpKOjo6GhoaEhISMjIyNjY2RkZGVlZWXl5eWlpaUlJSTk5OPj493d3eLi4uJiYmIiIiQkJCKioqYmJicnJyZmZmampqbm5udnZ1zc3N9fX11dXVwcHB4eHiFhYWHh4d/f3+enp6fn5+goKCioqKhoaGjo6OlpaVhYWGkpKSoqKirq6unp6evr6+tra2ysrKwsLCurq6xsbGsrKyqqqq0tLSmpqa2tra1tbWzs7OpqalbW1tGRka4uLi8vLy/v7/BwcFubm5TU1M5OTltbW1gYGBDQ0NlZWVJSUm3t7dCQkJHR0dXV1e5ubm6urq7u7tiYmJfX1/CwsLR0dHV1dXQ0NDKysrLy8u9vb3Dw8PY2NjMzMzT09PPz8/Ozs7IyMjJycnHx8fAwMDo6OjNzc3U1NTW1tbd3d3i4uLk5OTe3t7S0tLFxcXExMTGxsZdXV1RUVFLS0tBQUE/Pz9FRUVISEhKSkpra2va2trc3NzX19fh4eHj4+O+vr5kZGQ6OjoiIiIgICAfHx8jIyMnJycWFhYbGxspKSkXFxcPDw8aGhomJiYsLCw8PDxPT0/l5eXp6enm5ubn5+c3NzcNDQ0ODg4oKCguLi4wMDAvLy8xMTE2NjY9PT07OztVVVXb29vg4ODx8fHy8vL5+fnu7u739/dZWVkcHBwAAAAKCgorKys4ODhEREROTk4+Pj7t7e309PT19fXz8/Pv7+/s7OwZGRkLCwtMTExAQEBNTU1SUlJQUFBaWlpUVFT////+/v4dHR0kJCQ1NTVeXl5WVlZYWFj8/Pzf39/Z2dlqampoaGhjY2MhISFcXFxmZmY0NDQtLS0yMjJnZ2czMzMlJSUQEBAYGBgqKioSEhIMDAzr6+sRERHw8PAeHh4JCQkUFBQDAwMICAgHBwcFBQUBAQEEBAQGBgYCAgITExMVFRXq6ur9/f34+Pj29vb6+vr7+/uYowFsAAAUyklEQVRYhQ2Wd1Tbh73Ff0gIBEJ7DwRooAFogiSmMGJPCZAFSOwl9sbGDLGnkRPHcVJjsIEmBmOGW1fOC2DHJo2Yrs14BlSwjdO4dZ33mravw03axznfP++5557zPedzL8CAgWA4FFfKIXl4enqyuBIySx4k9+Ww3AEkH4YEiEw2mYyEuLHYdAKRzZVGMulCN5Q8/FTDItJoHjQahUS3x7PZAA4mEjI9SFwuy9NfLguIDGJKgiKDYs+oBEgBBoPBi7lcphDkAnHyAmHQaDydQaOiSUyZvzxA7i/lMIkotDsWaQ+BQAA8ViCkUWDuNAqVzSYzmUwChS0Wk1hZYXIU4IZBS7gSoT0IxOeDfVzQFCoK5UHAYdxxdBzVg8QmUykkqr8/l0jB0wEcxs2dwMGRyWQKkXgqRKHQOEVHR9pB0Ph+FA2Dkkr8YK4gFzsBIOJjmCQmm8QmAADWzk6AcccIGAw8oaW+pTVvOBHAC3F4Oo4s53iymczTI5HoaykPtjbTctSlgTghXiLxQ0JAx4b1XrNI5EEkk4lMNBaws4MBAABjsClootoYllVdVgxgsXQClUYhkqhU6qmMSCT0vkjmoVl+HpIFFhKLEUukLsdnZ2amb7/q9BJ6UCko6umT7EFILNIFYIrZaP8So7G2NqkNgGEYblQigYamUgkeNAKNknt7zswPTypKTFg54wJhiMW+tqntxZSZ16+/vCPCESlk953JL5/N5PDtkHYcNgcfq1aXlGRGJQJ2DDcc3QPPYKDx7nQUBUXpmt46EYRUlVecqaoROOE4Ysb2zJ3R0Qezo5Nv2vEEiijl6YvZjO2PxgAXGJdMYYQPJ+Xl5bW2ABiM8NQG5w4DQ0QOCoXWdntqF04NyyrKiiTLsF40tgTcPbYe3xm/urj47SoW5f7625TJrp7u2c4+QMim0hih0cr09OjsRACwE+Ld3N3dAXuhOWUqZVUff9bkhSFLs2Uk+gFPgyNJnMbMULOl487M9q0HIGrOldmuMV1yB2TMgmRQqUJaeqgyJkKZaQQgIgHDDoaB+fgo3nyUsqHQQM3HMIpnQHhYtAqam4Px4GjbNa4+mvb4rkvTKQ70tFez7TB/tmcU1MKjUyh2RGOEsa2kpaUVsCp8sDB7sJPz4etvJ88q+GR/gjNSoi7zU5W1Oa8bfEB0RbL50AW6ru9a/GBWA5p7HW+jBxvV0RjFMZ2IwoqTOIilyVnXYaBrz3DixHN25I1deTkb30cILap146EiypTBw9l964adVIjNojjSQW36rtefzx07b27vHoPxgXIq7OiIT8W5qOyvXv7kky+fWYB1dITYzluDgOqfbXeO8QKS8iskUDd5oF2qIHCnN0576LorwnkhIKljc5tzhzbNwSqCpwGCiK503R6UDqMjn30ycyljbe014JfeP1DDR+gcM0YWl3LB0sw2dYijl1TsG+DLsO6uGxxcNwUEEAN56GCz5PSdeDuY++zdGbFyGE4TB8eAKRv3X2zPWnPgW0B1ZXP5QMKxzbvnTeeGWUgRh5IkLjlYMis06GSsZynDCu/TiNxBfblmV1fFAcLBlXeMjnJzk1cG8I8RdhCc/vKrxdVkW98uUF3QuF+672KDbs50KxTHNlEIk8701jkTxbpdxa6+Y3HJAfDmnZgMa1J6nMaJbmdvQ0pp0jPpvuSTAxGEHP/R9mz85lacHqhuHNgvKAxCnBzkLNlOwEK36IisUChcAzro3bOZHXRru7ogqGl3Pd451uU49YBIBuWCMN7edjKYTevKt5ONfb4dv2btMPUA6pq8qvKacO2cmdexA5GrhPKovMy9HCJ5dU6xeZS648CS+bue7Ug+iRlGwQ+PI1R8kyM41QUQ8KA8EZ9EXr40lWFyMrWnAWElIarmStLecrKm3eAlF/OZMopEg1FTMiy5B4i+XB80w8eWvGufXaNOZzlSq1od5o4QED7fbMlVeNPEbrmOug2z07o+HlAmNZfk9ZdpNzq0hl6bHRJJkmAkxvJ6xlicNnd9Tm817S2fsFHpddW10aFB6VWqdavZpNU46+bat7QiT4ow2OgvYe6tLQGJ+RfyA2ubU3vXLYbVPScRAyUn+LLyJ8DdW2sPusaOkTIUCohoTigpMiaEczBYbwXCjLDxYD7Y3DgnZlTfCc8+tjVdfnIJUOYNFhSVlkKT+3Lh3T1wGDpQycXxW39UTFuXRseQsnBOJgoa1VwxHJVAt6dToDmOPjpvN8pp2wicvJ3wXZubR/AodRV7C4iNKeqP5uYdHLkee6x3tsMxHH9nOM/D1zAy2rPax3KHkDNl3mHz+4NhfbkICBov6jOfNhYVjeg9AXd0x2VY2+MQsrYaPycgKCS7LLpWvba8Hgft3EpegyKPrD0be1ve5tnRxU1poLKkusqRU15BSru0vIXQOUMgrnYEMZoKBi3fyeiJj4vbgTOH62sSJADXPyQxv8lPv9O9w4hfz7HennrRNbq0vAP4Ca3TaezgVrUsYU6Izu1K6dIvn6YSotFeGpo/Wh2DTFnL0fLAfHZUTf+5xmGASWWLIzJz0qw6HIefnPbh1adXJl8saUX+84OUXVeuNCZY7q+1db28ndKzsenoETl8YUHmlAMWRyU4Lm4i+uzxpIDawoG6r8sBfwmBIhAufm4W2rqFkI//+PTyyOvVXTgm9tyjfo44SEq28wjM8rjy5pORKasN4tc2/9WTBoEGhpZS9TNanSGVIImMGm5r7M8H5DJmHtrXA4DNXLv/Yu7n958+nepMM7jiZTXjzxMIaA5FJMhuFF3+4PKHr7ZS7SlRVf11E9RDjcLe+crkTnKPE0kWEKuKac1vBiS+0QUBXFVCLPLVhx/++tq1qx9MdsztOTCoker8VpnDoYbo5ll5cvX+dx+tHrvCPHzDsxqekzZmU106vtPv9RgIZD8WhcnGMUKB8Pqq8gB/uDk2OFLAmf34/tPrq8sGkwZLjAwdDimpCEKFc0NK+L//9dVP1u2B1EOAEpskQR1vguhjH/f2bhyyOLQ4KFHsbcYDSYWNFcGxcoZbeFZZk+nT75+90O9umo6dRVgqV5g4Pt+SdaY1OPb+P7+7fSIA+fjsITyNYId2MxyU8UGn1eTlKRUTccENbW1lgKd6vzUkOCYxIlwW1uD+j5FXd9YM2p299aNep0hIwvnGmpaohvzgnWuXX9owdPCeDhxVp840W5z7Xt9eHdMgPfzkgVnBBXUFYYAWGZEgC6sNjokm+rbKr11f7ByLs9ly+sBCSJ685GHdYH1r7UA6xZDbniNguAiVAWEP3zcBJvjes+2MjY45d7+A9GwmN7MRBLjo8CSxsTam1cjhhhM6n44s6i1mjW0HpuJLqqqGJi7MX4hSp/uCGC7eEBqKGxHrEZJ3D6Tf6Ly8eCf+2pcunKCAIP/otmg9ECOxF4irivsHC0lkiUfO5NqmdSsXceAiFTuBGP4t55+f+zrLP0qwIRC4OLuTOaFkpIe6YvmDkY++f7V969MePl0qwTu7ohGTgFTpiyQVT9x8fsGPzOZAOnTLc+tHOYcu/kRDarAxfWjo+cVYFyniKogIhoNpBDSW4Z/I+PSvn3beejP9SS8ciyFwqQ5s16kMgCKPcYO0TYwPlPAZRDw/Z+9kb2tPa3NAahxwKlTYQn/zRTHg05OSzltDeAkZGNfDDcHxy+1ereVVz8z1K+1UAZpJwFvTOgAPppAHqb5xrjETKyTinEVHPWNjuzlmxMGRl9CdGFNfXZ0fy6S/vBTB0B6mgtzcHEQxJe1nexQaF6RQZH3RnsoHgbDXr8/8EaBRoXDpfN1CNg5HRXOd1/depKSta48R5mVh27m2rLy8WmVCa1J8cnBJLcIBao9xF3H5z3J0BjCKy+YSdDuXNnjg3StxzlMAl6mlF54LOu7s3rLk8E+64k2IpeU4XeqhSeckDAmMDQyPiA4LdlLwilbOePOgznaO9uxPnul7yH5B/hQySQQXeYd6reNLqwBfN3B9Xs63/7x8ffpFZ9qeK8U4bOruWdelInJ15FCJ9HR3e2quLHbEB1yoUx0iclCq9POyvT84ylWt+SyimE2mxb4tPaX8IEB3KwqOv/pscrGrc+tEZzrASgsTLUsZ8es6Rw1BLqMwhNgzxQcplj1z/fyNsFRZTX7Zr0qyJCwxKXI48nSxojj978ebhk6pIq0pmvvf24vt1mUzFoUTgPnE1iEjPL5bfwItqrsxEAJyDhm/cbxhyLW4DZYv1JYPFLU+qQ2LkGF67GMonmK/mOKh+pqiC9XZQNG8/7P7U1MP4pMFpyBOT0zIarzRUO84eeTmXvr121/8VB914UabaW/OurcZWdp2rulC/bl/5QX4UkLpoUN5ynBJ2/w5cVVFZXEEUNEMe7bdM3p7DepOoVJiBsYn7t2sGKi2c4tlFj95/HDiF3dLB8TDQsNWz542aeD5k8KyJ79R+4qzajsEHHhgErdkoLxN3ZBf1ALURB1b9xSGdQQEJ5aHFs1P3HxbV5O3X59fJU38qTJ/vvHdkNw7YoDJt2yZNKGD2YLD8IfZkpBK1LVdzXf8LJa6KKk2JL+xOAxQUnVwZxDPmQ9DBSSUFQxcvLjwdr+moXhoRRr2U8PQxMJ4E9ILb3w/nAfT9h3zWIeGUYE/s9LXtHXIS/ORBra0REWKKxrVAEB3EfGx7kgGGkWVRKhrihsW6h7vF79bGB5qC7x79+G9cxf2YUgWuUgd0Ez0wqO5dieKPll0dGa7B8FRz/AMGG6Lop8pb4g6BhwVzjwnsL2ATiF7qhJLKvcv9F88Ix0cGmwzFo+vrJwPyG/ug7Hl8uzs2rIzygg/f6QLNyushWqhsYL9qSS/sNqYoNaSKo4JWEsZU+RqeDxXED4yITGvXklVlUY3P/7x3b2F/bePvnrOSf8lDEIgcwSZz7PD8oqKyoJja2NCids6Wlh1gYogU8Zk1aYr8TkmICXtlNu5Zm8+iJxlTBwOcqYW3buxf+Ptv/9zt+DrHx9dUBlXakE4Oj5ZkT3RaqxVqnBBwVEJhi6FR2hJsUoenKQeVgY47/TFAVPLI2NHFqgLjC825iUplbU3Li6sVJQ3FP+0kn/+0UpRdODzi25CPLa7Oy54YPzr963CyOzAUO3ounuQWp1e29ZmPCPl7Q6LNoFL1pGZuT5ZQDhHbmypbmt+e3eipnKwaUBZ+qgif+VxYfaZgp8ofJbbqtXaaYILYv0EvsFiwsboKpKdqcpuyUsIIJ9s1BTz5MD1Hf2oxScqOjQrKjuvqnLw/MpQuHFofLC25dzbwXc/TvgSq/1yYQH41Y742Z6l0bOdHio/Ie3O7etgN1VkSKCcg83RRldS/YqA2/qxz3uOwyKisjOjs2vVrRXnxxve7o/fLK+qbqq7999DgCBsLE4g4W6l6dvneuc2sb6+HtCNkdf3D0R4Kk7Ah28eBoQIcQktwIvp+C9/247OUydEhEZkJQ4bixeymcqHP70vLiprnn+3L/BXWXZAuPD1V8u7Rwg7FB4rTO2dvN55NZ6PhYERc6t6k8Layy1JBKa+n376zVQcKeJMoCosPTE7WsmmsUsuvrtnLDGqCiJCQ8IoPckghkdHr7cL1Z/Kd3A66oSndCV/NO2KdFhfvfX61gc//+yWpNYITP/+03/8+XcgKy00OOhMelZEMJfdVnHu3a9+WZhVES5H+6VznD7XC9yEKI40QOoh8nLsnD2we92bsz3dnrHY+/E1k7NX5xueMkkNXP/sh5/9NaeUBgkKC5AGRkcHiYMSInYP5eryRBmZoEr3hb78oUcEw/jJWGjAB6qZfG32stfvme9cz7A/wOgt6iAJHpOdPdwKfPjz//vLFzF1pVGcoFgOHceKDQ0sCL2+gSSy3YQypYrlqt/+3dqBs70dBunQZ969dCcHrrG3jW1OfvbKQeDRY4i0c7x1m5gngwO/+69v/v6mqvRiU+EZKYsidGUPFhpdH2z60Eg0isTD3csBZB5JttkO+w51mxsZl/Q6BweNy0nv3IvPHswm9/7jJax7Y2qWg5/bAD774Q9fOM0XPD93YT6KTRcG+hU8eSjqNJ2ImGKqyOtkjqjETlp1x6at3u7Rma5eDUgEsR0ep228+mas86Tn+iqwrlg18C3Ju8APf/rz32N/qiiev7HQkI5m3azaf/Qr45LFZBOysVCDljPsCe69tdo1/WrxztmlO7s+YDDIMOfYtXH99xmLtpk3XfAew4eT2l2LAfjLX/46AsIWN+aX1tcPGZUrFW2PnzRqOzetVtuxdU351RO/OO2bkZGPZs5u9HT2LiOcha5zlr7OjZe3H8yYvn+2lLqUfKVjZ29zD/j7376YTvVi5VW2VtaXNSSWvY26++hmkHX17KvPp85GDD7+iTineNF16U6HXt/RHZ8R14d3zTV4r69NT9/qNX35YMtx03RrN84Sd+r05/85yixLzDzf9HDl7dd1j39MWLj7uFaou/Ty263sRw0T77nrR7dmr3dbe3tyllPOGg7dXB6sggDD0tS1sY5PR/SmTs3T5J3czS3gT1+MhFRUlzXW3fv3v39T2vrVj6Xlj35RJFPSUrFhNeVJVf3qE0vK2Yz45WTD4dhoxq63g8/Smhca3repEy3f6oI6bIi7d3bGlm3AFz8j9Bf2NzVNNEw83qfkPf/qccW/J2rEEXnl45lUlV9ihXhn9wTsbllebjeP3ure8j5xhmOlzANNl4GlcXBy96OHIEyLHz89Av4m2K+sH3z/7l/96vPPQyqaVx4t3HzfSA5p6V+Zzyz0VA3a9W7CKe5BdCGYp4Me5/J5VCwuG6NN7eiAd69e0h7sik4Wv/nu0y4gZzCpuWD/7sTXE2XPH5dFFDXVFRbNj4vDW9qaJloL8OT/+PVYEPZsUkxEsJKlJPvVRiWJcMUMy85Ze3Sfdg/H4JF3nv76+5EuIKwwqX+wfvzG+aaF0v4qUtmFd9XZbXfp0tL9prrKBjen/xAWk09eeEVGxXIixWGe4dGx4UftonZD7u0lR6Rml8GCsDZ++yZlzQzUludXV1ReWHk7lD/xcIEVVNhUmVVyUyWOri4oyyvwOuqnTq8dPxjdigOpfDssvISG/WbFi+TpY8SypXsvY0R7cid1bEa/rvH6fxW019oV5wACAAAAAElFTkSuQmCCICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234723397109780483/Fb85iK1P_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:25 GMT - Last-Modified: - - Tue, 03 Mar 2020 06:10:52 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1234723397109780483 - X-Cache: - - MISS - X-Connection-Hash: - - e191895e14d53867ac94f74ff3ce5b62 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1158673423893237760/GzservoC_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:25 GMT - Last-Modified: - - Tue, 06 Aug 2019 09:35:26 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1158673423893237760 - X-Cache: - - MISS - X-Connection-Hash: - - 5145f8be0e7c8e88c7abcb83a16f7983 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '8669' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=London&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=3 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1221840472957759500/c1eE5_59_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '290941' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:26 GMT - Last-Modified: - - Mon, 27 Jan 2020 16:58:44 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1221840472957759500 - X-Cache: - - HIT - X-Connection-Hash: - - 3d6c08c4df45d6058256136a0ad6582f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:26 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234894594355142667.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2166381a4819709f624e50798b855e56", - oauth_signature="H%2F%2BW9bUkTDzdmGtfOv7QUB08emA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257046", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2830' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:26 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:26 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325704678437535; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:26 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_vYJofPv1CVMwjXPLdqBpIw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:26 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 2e01555762b9d46bd01eee36186e7bfc - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '879' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '124' - X-Transaction: - - 006770eb00d450c0 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 17:33:09 +0000 2020","id":1234894594355142667,"id_str":"1234894594355142667","text":"Los - casos de #coronavirus en Espa\u00f1a, actualizados a las 18h. de hoy, 3 de - marzo de 2020, son:\n\nAndaluc\u00eda 13\nAsturia\u2026 https:\/\/t.co\/wg9Av9bbja","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[13,25]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wg9Av9bbja","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234894594355142667","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,"user":{"id":2821179496,"id_str":"2821179496","name":"Salud - P\u00fablica","screen_name":"SaludPublicaEs","location":"Madrid","description":"Cuenta - oficial del Gobierno de Espa\u00f1a con informaci\u00f3n de inter\u00e9s para - la ciudadan\u00eda sobre cuestiones de Salud P\u00fablica.","url":"https:\/\/t.co\/gRPUhyE5yM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gRPUhyE5yM","expanded_url":"https:\/\/www.mscbs.gob.es\/","display_url":"mscbs.gob.es","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62078,"friends_count":6,"listed_count":384,"created_at":"Fri - Oct 10 09:00:48 +0000 2014","favourites_count":92,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":213,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1222919608484728832\/U5BLflpw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222919608484728832\/U5BLflpw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2821179496\/1580401731","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"es"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Madrid&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1222919608484728832/U5BLflpw_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '113968' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:27 GMT - Last-Modified: - - Thu, 30 Jan 2020 16:26:50 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1222919608484728832 - X-Cache: - - HIT - X-Connection-Hash: - - 25469f53279c0fa5ec5ee9df7031ca9e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '8135' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:27 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Madrid&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:27 GMT -- request: - method: get - uri: http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - abs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Age: - - '25994746' - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:27 GMT - Etag: - - '"QcuRPIhOAYpzfGh0vMtQAQ=="' - Expires: - - Wed, 03 Mar 2021 17:37:27 GMT - Last-Modified: - - Sat, 22 Dec 2018 15:21:58 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - twitter-assets - X-Cache: - - HIT - X-Connection-Hash: - - 97b9e7d1341932a1fcad07625c3f5283 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '8' - X-Ton-Expected-Size: - - '504' - Content-Length: - - '504' - body: - encoding: ASCII-8BIT - string: !binary |- - iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAwFBMVEXM1t3K1dy5xc2xvca7xs+KmaVrfYtld4agrrhneYhoeoiksbufrbegrbe7xs66xs6Dk5+/ytKdqrWElKCDk6Byg5HG0NjEz9bH0dlqfIprfIuAkJ2ir7nJ09p1hpN0hZO9yNDH0tmbqbTBzNOzv8iqtsCotL6ntL7L1dy3w8yjsLqVpK+Onam8x9CRn6ttf43CzdWMm6dmeIeLmqauusSwvMVxgpCToa29ydFneIeRoKzK1Nttfo2yvseZp7KHl6OOgUPZAAAA80lEQVR4Ae3SA5oDQRgE0Aortm1zNub9T7Xm4O/+uMo7w8O/duNyezxuF3R5fX4+8vu80BII8lUoDA0RfhKFUizIT4JxqCT4RQIKSZokIUvRJAVZmiYZyLI0yUIWpEkQohwtcpDkaZGHpECLAkRFmpQgK9OkDFmFJhXIqjV+Ua9CoZHlJ9kGlJqtLF9lW01oaXe6vX6308aPMRiOxpPJeDQcQMd0Nuer+WwKlcXS4CfG3QKi1Zwm8xUEAYMWRkAZSbvT2qAtYw1bzQ0dbJqws6WjLWzs9nS038HqQMEBFscTBacjzDoUnWF2oegCsytFV7x6ADhgICRy9ELGAAAAAElFTkSuQmCC - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:27 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234892610621313026.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f93fc7cb911dec08ef1c510163503566", - oauth_signature="TWgASd5uox0OrmDIKK2S4K9PBJg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257047", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2990' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325704840932060; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:28 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_zjCMNgNnN7/msiEBCLviFw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:28 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 87d24235beed24bd4c330f3d30a5984a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '878' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '126' - X-Transaction: - - 0017a4f70096c942 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 17:25:16 +0000 2020","id":1234892610621313026,"id_str":"1234892610621313026","text":"@insatiablegen - @je_boi_69 @beachlife5555 @rsnblefacsimile @edokeefe @BernieSanders A socialist - democrat.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"insatiablegen","name":"InsatiableGenius","id":250490788,"id_str":"250490788","indices":[0,14]},{"screen_name":"je_boi_69","name":"je - boi","id":848600906090373120,"id_str":"848600906090373120","indices":[15,25]},{"screen_name":"beachlife5555","name":"Tracy - Morris","id":823172013007241216,"id_str":"823172013007241216","indices":[26,40]},{"screen_name":"rsnblefacsimile","name":"\ud83d\udde3 - PalateandPage","id":1059870905151569920,"id_str":"1059870905151569920","indices":[41,57]},{"screen_name":"edokeefe","name":"Ed - O''Keefe","id":16930125,"id_str":"16930125","indices":[58,67]},{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[68,82]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234887885796540416,"in_reply_to_status_id_str":"1234887885796540416","in_reply_to_user_id":250490788,"in_reply_to_user_id_str":"250490788","in_reply_to_screen_name":"insatiablegen","user":{"id":1057746523,"id_str":"1057746523","name":"Joggas","screen_name":"JorgEriks","location":"Sweden","description":"Just - an atheistic, middle-aged, average Joe. Nothing spectacular.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":137,"listed_count":2,"created_at":"Thu - Jan 03 13:07:05 +0000 2013","favourites_count":5296,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5021,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1132724216627900416\/F15fJ4hk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1132724216627900416\/F15fJ4hk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1057746523\/1570345806","profile_link_color":"19CF86","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Sweden&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1132724216627900416/F15fJ4hk_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '582132' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:28 GMT - Last-Modified: - - Sun, 26 May 2019 19:02:32 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1132724216627900416 - X-Cache: - - HIT - X-Connection-Hash: - - aa1b114ee693fb2b4d7f6ec1d3c4cd07 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Sweden&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234887885796540416.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ed87aef402dc4b422bf6c1b384a7febc", - oauth_signature="UrBkLD66E3c%2BQKVywWxTC3A0T8c%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257048", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2971' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325704942458434; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:29 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_TVACB0KqLVH2cbClMh2Alw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:29 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 56762c211f92022fa325289c0e3239ea - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '877' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '125' - X-Transaction: - - '0048521b00812c21' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 17:06:29 +0000 2020","id":1234887885796540416,"id_str":"1234887885796540416","text":"@je_boi_69 - @beachlife5555 @rsnblefacsimile @edokeefe @BernieSanders He''s a career political - who doesn''t get along w\u2026 https:\/\/t.co\/FrwJwf0ENx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"je_boi_69","name":"je - boi","id":848600906090373120,"id_str":"848600906090373120","indices":[0,10]},{"screen_name":"beachlife5555","name":"Tracy - Morris","id":823172013007241216,"id_str":"823172013007241216","indices":[11,25]},{"screen_name":"rsnblefacsimile","name":"\ud83d\udde3 - PalateandPage","id":1059870905151569920,"id_str":"1059870905151569920","indices":[26,42]},{"screen_name":"edokeefe","name":"Ed - O''Keefe","id":16930125,"id_str":"16930125","indices":[43,52]},{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[53,67]}],"urls":[{"url":"https:\/\/t.co\/FrwJwf0ENx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234887885796540416","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":1234883855401832450,"in_reply_to_status_id_str":"1234883855401832450","in_reply_to_user_id":848600906090373120,"in_reply_to_user_id_str":"848600906090373120","in_reply_to_screen_name":"je_boi_69","user":{"id":250490788,"id_str":"250490788","name":"InsatiableGenius","screen_name":"insatiablegen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":238,"listed_count":0,"created_at":"Fri - Feb 11 05:38:56 +0000 2011","favourites_count":179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:29 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234883855401832450.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b46f66d4d6a7d87e410fb381e1ec92a1", - oauth_signature="7D3iGjmXcvutm6QCIYB4MWKk2OA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257049", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2770' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:30 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:30 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325705017470694; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:30 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_1nt1YJymWQyQM90GNpiaRA=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:30 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 18b5956a380901f71779aa343b873327 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '876' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '125' - X-Transaction: - - '00845e5a005987a3' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 16:50:28 +0000 2020","id":1234883855401832450,"id_str":"1234883855401832450","text":"@beachlife5555 - @rsnblefacsimile @edokeefe @BernieSanders He has a job\n\nA pretty hard one - with a lot of responsibility","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"beachlife5555","name":"Tracy - Morris","id":823172013007241216,"id_str":"823172013007241216","indices":[0,14]},{"screen_name":"rsnblefacsimile","name":"\ud83d\udde3 - PalateandPage","id":1059870905151569920,"id_str":"1059870905151569920","indices":[15,31]},{"screen_name":"edokeefe","name":"Ed - O''Keefe","id":16930125,"id_str":"16930125","indices":[32,41]},{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[42,56]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234881715497205762,"in_reply_to_status_id_str":"1234881715497205762","in_reply_to_user_id":823172013007241216,"in_reply_to_user_id_str":"823172013007241216","in_reply_to_screen_name":"beachlife5555","user":{"id":848600906090373120,"id_str":"848600906090373120","name":"je - boi","screen_name":"je_boi_69","location":"","description":"This entire account - exists to get https:\/\/t.co\/DXFDzzBcC4 points for giveaways\n\nOh and Andrew - Yang is a great guy I guess","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/DXFDzzBcC4","expanded_url":"http:\/\/gleam.io","display_url":"gleam.io","indices":[34,57]}]}},"protected":false,"followers_count":7,"friends_count":69,"listed_count":0,"created_at":"Sun - Apr 02 18:19:57 +0000 2017","favourites_count":2615,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:30 GMT -- request: - method: get - uri: http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - abs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Age: - - '25994749' - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:30 GMT - Etag: - - '"QcuRPIhOAYpzfGh0vMtQAQ=="' - Expires: - - Wed, 03 Mar 2021 17:37:30 GMT - Last-Modified: - - Sat, 22 Dec 2018 15:21:58 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - twitter-assets - X-Cache: - - HIT - X-Connection-Hash: - - 97b9e7d1341932a1fcad07625c3f5283 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '8' - X-Ton-Expected-Size: - - '504' - Content-Length: - - '504' - body: - encoding: ASCII-8BIT - string: !binary |- - iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAwFBMVEXM1t3K1dy5xc2xvca7xs+KmaVrfYtld4agrrhneYhoeoiksbufrbegrbe7xs66xs6Dk5+/ytKdqrWElKCDk6Byg5HG0NjEz9bH0dlqfIprfIuAkJ2ir7nJ09p1hpN0hZO9yNDH0tmbqbTBzNOzv8iqtsCotL6ntL7L1dy3w8yjsLqVpK+Onam8x9CRn6ttf43CzdWMm6dmeIeLmqauusSwvMVxgpCToa29ydFneIeRoKzK1Nttfo2yvseZp7KHl6OOgUPZAAAA80lEQVR4Ae3SA5oDQRgE0Aortm1zNub9T7Xm4O/+uMo7w8O/duNyezxuF3R5fX4+8vu80BII8lUoDA0RfhKFUizIT4JxqCT4RQIKSZokIUvRJAVZmiYZyLI0yUIWpEkQohwtcpDkaZGHpECLAkRFmpQgK9OkDFmFJhXIqjV+Ua9CoZHlJ9kGlJqtLF9lW01oaXe6vX6308aPMRiOxpPJeDQcQMd0Nuer+WwKlcXS4CfG3QKi1Zwm8xUEAYMWRkAZSbvT2qAtYw1bzQ0dbJqws6WjLWzs9nS038HqQMEBFscTBacjzDoUnWF2oegCsytFV7x6ADhgICRy9ELGAAAAAElFTkSuQmCC - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:30 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234881715497205762.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="84190cc8a7125950b73a9989629d4b85", - oauth_signature="0RoBt9FBtPrCn6XQCsxrVLrACAE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257050", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2536' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:31 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:31 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325705103264434; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:31 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_7ILOYnt7nLt6ShnL3/zQDQ=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:31 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 032fc2e9e7a4bccd006c655aa4e35426 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '875' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '142' - X-Transaction: - - 00d2ec7e0088299d - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 16:41:58 +0000 2020","id":1234881715497205762,"id_str":"1234881715497205762","text":"@rsnblefacsimile - @edokeefe @BernieSanders He\u2019s never worked. Makes it hard to be a part - of the \u201cworking class\u201d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rsnblefacsimile","name":"\ud83d\udde3 - PalateandPage","id":1059870905151569920,"id_str":"1059870905151569920","indices":[0,16]},{"screen_name":"edokeefe","name":"Ed - O''Keefe","id":16930125,"id_str":"16930125","indices":[17,26]},{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[27,41]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234867788440715264,"in_reply_to_status_id_str":"1234867788440715264","in_reply_to_user_id":1059870905151569920,"in_reply_to_user_id_str":"1059870905151569920","in_reply_to_screen_name":"rsnblefacsimile","user":{"id":823172013007241216,"id_str":"823172013007241216","name":"Tracy - Morris","screen_name":"beachlife5555","location":"","description":"Woman with - a viewpoint carved by education, engineering, motherhood, and fitness - with - loads of fun!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":189,"listed_count":0,"created_at":"Sun - Jan 22 14:14:36 +0000 2017","favourites_count":464,"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":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:31 GMT -- request: - method: get - uri: http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - abs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Age: - - '25994750' - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:31 GMT - Etag: - - '"QcuRPIhOAYpzfGh0vMtQAQ=="' - Expires: - - Wed, 03 Mar 2021 17:37:31 GMT - Last-Modified: - - Sat, 22 Dec 2018 15:21:58 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - twitter-assets - X-Cache: - - HIT - X-Connection-Hash: - - 97b9e7d1341932a1fcad07625c3f5283 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '8' - X-Ton-Expected-Size: - - '504' - Content-Length: - - '504' - body: - encoding: ASCII-8BIT - string: !binary |- - iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAwFBMVEXM1t3K1dy5xc2xvca7xs+KmaVrfYtld4agrrhneYhoeoiksbufrbegrbe7xs66xs6Dk5+/ytKdqrWElKCDk6Byg5HG0NjEz9bH0dlqfIprfIuAkJ2ir7nJ09p1hpN0hZO9yNDH0tmbqbTBzNOzv8iqtsCotL6ntL7L1dy3w8yjsLqVpK+Onam8x9CRn6ttf43CzdWMm6dmeIeLmqauusSwvMVxgpCToa29ydFneIeRoKzK1Nttfo2yvseZp7KHl6OOgUPZAAAA80lEQVR4Ae3SA5oDQRgE0Aortm1zNub9T7Xm4O/+uMo7w8O/duNyezxuF3R5fX4+8vu80BII8lUoDA0RfhKFUizIT4JxqCT4RQIKSZokIUvRJAVZmiYZyLI0yUIWpEkQohwtcpDkaZGHpECLAkRFmpQgK9OkDFmFJhXIqjV+Ua9CoZHlJ9kGlJqtLF9lW01oaXe6vX6308aPMRiOxpPJeDQcQMd0Nuer+WwKlcXS4CfG3QKi1Zwm8xUEAYMWRkAZSbvT2qAtYw1bzQ0dbJqws6WjLWzs9nS038HqQMEBFscTBacjzDoUnWF2oegCsytFV7x6ADhgICRy9ELGAAAAAElFTkSuQmCC - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:31 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234867788440715264.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b62f0c443105475fcab596dbf5600887", - oauth_signature="15hEXIWATvG2hR35XX6OqiM9fms%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257051", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '3813' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:31 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:31 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325705190648877; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:31 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_9abG4S7sOHn0mo5j8AOOzA=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:31 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 9723425fd6ae83493fb5a4edd282415b - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '874' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '125' - X-Transaction: - - 0004cf6a00e0d52d - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 15:46:38 +0000 2020","id":1234867788440715264,"id_str":"1234867788440715264","text":"@edokeefe - @BernieSanders He has three homes, just like most of the working class...oh - wait https:\/\/t.co\/K0b2Eb86tr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"edokeefe","name":"Ed - O''Keefe","id":16930125,"id_str":"16930125","indices":[0,9]},{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[10,24]}],"urls":[],"media":[{"id":1234867782761635841,"id_str":"1234867782761635841","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESMhtLAU4AEKAGo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESMhtLAU4AEKAGo.jpg","url":"https:\/\/t.co\/K0b2Eb86tr","display_url":"pic.twitter.com\/K0b2Eb86tr","expanded_url":"https:\/\/twitter.com\/rsnblefacsimile\/status\/1234867788440715264\/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":1234867782761635841,"id_str":"1234867782761635841","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ESMhtLAU4AEKAGo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ESMhtLAU4AEKAGo.jpg","url":"https:\/\/t.co\/K0b2Eb86tr","display_url":"pic.twitter.com\/K0b2Eb86tr","expanded_url":"https:\/\/twitter.com\/rsnblefacsimile\/status\/1234867788440715264\/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\/ESMhtLAU4AEKAGo.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234864162267856896,"in_reply_to_status_id_str":"1234864162267856896","in_reply_to_user_id":16930125,"in_reply_to_user_id_str":"16930125","in_reply_to_screen_name":"edokeefe","user":{"id":1059870905151569920,"id_str":"1059870905151569920","name":"\ud83d\udde3 - PalateandPage","screen_name":"rsnblefacsimile","location":"United States","description":"Recovering - writer\/journalist\/media grunt","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":154,"friends_count":960,"listed_count":0,"created_at":"Tue - Nov 06 18:11:30 +0000 2018","favourites_count":24342,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4096,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213112933829369857\/hjyUXjc1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213112933829369857\/hjyUXjc1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=United%20States&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1213112933829369857/hjyUXjc1_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '63081' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:32 GMT - Last-Modified: - - Fri, 03 Jan 2020 14:58:36 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1213112933829369857 - X-Cache: - - HIT - X-Connection-Hash: - - 612f0c3184a706e5365006d22695ba93 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=United%20States&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:32 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234864162267856896.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="e9bf269e3ecfd729d1ac5aff6d82900d", - oauth_signature="7zUdRdT64cwwaJ0G0d%2FV7vQztWY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257052", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2707' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:32 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:32 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325705290157741; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:32 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_uH/7GKI1sEzpPpTGpmUEdg=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:32 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6fbd72850c466fa112e22d5470dd2e95 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '873' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '125' - X-Transaction: - - 0005f60600224c0f - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 15:32:13 +0000 2020","id":1234864162267856896,"id_str":"1234864162267856896","text":".@BernieSanders - drives himself and wife, Jane, to their polling location ... in a Subaru Forester. - That is peak Vermont. #SuperTuesday","truncated":false,"entities":{"hashtags":[{"text":"SuperTuesday","indices":[121,134]}],"symbols":[],"user_mentions":[{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[1,15]}],"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,"user":{"id":16930125,"id_str":"16930125","name":"Ed - O''Keefe","screen_name":"edokeefe","location":"Washington, D.C.","description":"@CBSNews - political correspondent covering #Campaign2020. ed.okeefe@cbsnews.com. Proudly - #Irish and #Latino. @AmericanU alum. @NAHJ member.","url":"https:\/\/t.co\/gbwmpTItek","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gbwmpTItek","expanded_url":"https:\/\/www.cbsnews.com\/team\/ed-okeefe\/","display_url":"cbsnews.com\/team\/ed-okeefe\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":87596,"friends_count":20144,"listed_count":2787,"created_at":"Thu - Oct 23 16:47:50 +0000 2008","favourites_count":12761,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":54191,"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\/1227468841531342849\/1wmbrorx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227468841531342849\/1wmbrorx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16930125\/1580322928","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":388,"favorite_count":3018,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20D.C.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1227468841531342849/1wmbrorx_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '134489' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:33 GMT - Last-Modified: - - Wed, 12 Feb 2020 05:43:51 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1227468841531342849 - X-Cache: - - HIT - X-Connection-Hash: - - 8d2e4257ae44d3bfca417a45bc75d407 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20D.C.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Atlanta,%20GA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1071761767611670533/vNTh69MD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '99960' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:33 GMT - Last-Modified: - - Sun, 09 Dec 2018 13:39:32 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1071761767611670533 - X-Cache: - - HIT - X-Connection-Hash: - - 62a9f2288ab7b01e50fe5bc74c631f04 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Atlanta,%20GA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1123611453091667971/-lGFJeEG_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '99667' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:34 GMT - Last-Modified: - - Wed, 01 May 2019 15:31:40 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1123611453091667971 - X-Cache: - - HIT - X-Connection-Hash: - - 399f2dd19b611d2732cb3d2e323985e3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20New%20York&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1670533112/logo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:34 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1670533112 - X-Cache: - - MISS - X-Connection-Hash: - - 191b1e3e7981bf5c16e79991919e44dd - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20New%20York&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hong%20Kong&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1144438251567996928/aDsHBle9_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '260' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:34 GMT - Last-Modified: - - Fri, 28 Jun 2019 02:49:56 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1144438251567996928 - X-Cache: - - HIT - X-Connection-Hash: - - 7b6908dde9c76c3367f7668770ac37c8 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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clRDsiZWThRPPnP3zE+gYAltGgBVdALhuvHqQAorRsctmNZ8o6FowigV6M2WqwtELuAQnYMioc00d+RNMPHzxEbFN6aCyFerhBUaiYwVIo8HlOK4r6gEV5SLUVHZ6wfGLQnQOZD534SU2IVfA88sG9nTxjp4IXWvDncCiHS7vzOCHChLGnOIEkK1FRN87wYAdjzvI74yud9TCTZY4ijLHKRI8M7zQESRvsj/AJ+6uAowohxtjvefvf5yS0+Mh6LSJQ8hxgFBgnGObRjQFxJh8HcpNyaRXEyDPgNyltSJVdx5LhsUemmQcrloFTDpjAWOcV0UWE5P43miIPCfTWaP0Ldf2BSHkPUwObzW06Uh8Iq7wAJGhr1aXz46ZjCcTLjxV4QIcCUwOLwTxKZXby/xCzaxQZB26F1QomUQM8WQuCjIBV6gLNVvB1FASGAgRaqWCKy+oDJINLN/z5K/ATT3hMafm+XONBhlvGAIOlU2x7nrAVSVCPXevPWGZe8gTk9dfvGAXbk299h68ZZV+2h+H4xTuokJegL/AK+AZJQgoTjfPrG7Ybl2eO/6xYyCSjNd44eAUKznXeMw4EURVkk4yJAFgE51tbivQIZy7dTBwBdNjf1vOaAYd7v138Kn3n2z9F5c4vk/7n7jxh+KGKPP9GmfafY+H//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hong%20Kong&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:35 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234111682001027072.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="833e85471b81c2fa72e2f60478a4bd28", - oauth_signature="pBAgFW8MaUAQCmao8IBRoiMVkeA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257055", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '7120' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:35 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:35 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325705559950547; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:35 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_tp/s7NcL88lb2KiYieYMDw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:35 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - '09e5fb6f798119ad04763b2a5073b5bd' - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '872' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '136' - X-Transaction: - - 003af54c00dd5c9e - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Sun Mar 01 13:42:08 +0000 2020","id":1234111682001027072,"id_str":"1234111682001027072","text":"American - Military News is reporting Commissar Lamb puppet regime hands out billions - to @hkpoliceforce to reward\ud83c\udded\ud83c\uddf0co\u2026 https:\/\/t.co\/jfmDRLKAmF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hkpoliceforce","name":"Hong - Kong Police Force","id":1057237461007396864,"id_str":"1057237461007396864","indices":[87,101]}],"urls":[{"url":"https:\/\/t.co\/jfmDRLKAmF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234111682001027072","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":1339488762,"id_str":"1339488762","name":"Solomon - Yue","screen_name":"SolomonYue","location":"Salem, Oregon, USA","description":"Vice - Chairman & CEO at Republicans Overseas, RNC Member since 2000, Co-founder - of RNC Republican National Conservative Caucus & Conservative Steering Committee","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133908,"friends_count":303,"listed_count":186,"created_at":"Tue - Apr 09 15:38:48 +0000 2013","favourites_count":41626,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19043,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3499264534\/b845149daf3df8b1a1e16291acabe4fb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3499264534\/b845149daf3df8b1a1e16291acabe4fb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1339488762\/1438029934","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233874599420579841,"quoted_status_id_str":"1233874599420579841","quoted_status":{"created_at":"Sat - Feb 29 22:00:03 +0000 2020","id":1233874599420579841,"id_str":"1233874599420579841","text":"Hong - Kong hands out billions to police force in wake of protests \nhttps:\/\/t.co\/hlcUfY7hv2 - https:\/\/t.co\/ceWCXHyNAu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hlcUfY7hv2","expanded_url":"https:\/\/americanmilitarynews.com\/2020\/02\/hong-kong-hands-out-billions-to-police-force-in-wake-of-protests\/","display_url":"americanmilitarynews.com\/2020\/02\/hong-k\u2026","indices":[66,89]}],"media":[{"id":1233874596882939909,"id_str":"1233874596882939909","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-aaJSWAAUbSpF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-aaJSWAAUbSpF.jpg","url":"https:\/\/t.co\/ceWCXHyNAu","display_url":"pic.twitter.com\/ceWCXHyNAu","expanded_url":"https:\/\/twitter.com\/AmerMilNews\/status\/1233874599420579841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":394,"resize":"fit"},"medium":{"w":1200,"h":695,"resize":"fit"},"large":{"w":1264,"h":732,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233874596882939909,"id_str":"1233874596882939909","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-aaJSWAAUbSpF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-aaJSWAAUbSpF.jpg","url":"https:\/\/t.co\/ceWCXHyNAu","display_url":"pic.twitter.com\/ceWCXHyNAu","expanded_url":"https:\/\/twitter.com\/AmerMilNews\/status\/1233874599420579841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":394,"resize":"fit"},"medium":{"w":1200,"h":695,"resize":"fit"},"large":{"w":1264,"h":732,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/americanmilitarynews.com\" rel=\"nofollow\"\u003eAmerican - Military 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,"user":{"id":978561402,"id_str":"978561402","name":"American - Military News","screen_name":"AmerMilNews","location":"USA","description":"News - about our military, global affairs, weapons and more. https:\/\/t.co\/405XQN1q8r\ninfo@AmericanMilitaryNews.com\nFavorites - \u2260 endorsements","url":"https:\/\/t.co\/405XQNj0ZZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/405XQNj0ZZ","expanded_url":"http:\/\/www.AmericanMilitaryNews.com","display_url":"AmericanMilitaryNews.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/405XQN1q8r","expanded_url":"http:\/\/www.AmericanMilitaryNews.com","display_url":"AmericanMilitaryNews.com","indices":[59,82]}]}},"protected":false,"followers_count":16743,"friends_count":6773,"listed_count":168,"created_at":"Thu - Nov 29 15:27:44 +0000 2012","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45622,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/744017470739079168\/IN0IqgOw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/744017470739079168\/IN0IqgOw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/978561402\/1491021654","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1775,"favorite_count":1747,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"retweet_count":2540,"favorite_count":3122,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Salem,%20Oregon,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/3499264534/b845149daf3df8b1a1e16291acabe4fb_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '556697' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:35 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/3499264534 - X-Cache: - - HIT - X-Connection-Hash: - - 9ba389896628372c0e97b0c6af046474 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '897' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAAwADADASIAAhEBAxEB/8QAGgAAAgMBAQAAAAAAAAAAAAAABAYCBQgHAf/EADAQAAEDAwIEBAMJAAAAAAAAAAECAwQABREGIRIxQVEHE2FxCCKBFBUjQoKRocHR/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAEEAgX/xAAdEQADAQADAAMAAAAAAAAAAAAAARECAwQxISJh/9oADAMBAAIRAxEAPwDvgAzQ06bHt0J6ZJWltllBWtajgACiD1pD8V7fIuOko7bPEphE9hclA/O1kgg+mSk024qaSrgq3X4gIkd1It2nJbzKtw7KX5PGO4ABq+0Z4y2bVV0atciG9bZr2zIcUFocPYK2wewI3qpanwFW/wA19KVpbISUkJPCTy64pL19EXIk2W4Wpj8ZuQEI8kbncKB27FNT5564ynfWec1M0nzTUk1BBJQCeZGTU+lUEhEDY0Bc2DJtkpkDJW0oAdzirDYDnStqbX2mtKpWm53FtMlIz9ma+d09vlHL64o9GnHTnjdybjl9kxGU8lEYJ9sJxufaru0vxZ14hNyvLZSVJwnlv0HoScD61QWy8xta3FuVaRFtjs6U400xLPGtQSkFTicbb5xw9+tc88QL8w1dhaLNLcdaguZemg4L76TzTjklJ2GOuT2qXPBpa+fDocnZw8fX1mswNs17Wb9J+PN5tyURr/HTc2EgAPpwh4D16K/j3rt2ldb2HWDK1WmXxPNpCnI7ieFxA7kdvUZFVQ5xerUEJJPIb1iO83B663yfPfWVOyJC3FEnPNR/ratn3eQI1qnSDsGY7i/2STWIUkkA9TvQMcVXl2x6dsS4S20yktPLbWEgqbU5kKVnocHbtScTtRBkqUgpW22seUG0FWTwbg5T6/7Q5FFG3Z+EkbEe1O3hRdfunxLtDinClt9aoy8HYhYwM/q4aSuRHtRNukLiXeFIQcKafQsH1ChQjJ//2SAgICAgICAgICAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Salem,%20Oregon,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:36 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:36 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234887900354969603/81Czo4cs_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:36 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:04:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1234887900354969603 - X-Cache: - - MISS - X-Connection-Hash: - - bef4e06a42e3b24a708f07124045ba14 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234892837067595776.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9ee3f12bc70cac8a323baa1b3f898897", - oauth_signature="wHhNerOWKYBt4Y8%2B3OLurC0kIVQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257056", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2771' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:37 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:37 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325705710996575; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:37 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_vJdQ8iiD5ec2lpHw/HoWew=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:37 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - d355ec037ea031a41792f5518c29848a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '871' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '127' - X-Transaction: - - 00bbbbed00b1f484 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Mar 03 17:26:10 +0000 2020","id":1234892837067595776,"id_str":"1234892837067595776","text":"Presidente - Hern\u00e1ndez y presidente del legislativo, Mauricio Oliva, muestran a la - poblaci\u00f3n una de las maneras para\u2026 https:\/\/t.co\/UbhHmZWOq2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UbhHmZWOq2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234892837067595776","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,"user":{"id":142793710,"id_str":"142793710","name":"Canal - 11","screen_name":"canal11hn","location":"Honduras","description":"Somos un - nuevo concepto en televisi\u00f3n para toda la familia, ofreci\u00e9ndote - una variada programaci\u00f3n. La mejor se\u00f1al a nivel nacional.","url":"https:\/\/t.co\/cbOJb56ffz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cbOJb56ffz","expanded_url":"http:\/\/www.canal11.hn","display_url":"canal11.hn","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":164768,"friends_count":132,"listed_count":281,"created_at":"Tue - May 11 19:48:07 +0000 2010","favourites_count":386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25639,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/abs.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\/1089943619392491521\/a8Cx98h0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1089943619392491521\/a8Cx98h0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142793710\/1582163010","profile_link_color":"ABB8C2","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"},"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,"possibly_sensitive_appealable":false,"lang":"es"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Honduras&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:37 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1089943619392491521/a8Cx98h0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '249265' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:37 GMT - Last-Modified: - - Mon, 28 Jan 2019 17:47:43 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1089943619392491521 - X-Cache: - - HIT - X-Connection-Hash: - - cb29adef581b8c4768c0871c2283395e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Honduras&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=-34.593481,-58.424877&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:37 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:37 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1001086853695639552/Hp0bp3v5_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:37 GMT - Last-Modified: - - Mon, 28 May 2018 13:02:39 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1001086853695639552 - X-Cache: - - MISS - X-Connection-Hash: - - f00ad272b90cfafde6471e68f6daab4c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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FTTNQiQtDWoHqpDY05XOj95ltpKCnpF4tFgid4SiasCcTQ9YLQCrYCogChFsnjHmnc/goZ2wWcqwl+o6l9QWRYu3OtS0y7mp+QEjYNjFN2aM2A+G+ZnptRkOj7jcdWrLDo+bmbIihkMic/RzBytAratB5inlO5j7TXa5O/aHbndhejXA4YDXdBgmxC9bT2luhmm95Y46StgbBIeWEXfAI3wBqfvP9isoIJIi2oB1cRjXlg5B1HkiErWRh1EsfI79YtxIjHp7PwxabCaKLUcLv1hWjIXI9GXSB6WE/tIrgK1eCDxkEx7jCbp0j0L0ZZEK2ga2d5Rf2lhOyRZEbg5HZLzWMsPJopflUGApmrgAdHD6xgGliq00sxX3zP4f/J879L8/+J8ufF+1PmT9n1Z83+Jo/T//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:37 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=-34.593481,-58.424877&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Michigan,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:38 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1216050295265988609/RnIn48dE_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '159645' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:38 GMT - Last-Modified: - - Sat, 11 Jan 2020 17:30:38 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1216050295265988609 - X-Cache: - - HIT - X-Connection-Hash: - - f70327fa083094980ba264c41330247e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Michigan,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:38 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1185809908006096896/V4Lh6vlm_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '460059' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:38 GMT - Last-Modified: - - Sun, 20 Oct 2019 06:46:08 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1185809908006096896 - X-Cache: - - HIT - X-Connection-Hash: - - 01e9278e886f6814123ce048eba8e395 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=N.%20W.%20Overton%20St.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:38 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1191088483051483137/AvLn1WOF_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '371943' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:38 GMT - Last-Modified: - - Sun, 03 Nov 2019 20:21:18 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1191088483051483137 - X-Cache: - - HIT - X-Connection-Hash: - - c9cd9dd74092b58f573d928969c69f29 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=N.%20W.%20Overton%20St.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:39 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:39 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=R%C3%ADo%20grande,%20Tierra%20del%20Fuego.%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:39 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:39 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/3395235409/6d854d9ed751eb3c7d266e9ddc52ee74_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:39 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/3395235409 - X-Cache: - - MISS - X-Connection-Hash: - - 8dce4244db600923a3db765b53bf6977 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '7190' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAIBAQEBAQIBAQECAgICAgQDAgICAgUEBAMEBgUGBgYFBgYGBwkIBgcJBwYGCAsICQoKCgoKBggLDAsKDAkKCgr/2wBDAQICAgICAgUDAwUKBwYHCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgr/wAARCAAwADADASIAAhEBAxEB/8QAGwAAAgIDAQAAAAAAAAAAAAAABgcICQMEBQr/xAA1EAABAwMEAQIEBAMJAAAAAAABAgMEBQYRAAcIIRIJMRMUIkEWIzJRChWBQmFicZGhwdHw/8QAGgEAAgIDAAAAAAAAAAAAAAAAAgUDBAEGB//EACgRAAEDBAAFAwUAAAAAAAAAAAECAwQAESFBBVGBsdESYZEUIqHB8P/aAAwDAQACEQMRAD8ARfCT+I/352ulwrT5S0RF90hUhHzFbSkR6nGbJ+rBRhD2B2AoA9Yz31dZxp5I8fOWdgp3R4+7kQrhpPxQzIdihSXYzxSF/CebUApteCDg+/2J15HVExnwv3z7eScalr6L3IXfDaLntt3aW0l+OU6JeNyx6RXKZIWtcKoMLC/oeaSoZwcEKH1IPYPWCwiz32cKUSn3yeh/VI1sIJwK9Ku8bsNvaG6i68UoFuTUqcIA8QWFjPfX31itKrNSdt7fejt/E+JRIngVHGfyUD/fUcb55w7C8kOPUFNkXQ3Uabdtyx6DUflXPF6E41LbE5haVYUHEJSR0DnzQodEa1NumtpeSvFCobEX3Bnz7Rh1qVR32W6k/EclxGZHx2PNxhxLiR4KbC0kpyUHIxpoiYgrHpVRKilTF7U+7mpNWLvm6whhSiTh1wA4/fv7aF6/bdYoTSZ9YkOQIz/Tb0rDSFnGfpUrAPXfWq/bx4k8NoW9tiWFb+1tJbhy7kcVUIzCzLccDTSy2la3FKKE5wf8RGldHtQbo3Puxfe5/GC+LnVTKtRV7WWTeUWpurFPnrfjj5aM8teUrW2heW/7uwOtSjjMllRFk4tz301uqCY0dxN875aqOFr+hVzcu54U2pbYCkSShgNO1KqgsjyDpUVLaS4kBIbAx7guI6OdFfHf0o+eHFzl5be61u8dbir34FriJ8OVTonhDmuoQvx8HHinySFKT2UjOOtXb25fLciIh9UN5ny9kvYB/wA8A9f10QRLviLISUApKc48hrmB4zIGAB+fNbqeHMKGT28VT9srxn59cUbZt2a3tBXLVl/iitP1GoVmRT32p79TixEFMcKUfF9KorrqCpOG8D6lDILQ3R2n5k8uOPUKn2tUK5VqkuuOyqpclrORo6JrCoTURDEpKHmQuQEN/m4QEEj3yVaYnrj8geTW3W0Ui69mrAoc6zrYpUd66KnOqRRIadqL7sJKW2eirxAaUlxHbalKKuiAer6E+8VHvTgyFfyGJQpsO4pcF2iqml98JjKDan3SpIJUtxS89dYA+2SSpEox/qb5vbmNG5H98UQjRA2WCeSuRx9th3t1pY8MeIPI3Ye/qRe157KX5DkUpx4tqg1enyA0tLLrTLqUrkJJPaFkE9KJHsNPjeG9vUHua2nabt1fe9MKTNhqZemTJ1MhPwHA4FpeZdakvYKgChQ8f0q1I6fcsUZzKaJz0QRoYrl3QmHfLyaWk95V2dAOKzCmxI+KjTBiIwAc+9DVLumJ8ZuO1Kb9yM+RGu01cCwnzM1IGOse2oh0bfgqfD3zCvI/fIGf6aNqZvO9LwfmQQQO1A/96S+hd6sh9B3W76mVvXlvlwV3M2isijSqnVqpbSjS6dFwXJUhp5p5CEg+5JawB9zjSf8AS62b3S47R9zqfuZaEqmmVfBm0R2SoBt2LKisvvFo5wcPZQoj+0hQ02HN2GvDzU6oe/6B9J/9/wA6wyd5IaYyllZWD7ZSPfVpt+SIymdE37eKBwxy6HNim7IvBSm1rU+CCfpShXf+uhWuX0y/lsPNIx+7gzpQVzkLGhxnGSwtv8zAV4gaX1a38ZaaUIbYJB9x7nWUMuUBkNjdf//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:39 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=R%C3%ADo%20grande,%20Tierra%20del%20Fuego.%20&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:39 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:39 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1234518572921237508&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="56b96e374f8ecb02769ff859f6b7da2e", - oauth_signature="ajKsELk0B22id5oWaivDWXDN3xg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257059", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '532205' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:40 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:40 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325706026880909; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_o+grK860E34J+M+d620+Ww=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 71c1282446594feb90fc42aab5102d81 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '172' - X-Rate-Limit-Reset: - - '1583257471' - X-Response-Time: - - '396' - X-Transaction: - - 0002073b003f54c7 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Mar 02 16:38:58 +0000 2020","id":1234518572732493825,"id_str":"1234518572732493825","text":"Coronavirus - prevention: How to make hand sanitizer at home - https:\/\/t.co\/JoaIZVNy2G\n\n\ud83d\udc99Can\u2019t - find any in the shops.\u2026 https:\/\/t.co\/Cbli8rOAIx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JoaIZVNy2G","expanded_url":"http:\/\/oregonlive.com","display_url":"oregonlive.com","indices":[61,84]},{"url":"https:\/\/t.co\/Cbli8rOAIx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518572732493825","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":230748240,"id_str":"230748240","name":"\ud83d\udc99Claire - B \ud83c\uddec\ud83c\udde7 Got Brexit Done \ud83d\udc5c","screen_name":"Marshmyst","location":"the - marshes in the valley.","description":"Conservative, we finally #GotBrexitDone","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2382,"friends_count":2942,"listed_count":83,"created_at":"Sun - Dec 26 15:12:30 +0000 2010","favourites_count":102256,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":150506,"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\/1224014423423168516\/yJeT8pys_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224014423423168516\/yJeT8pys_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230748240\/1582141006","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"},"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":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518572619173889,"id_str":"1234518572619173889","text":"Endlich: - H\u00e4sslicha Nationalr\u00f6t wird a vermummig vorgschriba. Oder het sich - d Magda min Coronavirus ahgsteckt? \ud83e\udd14 https:\/\/t.co\/UII242OmAh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234518566684233731,"id_str":"1234518566684233731","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkGHvWkAMDnkJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkGHvWkAMDnkJ.jpg","url":"https:\/\/t.co\/UII242OmAh","display_url":"pic.twitter.com\/UII242OmAh","expanded_url":"https:\/\/twitter.com\/weedygonzaless\/status\/1234518572619173889\/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":1234518566684233731,"id_str":"1234518566684233731","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkGHvWkAMDnkJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkGHvWkAMDnkJ.jpg","url":"https:\/\/t.co\/UII242OmAh","display_url":"pic.twitter.com\/UII242OmAh","expanded_url":"https:\/\/twitter.com\/weedygonzaless\/status\/1234518572619173889\/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"}}}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":830806231094812673,"id_str":"830806231094812673","name":"Weedy - Gonzales","screen_name":"weedygonzaless","location":"Schweiz","description":"kaufa - miar amel a 10er Pack Capri Sun. \/\/ sapere aude!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":127,"listed_count":0,"created_at":"Sun - Feb 12 15:50:15 +0000 2017","favourites_count":5817,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2244,"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\/1069533375323611136\/nPPI37tI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069533375323611136\/nPPI37tI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/830806231094812673\/1572769259","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"},"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":"de"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518572501741568,"id_str":"1234518572501741568","text":"RT - @laserqeusts: coronavirus (2020) https:\/\/t.co\/ynKpD9OuQQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"laserqeusts","name":"nat","id":759778941900992512,"id_str":"759778941900992512","indices":[3,15]}],"urls":[],"media":[{"id":1234089647841652736,"id_str":"1234089647841652736","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/ESBd_wiWsAAJ7_i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESBd_wiWsAAJ7_i.jpg","url":"https:\/\/t.co\/ynKpD9OuQQ","display_url":"pic.twitter.com\/ynKpD9OuQQ","expanded_url":"https:\/\/twitter.com\/laserqeusts\/status\/1234089656158953472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":400,"resize":"fit"},"medium":{"w":720,"h":400,"resize":"fit"},"small":{"w":680,"h":378,"resize":"fit"}},"source_status_id":1234089656158953472,"source_status_id_str":"1234089656158953472","source_user_id":759778941900992512,"source_user_id_str":"759778941900992512"}]},"extended_entities":{"media":[{"id":1234089647841652736,"id_str":"1234089647841652736","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/ESBd_wiWsAAJ7_i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESBd_wiWsAAJ7_i.jpg","url":"https:\/\/t.co\/ynKpD9OuQQ","display_url":"pic.twitter.com\/ynKpD9OuQQ","expanded_url":"https:\/\/twitter.com\/laserqeusts\/status\/1234089656158953472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":400,"resize":"fit"},"medium":{"w":720,"h":400,"resize":"fit"},"small":{"w":680,"h":378,"resize":"fit"}},"source_status_id":1234089656158953472,"source_status_id_str":"1234089656158953472","source_user_id":759778941900992512,"source_user_id_str":"759778941900992512"}]},"metadata":{"iso_language_code":"lt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":709449486171504640,"id_str":"709449486171504640","name":"amanda","screen_name":"amandapeir","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":119,"listed_count":0,"created_at":"Mon - Mar 14 18:41:53 +0000 2016","favourites_count":5160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":663,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221452681451053056\/HylnOQb4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221452681451053056\/HylnOQb4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/709449486171504640\/1579228583","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 12:14:36 +0000 2020","id":1234089656158953472,"id_str":"1234089656158953472","text":"coronavirus - (2020) https:\/\/t.co\/ynKpD9OuQQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234089647841652736,"id_str":"1234089647841652736","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/ESBd_wiWsAAJ7_i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESBd_wiWsAAJ7_i.jpg","url":"https:\/\/t.co\/ynKpD9OuQQ","display_url":"pic.twitter.com\/ynKpD9OuQQ","expanded_url":"https:\/\/twitter.com\/laserqeusts\/status\/1234089656158953472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":400,"resize":"fit"},"medium":{"w":720,"h":400,"resize":"fit"},"small":{"w":680,"h":378,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234089647841652736,"id_str":"1234089647841652736","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/ESBd_wiWsAAJ7_i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESBd_wiWsAAJ7_i.jpg","url":"https:\/\/t.co\/ynKpD9OuQQ","display_url":"pic.twitter.com\/ynKpD9OuQQ","expanded_url":"https:\/\/twitter.com\/laserqeusts\/status\/1234089656158953472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":400,"resize":"fit"},"medium":{"w":720,"h":400,"resize":"fit"},"small":{"w":680,"h":378,"resize":"fit"}}}]},"metadata":{"iso_language_code":"lt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":759778941900992512,"id_str":"759778941900992512","name":"nat","screen_name":"laserqeusts","location":"Ldn","description":"lady - where has your love gone?","url":"https:\/\/t.co\/dXBgyt9NNS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dXBgyt9NNS","expanded_url":"http:\/\/curiouscat.me\/lladybird","display_url":"curiouscat.me\/lladybird","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3344,"friends_count":298,"listed_count":81,"created_at":"Sun - Jul 31 15:53:10 +0000 2016","favourites_count":54333,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32113,"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\/1234849726060793858\/rJt7wOgA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234849726060793858\/rJt7wOgA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/759778941900992512\/1573236269","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28516,"favorite_count":132998,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lt"},"is_quote_status":false,"retweet_count":28516,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lt"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518572443095047,"id_str":"1234518572443095047","text":"RT - @Zziagenio78: #CoronaVirus\n#Starea1metro\n Ciao raga, io esco https:\/\/t.co\/VrrRKta8lD","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[17,29]},{"text":"Starea1metro","indices":[30,43]}],"symbols":[],"user_mentions":[{"screen_name":"Zziagenio78","name":"Genio78","id":449929150,"id_str":"449929150","indices":[3,15]}],"urls":[],"media":[{"id":1234483826149220353,"id_str":"1234483826149220353","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHEf9KW4AEoHxL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHEf9KW4AEoHxL.jpg","url":"https:\/\/t.co\/VrrRKta8lD","display_url":"pic.twitter.com\/VrrRKta8lD","expanded_url":"https:\/\/twitter.com\/Zziagenio78\/status\/1234483831731884032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":506,"h":680,"resize":"fit"},"medium":{"w":893,"h":1200,"resize":"fit"},"large":{"w":1072,"h":1440,"resize":"fit"}},"source_status_id":1234483831731884032,"source_status_id_str":"1234483831731884032","source_user_id":449929150,"source_user_id_str":"449929150"}]},"extended_entities":{"media":[{"id":1234483826149220353,"id_str":"1234483826149220353","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHEf9KW4AEoHxL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHEf9KW4AEoHxL.jpg","url":"https:\/\/t.co\/VrrRKta8lD","display_url":"pic.twitter.com\/VrrRKta8lD","expanded_url":"https:\/\/twitter.com\/Zziagenio78\/status\/1234483831731884032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":506,"h":680,"resize":"fit"},"medium":{"w":893,"h":1200,"resize":"fit"},"large":{"w":1072,"h":1440,"resize":"fit"}},"source_status_id":1234483831731884032,"source_status_id_str":"1234483831731884032","source_user_id":449929150,"source_user_id_str":"449929150"}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1192782260656848896,"id_str":"1192782260656848896","name":"Sonny - Boy and Howlin''Wolf","screen_name":"Howlinwolf18","location":"","description":"La - vita \u00e8 troppo breve per sprecarla ad odiare. Account ad alto contenuto - musicale.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":463,"friends_count":285,"listed_count":2,"created_at":"Fri - Nov 08 12:34:13 +0000 2019","favourites_count":6625,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5944,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234754945485803520\/Y3LtzxI7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234754945485803520\/Y3LtzxI7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1192782260656848896\/1582964621","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:20:55 +0000 2020","id":1234483831731884032,"id_str":"1234483831731884032","text":"#CoronaVirus\n#Starea1metro\n - Ciao raga, io esco https:\/\/t.co\/VrrRKta8lD","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[0,12]},{"text":"Starea1metro","indices":[13,26]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234483826149220353,"id_str":"1234483826149220353","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHEf9KW4AEoHxL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHEf9KW4AEoHxL.jpg","url":"https:\/\/t.co\/VrrRKta8lD","display_url":"pic.twitter.com\/VrrRKta8lD","expanded_url":"https:\/\/twitter.com\/Zziagenio78\/status\/1234483831731884032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":506,"h":680,"resize":"fit"},"medium":{"w":893,"h":1200,"resize":"fit"},"large":{"w":1072,"h":1440,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234483826149220353,"id_str":"1234483826149220353","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHEf9KW4AEoHxL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHEf9KW4AEoHxL.jpg","url":"https:\/\/t.co\/VrrRKta8lD","display_url":"pic.twitter.com\/VrrRKta8lD","expanded_url":"https:\/\/twitter.com\/Zziagenio78\/status\/1234483831731884032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":506,"h":680,"resize":"fit"},"medium":{"w":893,"h":1200,"resize":"fit"},"large":{"w":1072,"h":1440,"resize":"fit"}}}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":449929150,"id_str":"449929150","name":"Genio78","screen_name":"Zziagenio78","location":"PC(Sia - Piacenza che Computer)","description":"\u2022BRAND, PR & EVENTS:Cazzo vuol - dire? \n\u2022SERATE IN DISCOTECA:Bei tempi\n\u2022MANAGEMENT:Citofonare a - mio zio\n\u2022CANALE YOUTUBE:Nella credenza ho i video della cresima","url":"https:\/\/t.co\/UPMzSD3ZCk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UPMzSD3ZCk","expanded_url":"http:\/\/cwbks.co\/miolibro","display_url":"cwbks.co\/miolibro","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":61563,"friends_count":996,"listed_count":510,"created_at":"Thu - Dec 29 17:26:13 +0000 2011","favourites_count":55005,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25045,"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\/549078219123875840\/FNHMm_St_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549078219123875840\/FNHMm_St_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/449929150\/1397082826","profile_link_color":"0019B8","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":410,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":53,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518572338208769,"id_str":"1234518572338208769","text":"RT - @Danzjugg: Please don\u2019t be ALARMED ...but CORONAVIRUS will soon spread - irreversibly through BANKNOTES.\n\nIf you have any BANKNOTES - hand\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Danzjugg","name":"Danz\ud83d\udda4","id":1151021976238075906,"id_str":"1151021976238075906","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113147755269099521,"id_str":"1113147755269099521","name":"rizzy","screen_name":"rizzy2nd","location":"","description":"im - back say wassup","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":1263,"listed_count":0,"created_at":"Tue - Apr 02 18:34:40 +0000 2019","favourites_count":6394,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/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\/1113147755269099521\/1582595450","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 10:42:08 +0000 2020","id":1234066384956674048,"id_str":"1234066384956674048","text":"Please - don\u2019t be ALARMED ...but CORONAVIRUS will soon spread irreversibly through - BANKNOTES.\n\nIf you have any BANKNO\u2026 https:\/\/t.co\/T2jXyvLCun","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T2jXyvLCun","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234066384956674048","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1151021976238075906,"id_str":"1151021976238075906","name":"Danz\ud83d\udda4","screen_name":"Danzjugg","location":"Pluto","description":"\ud83c\udf2a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1175,"friends_count":1121,"listed_count":0,"created_at":"Tue - Jul 16 06:53:18 +0000 2019","favourites_count":324,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1210906210406477825\/vO2B3uWd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210906210406477825\/vO2B3uWd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151021976238075906\/1575248142","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8205,"favorite_count":37186,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8205,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518572245778433,"id_str":"1234518572245778433","text":"RT - @iamthatothi: Broke: Cancels all travel due to coronavirus concerns\n\nWoke: - Books the vacation of their dreams due to hotel and plane pri\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"iamthatothi","name":"I - am Thatothi","id":1011053877393846272,"id_str":"1011053877393846272","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1201417170531553280,"id_str":"1201417170531553280","name":"democ","screen_name":"instructor_judo","location":"","description":"succulent","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":267,"friends_count":290,"listed_count":0,"created_at":"Mon - Dec 02 08:25:58 +0000 2019","favourites_count":27057,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7741,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224961549279756288\/Y80ApjC0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224961549279756288\/Y80ApjC0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201417170531553280\/1580888569","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 21:07:26 +0000 2020","id":1234223744794734597,"id_str":"1234223744794734597","text":"Broke: - Cancels all travel due to coronavirus concerns\n\nWoke: Books the vacation - of their dreams due to hotel and plane prices plummeting","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1011053877393846272,"id_str":"1011053877393846272","name":"I - am Thatothi","screen_name":"iamthatothi","location":"NYC","description":"Aficionado - of only the finest #bitcoin","url":"https:\/\/t.co\/39e1lhooBz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/39e1lhooBz","expanded_url":"http:\/\/2140.co","display_url":"2140.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4516,"friends_count":2049,"listed_count":31,"created_at":"Mon - Jun 25 01:10:03 +0000 2018","favourites_count":25776,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10445,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1190866625957945344\/3d5hDRzH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190866625957945344\/3d5hDRzH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011053877393846272\/1569387875","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":545,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":50,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518572174577665,"id_str":"1234518572174577665","text":"What - do we know about the fast-moving coronavirus? We''ll be streaming a live discussion - on the outbreak today at 12\u2026 https:\/\/t.co\/hZ2fjlgaxe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hZ2fjlgaxe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518572174577665","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":13492102,"id_str":"13492102","name":"The - World","screen_name":"pritheworld","location":"Boston, MA, USA","description":"Hosted - by @MarcoWerman. We''re in your ears five times a week, offering news, features, - interviews, and music from around the globe.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37041,"friends_count":2392,"listed_count":1619,"created_at":"Thu - Feb 14 22:18:56 +0000 2008","favourites_count":10596,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":59984,"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\/1189970295802732545\/oCbwHshN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189970295802732545\/oCbwHshN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13492102\/1563220859","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"},"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"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518571885178881,"id_str":"1234518571885178881","text":"RT - @hugoclement: Cons\u00e9quence du coronavirus en Chine : chute spectaculaire - de la pollution atmosph\u00e9rique, li\u00e9e aux mesures de quarantaine e\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hugoclement","name":"Hugo - Cl\u00e9ment","id":84282385,"id_str":"84282385","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1169110016,"id_str":"1169110016","name":"bluemonde","screen_name":"swetlondon","location":"Champagne","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1028,"friends_count":1433,"listed_count":5,"created_at":"Mon - Feb 11 14:48:19 +0000 2013","favourites_count":91056,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":124485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"006BB3","profile_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":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 14:48:21 +0000 2020","id":1234128346428170246,"id_str":"1234128346428170246","text":"Cons\u00e9quence - du coronavirus en Chine : chute spectaculaire de la pollution atmosph\u00e9rique, - li\u00e9e aux mesures de quaran\u2026 https:\/\/t.co\/E4nz6lRDOA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E4nz6lRDOA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234128346428170246","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84282385,"id_str":"84282385","name":"Hugo - Cl\u00e9ment","screen_name":"hugoclement","location":"Paris","description":"#SurLeFront - Contact pro : contacthugoclement@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":637803,"friends_count":844,"listed_count":1536,"created_at":"Thu - Oct 22 09:15:47 +0000 2009","favourites_count":386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13577,"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\/1142073276212142081\/2me4yGzB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1142073276212142081\/2me4yGzB_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3803,"favorite_count":10173,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":3803,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518571822260224,"id_str":"1234518571822260224","text":"\ud83d\udd34 - OFFICIEL ! La championnat suisse est suspendu suite au coronavirus. \ud83c\udde8\ud83c\udded","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":771606164,"id_str":"771606164","name":"Actu - Foot","screen_name":"ActuFoot_","location":"Snapchat: Actufoot","description":"Suivez - toute l''actu foot en temps r\u00e9el sur @actufoot_ \/\/ \ud83d\udcf8 Rendez-vous - sur Instagram pour d''autres contenus : actufoot_ (accessible ici https:\/\/t.co\/Mm70ncVErX)","url":"https:\/\/t.co\/HXvMftV7SQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HXvMftV7SQ","expanded_url":"http:\/\/caseteam.fr","display_url":"caseteam.fr","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Mm70ncVErX","expanded_url":"http:\/\/sofinder.me\/i\/actufoot","display_url":"sofinder.me\/i\/actufoot","indices":[136,159]}]}},"protected":false,"followers_count":2217240,"friends_count":73,"listed_count":2120,"created_at":"Tue - Aug 21 14:25:25 +0000 2012","favourites_count":231,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":99613,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D58DB","profile_background_image_url":"http:\/\/abs.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\/1079542234465341442\/uNUlKEw__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1079542234465341442\/uNUlKEw__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771606164\/1583090983","profile_link_color":"1900A8","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1941,"favorite_count":6661,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518571797098497,"id_str":"1234518571797098497","text":"RT - @darhar981: \ud83d\udea8Calls Grow to Quarantine \n#SenChrisMurphy, After - Secret Meeting With Coronavirus Carriers From Iranian Regime.\nAlso present\u2026","truncated":false,"entities":{"hashtags":[{"text":"SenChrisMurphy","indices":[42,57]}],"symbols":[],"user_mentions":[{"screen_name":"darhar981","name":"Sandpiper\ud83d\udc51\u271d\ufe0f\u2721\ufe0f\ud83d\udc15\ud83d\udc08\u2764\ufe0f","id":187936720,"id_str":"187936720","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":461780457,"id_str":"461780457","name":"Connie - H","screen_name":"MsMagnolia0913","location":"Gulf Coast","description":"American, - Southern, Christian, Conservative, Blessed Wife, Mom & Grammy. #2nd #nra #lnyhbt - #Breitbart #MAGA #Trump2020 \ud83c\uddfa\ud83c\uddf8\ud83c\udf2a\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5251,"friends_count":5207,"listed_count":27,"created_at":"Thu - Jan 12 05:31:14 +0000 2012","favourites_count":131478,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92205,"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\/2857409235\/188eae4cabeb71a2b4da4fd31a614a84_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2857409235\/188eae4cabeb71a2b4da4fd31a614a84_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/461780457\/1518338406","profile_link_color":"688A08","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:30:35 +0000 2020","id":1234501364379738114,"id_str":"1234501364379738114","text":"\ud83d\udea8Calls - Grow to Quarantine \n#SenChrisMurphy, After Secret Meeting With Coronavirus - Carriers From Iranian Regime.\nAls\u2026 https:\/\/t.co\/A0USHOqWzC","truncated":true,"entities":{"hashtags":[{"text":"SenChrisMurphy","indices":[27,42]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A0USHOqWzC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234501364379738114","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187936720,"id_str":"187936720","name":"Sandpiper\ud83d\udc51\u271d\ufe0f\u2721\ufe0f\ud83d\udc15\ud83d\udc08\u2764\ufe0f","screen_name":"darhar981","location":"USA","description":"\u2022Conservative - \u2022Loves Dogs & Cats \u2022Phila Eagles \u2022Jesus \u2022ProIsrael \u2022CCOT - \u2022MAGA \u2022NRA \u2022bluelivesmatter \u2022Veterans \u2022kindnessmatters - \u2022coffeelover\u2022\ud83d\udeabList \u2764\ufe0f\u271d\ufe0f\u2721\ufe0f\u2615\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88318,"friends_count":28346,"listed_count":67,"created_at":"Tue - Sep 07 14:43:38 +0000 2010","favourites_count":409756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":475775,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198643778590060545\/qd2xswm6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198643778590060545\/qd2xswm6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187936720\/1488589266","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1815,"favorite_count":1750,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1815,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518571717402624,"id_str":"1234518571717402624","text":"RT - @OGGomas: Na r\u00e1dio j\u00e1 s\u00f3 se ouve duas coisas...\n- coronavirus\n- - essa menina solta","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OGGomas","name":"OG - GOMAS \ud83c\uddf2\ud83c\uddfd","id":1225366974965932033,"id_str":"1225366974965932033","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":892041601043791872,"id_str":"892041601043791872","name":"\ud83c\udf19","screen_name":"dfpc_","location":"2975","description":"Qdc - BXL","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":268,"friends_count":182,"listed_count":0,"created_at":"Mon - Jul 31 15:17:45 +0000 2017","favourites_count":8946,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47365,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196331492311474176\/F1rl7qpT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196331492311474176\/F1rl7qpT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/892041601043791872\/1581980156","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:22:22 +0000 2020","id":1234408696190586880,"id_str":"1234408696190586880","text":"Na - r\u00e1dio j\u00e1 s\u00f3 se ouve duas coisas...\n- coronavirus\n- essa menina - solta","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1225366974965932033,"id_str":"1225366974965932033","name":"OG - GOMAS \ud83c\uddf2\ud83c\uddfd","screen_name":"OGGomas","location":"Aveiro, - Portugal","description":"A MINHA CONTA DE 35K FOI SUSPENSA, SIGAM AQUI || - INSTAGRAM: BRUNOGOMAS \ud83c\udf9e","url":"https:\/\/t.co\/6PY19XxP0r","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6PY19XxP0r","expanded_url":"http:\/\/instagram.com\/brunogomas","display_url":"instagram.com\/brunogomas","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5328,"friends_count":397,"listed_count":0,"created_at":"Thu - Feb 06 10:34:03 +0000 2020","favourites_count":5888,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1062,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234566906595725312\/a4lqRrG3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234566906595725312\/a4lqRrG3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1225366974965932033\/1583191759","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3846,"favorite_count":9212,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":3846,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518571545481219,"id_str":"1234518571545481219","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":700963803534651394,"id_str":"700963803534651394","name":"cloclo","screen_name":"clsleana","location":"","description":"j\u2019aime - le cin\u00e9ma et dans un univers parall\u00e8le je suis r\u00e9alisatrice - de film","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":237,"friends_count":113,"listed_count":0,"created_at":"Sat - Feb 20 08:42:48 +0000 2016","favourites_count":7744,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231855382995390465\/dUvMMY07_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231855382995390465\/dUvMMY07_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/700963803534651394\/1580715757","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153505,"favorite_count":478696,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518571516153859,"id_str":"1234518571516153859","text":"RT - @WSJ: New York\u2019s first confirmed coronavirus case is a woman who recently - traveled to Iran, Gov. Cuomo said. She is in isolation in her\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WSJ","name":"The - Wall Street Journal","id":3108351,"id_str":"3108351","indices":[3,7]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":57795576,"id_str":"57795576","name":"M. - A. Meyer","screen_name":"mmeyer115comcas","location":"Minneapolis, MN","description":"A - Nasty Woman, Independent Progressive, 1st Amendment fan & unapologetic feminist. - #Resist #Persist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1162,"friends_count":2187,"listed_count":0,"created_at":"Fri - Jul 17 23:53:07 +0000 2009","favourites_count":7467,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32291,"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\/1203696842623668225\/-pPo3BIs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203696842623668225\/-pPo3BIs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57795576\/1575818666","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 01:20:07 +0000 2020","id":1234287334209867776,"id_str":"1234287334209867776","text":"New - York\u2019s first confirmed coronavirus case is a woman who recently traveled - to Iran, Gov. Cuomo said. She is in is\u2026 https:\/\/t.co\/mYZVj9wwVM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mYZVj9wwVM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234287334209867776","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3108351,"id_str":"3108351","name":"The - Wall Street Journal","screen_name":"WSJ","location":"New York, NY","description":"Breaking - news and features from https:\/\/t.co\/GhhR6PLfem | Follow live coverage of - the coronavirus epidemic: https:\/\/t.co\/MN1vjtxTwo","url":"https:\/\/t.co\/GhhR6PLfem","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GhhR6PLfem","expanded_url":"http:\/\/wsj.com","display_url":"wsj.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/GhhR6PLfem","expanded_url":"http:\/\/wsj.com","display_url":"wsj.com","indices":[32,55]},{"url":"https:\/\/t.co\/MN1vjtxTwo","expanded_url":"http:\/\/on.wsj.com\/2vnfTKw","display_url":"on.wsj.com\/2vnfTKw","indices":[108,131]}]}},"protected":false,"followers_count":17320771,"friends_count":886,"listed_count":115055,"created_at":"Sun - Apr 01 06:22:13 +0000 2007","favourites_count":1194,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":300775,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"EDF2F5","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\/971415515754266624\/zCX0q9d5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/971415515754266624\/zCX0q9d5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3108351\/1562333209","profile_link_color":"1164B8","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":610,"favorite_count":941,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":610,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518571214135296,"id_str":"1234518571214135296","text":"The - S spike protein plays a key role in how the virus infects cells. Each of the - little spikes that surround the co\u2026 https:\/\/t.co\/FVDG7kco1m","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FVDG7kco1m","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518571214135296","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21303464,"id_str":"21303464","name":"Aly-Khan - Satchu","screen_name":"alykhansatchu","location":"Nairobi","description":"https:\/\/t.co\/TSDvPIA9og - Banker Interest rate Macro Geopolitical Africa that kind of thing","url":"https:\/\/t.co\/TSDvPIA9og","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TSDvPIA9og","expanded_url":"http:\/\/www.rich.co.ke","display_url":"rich.co.ke","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/TSDvPIA9og","expanded_url":"http:\/\/www.rich.co.ke","display_url":"rich.co.ke","indices":[0,23]}]}},"protected":false,"followers_count":568108,"friends_count":18524,"listed_count":842,"created_at":"Thu - Feb 19 14:43:40 +0000 2009","favourites_count":20977,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":363980,"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\/991009962506838017\/wHHBPmAo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/991009962506838017\/wHHBPmAo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21303464\/1520929282","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"},"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"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518571138658304,"id_str":"1234518571138658304","text":"RT - @Conflits_FR: \ud83c\uddeb\ud83c\uddf7 \u00c9PID\u00c9MIE - Quelques mesures - prises si le Stade 3 du #coronavirus est d\u00e9clar\u00e9 :\n\n- Fermeture - des \u00e9tablissements scolaire\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[72,84]}],"symbols":[],"user_mentions":[{"screen_name":"Conflits_FR","name":"Conflits","id":1214315619031478272,"id_str":"1214315619031478272","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":981986109008809984,"id_str":"981986109008809984","name":"Cem","screen_name":"Cem16074042","location":"Paris, - France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":14,"listed_count":1,"created_at":"Thu - Apr 05 20:05:07 +0000 2018","favourites_count":2853,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3810,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:59:30 +0000 2020","id":1234508641484595203,"id_str":"1234508641484595203","text":"\ud83c\uddeb\ud83c\uddf7 - \u00c9PID\u00c9MIE - Quelques mesures prises si le Stade 3 du #coronavirus - est d\u00e9clar\u00e9 :\n\n- Fermeture des \u00e9tablissements s\u2026 https:\/\/t.co\/wswclaLEDA","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[55,67]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wswclaLEDA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234508641484595203","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214315619031478272,"id_str":"1214315619031478272","name":"Conflits","screen_name":"Conflits_FR","location":"\ud83c\uddeb\ud83c\uddf7 - \/ \ud83c\udde9\ud83c\uddea","description":"Traque les conflits autour du - globe en temps r\u00e9el & en fran\u00e7ais. (G\u00e9o)politique, terrorisme, - espionnage, cyber-s\u00e9curit\u00e9, sant\u00e9. Backup : @ConflitsFR. #OSINT","url":"https:\/\/t.co\/Ve7b3t0FON","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ve7b3t0FON","expanded_url":"https:\/\/www.instagram.com\/conflits_fr\/","display_url":"instagram.com\/conflits_fr\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":87906,"friends_count":12,"listed_count":205,"created_at":"Mon - Jan 06 22:40:00 +0000 2020","favourites_count":2668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3526,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214315619031478272\/1580759618","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":694,"favorite_count":1364,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":694,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570983399427,"id_str":"1234518570983399427","text":"NADA - EXTRA\u00d1O, DE EE.UU. SOLO SE PUEDE ESPERARA MALDAD Y M\u00c1S MALDAD. ENT\u00c9RATE: Hugbel - Roa: Coronavirus: \u00bfGuerra\u2026 https:\/\/t.co\/U0jHHs1QcB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U0jHHs1QcB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518570983399427","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":1170460417212190721,"id_str":"1170460417212190721","name":"CraciaDemoRepotenciado2.0","screen_name":"CraciaDemoRepo1","location":"Toda - Venezuela","description":"Nacionalista, Bolivariano, Revolucionario, Chavista, - Antiimperialista, Latinoamericanista y Caribe\u00f1o. Defiendo mi patria Rep\u00fablica - Bolivariana de Venezuela.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":214,"listed_count":0,"created_at":"Sat - Sep 07 22:15:50 +0000 2019","favourites_count":7304,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18153,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170461310578020352\/QR94w9v__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170461310578020352\/QR94w9v__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1170460417212190721\/1567895320","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"es"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570870112256,"id_str":"1234518570870112256","text":"@tjota007 - \ud83d\ude01 https:\/\/t.co\/0w1oP0v5mr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tjota007","name":"Tjota","id":1158282059363868672,"id_str":"1158282059363868672","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/0w1oP0v5mr","expanded_url":"https:\/\/www.ibtimes.sg\/north-koreas-first-confirmed-coronavirus-covid-19-patient-shot-dead-report-40042","display_url":"ibtimes.sg\/north-koreas-f\u2026","indices":[12,35]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1234517925341663232,"in_reply_to_status_id_str":"1234517925341663232","in_reply_to_user_id":1158282059363868672,"in_reply_to_user_id_str":"1158282059363868672","in_reply_to_screen_name":"tjota007","user":{"id":4310025034,"id_str":"4310025034","name":"jr - ferreira","screen_name":"jr_ferreira_","location":"Portugal \ud83c\uddf5\ud83c\uddf9","description":"\u26a0\ufe0f - n\u00e3o \u00e9 preciso ser doido para andar nisto, mas ajuda muito","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1274,"friends_count":329,"listed_count":6,"created_at":"Sat - Nov 28 18:55:38 +0000 2015","favourites_count":25478,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21843,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170278499933986817\/RZPmssZM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170278499933986817\/RZPmssZM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4310025034\/1549038652","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570744328192,"id_str":"1234518570744328192","text":"Mascara - do Corona Virus Como Comprar Mascara de Coronavirus Portugal https:\/\/t.co\/u5tU3fr8rU - COVID19\n\n#COVID19 #portugal #coronavirus","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[102,110]},{"text":"portugal","indices":[111,120]},{"text":"coronavirus","indices":[121,133]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u5tU3fr8rU","expanded_url":"https:\/\/youtu.be\/FuNmcP564mo","display_url":"youtu.be\/FuNmcP564mo","indices":[69,92]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"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,"user":{"id":1114194057381724162,"id_str":"1114194057381724162","name":"Edney - Pinheiro","screen_name":"edney_pinheiro","location":"Portugal","description":"","url":"https:\/\/t.co\/UjqAFo10hA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UjqAFo10hA","expanded_url":"http:\/\/www.youtube.com\/canalexotico","display_url":"youtube.com\/canalexotico","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":3,"listed_count":0,"created_at":"Fri - Apr 05 15:52:18 +0000 2019","favourites_count":105,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":100,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1124395512155856898\/_BanuVo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1124395512155856898\/_BanuVo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1114194057381724162\/1582939388","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"pt"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570723397633,"id_str":"1234518570723397633","text":"RT - @DrDenaGrayson: In the U.S., individual patients (or their insurance companies, - if applicable), must pay for #coronavirus testing, treat\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[112,124]}],"symbols":[],"user_mentions":[{"screen_name":"DrDenaGrayson","name":"Dr. - Dena Grayson","id":1651522832,"id_str":"1651522832","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1382793386,"id_str":"1382793386","name":"MOAR - won''t fix this\ud83d\udc49 #HostagePolitics #VanRE\ud83d\udc47","screen_name":"mtnbvan","location":"The - Vancouver Model #CullenIsComing","description":"#FreeKovrig #FreeSpavor Local - citizen, not politically funded.Our housing mkt & planning is broken. #VisionLegacy - #CleanHouse #CommunityNotCommodity #vanpoli","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3161,"friends_count":3913,"listed_count":88,"created_at":"Fri - Apr 26 20:17:29 +0000 2013","favourites_count":174879,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":313762,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D5D8DE","profile_background_image_url":"http:\/\/abs.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\/1228733568467243014\/3t2TVzFf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228733568467243014\/3t2TVzFf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1382793386\/1574966513","profile_link_color":"FF691F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:56:13 +0000 2020","id":1234492714667868162,"id_str":"1234492714667868162","text":"In - the U.S., individual patients (or their insurance companies, if applicable), - must pay for #coronavirus testing,\u2026 https:\/\/t.co\/KkQGffERzj","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[93,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KkQGffERzj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234492714667868162","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1651522832,"id_str":"1651522832","name":"Dr. - Dena Grayson","screen_name":"DrDenaGrayson","location":"Florida","description":"Patriotic - liberal. Former Democratic candidate for U.S. Congress, physician (MD) and - scientist (PhD). Expert on #Ebola and other #pandemic threats.","url":"https:\/\/t.co\/5BmBFaFyit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5BmBFaFyit","expanded_url":"http:\/\/denagrayson.com","display_url":"denagrayson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":231244,"friends_count":333,"listed_count":1443,"created_at":"Tue - Aug 06 23:34:40 +0000 2013","favourites_count":157303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":63563,"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\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1651522832\/1541350200","profile_link_color":"0000E5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234274878326329344,"quoted_status_id_str":"1234274878326329344","quoted_status":{"created_at":"Mon - Mar 02 00:30:37 +0000 2020","id":1234274878326329344,"id_str":"1234274878326329344","text":"A - serious #COVID19US query\n \nQUESTIONs: Who pays for \n1. initial medical - screen \n2. the treatment\n3. non-medical\u2026 https:\/\/t.co\/rkF8HxU9wp","truncated":true,"entities":{"hashtags":[{"text":"COVID19US","indices":[10,20]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rkF8HxU9wp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234274878326329344","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16966104,"id_str":"16966104","name":"Christopher - Burgess","screen_name":"burgessct","location":"Washington State","description":"30+ - years w\/CIA\ud83d\udd75\ufe0f\u200d\u2642\ufe0f- Founder @securelytravel - \u2708 Co-Author Book \ud83d\udcd5 Secrets Stolen Fortunes Lost Preventing - IP Theft and Economic Espionage in 21st Century","url":"https:\/\/t.co\/nG65hqrlus","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nG65hqrlus","expanded_url":"https:\/\/www.burgessct.com\/about\/christopher-burgess-articles\/","display_url":"burgessct.com\/about\/christop\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11187,"friends_count":4401,"listed_count":641,"created_at":"Sat - Oct 25 12:53:30 +0000 2008","favourites_count":22419,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":50285,"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\/1212603804387921921\/YDCRTGUw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212603804387921921\/YDCRTGUw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16966104\/1565455539","profile_link_color":"000080","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":63,"favorite_count":92,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1386,"favorite_count":2976,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234274878326329344,"quoted_status_id_str":"1234274878326329344","retweet_count":1386,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570534608904,"id_str":"1234518570534608904","text":"RT - @NYGov: .@NYGovCuomo announced new actions to help contain the potential spread - of #COVID19:\n\n\u2714\ufe0f Partner with hospitals to expand testin\u2026","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[86,94]}],"symbols":[],"user_mentions":[{"screen_name":"NYGov","name":"State - of New York","id":2815794381,"id_str":"2815794381","indices":[3,9]},{"screen_name":"NYGovCuomo","name":"Andrew - Cuomo","id":232268199,"id_str":"232268199","indices":[12,23]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1636298246,"id_str":"1636298246","name":"SWhite_HT","screen_name":"SWhite_HT","location":"Herkimer, - NY","description":"Reporter with The Times Telegram, covering breaking news, - events and more that matter to the valley. Retweets aren''t endorsements.","url":"https:\/\/t.co\/CfMc1PUu2Y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CfMc1PUu2Y","expanded_url":"http:\/\/www.timestelegram.com","display_url":"timestelegram.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":454,"friends_count":1082,"listed_count":31,"created_at":"Wed - Jul 31 20:08:22 +0000 2013","favourites_count":9861,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451355724149301248\/k1Awx6Q8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451355724149301248\/k1Awx6Q8_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:26:16 +0000 2020","id":1234515374944800768,"id_str":"1234515374944800768","text":".@NYGovCuomo - announced new actions to help contain the potential spread of #COVID19:\n\n\u2714\ufe0f - Partner with hospitals to\u2026 https:\/\/t.co\/vxDCL0WGPz","truncated":true,"entities":{"hashtags":[{"text":"COVID19","indices":[75,83]}],"symbols":[],"user_mentions":[{"screen_name":"NYGovCuomo","name":"Andrew - Cuomo","id":232268199,"id_str":"232268199","indices":[1,12]}],"urls":[{"url":"https:\/\/t.co\/vxDCL0WGPz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234515374944800768","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2815794381,"id_str":"2815794381","name":"State - of New York","screen_name":"NYGov","location":"New York State","description":"The - official Twitter of New York State, the State of Opportunity. Social media - use policy: https:\/\/t.co\/Oazy5ahlU6","url":"https:\/\/t.co\/wXJ03MP9SU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wXJ03MP9SU","expanded_url":"http:\/\/ny.gov","display_url":"ny.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Oazy5ahlU6","expanded_url":"http:\/\/www.ny.gov\/social-media-policy","display_url":"ny.gov\/social-media-p\u2026","indices":[91,114]}]}},"protected":false,"followers_count":14795,"friends_count":768,"listed_count":219,"created_at":"Wed - Oct 08 16:18:45 +0000 2014","favourites_count":2364,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5381,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3B94D9","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\/949318006538203136\/Jd3ctuE2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/949318006538203136\/Jd3ctuE2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2815794381\/1580157112","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":2,"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"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570517835777,"id_str":"1234518570517835777","text":"RT - @steve_Beno3210: IRAN ROUNDUP Feb. 21 to March 1: IRAN PLAGUED BY CORONAVIRUS - \u2013 Deaths Mounting, People Revolt Against the Khomeinist Re\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"steve_Beno3210","name":"Steve\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","id":1157673159128207361,"id_str":"1157673159128207361","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":758118360353734656,"id_str":"758118360353734656","name":"BOARDWALK - ROB","screen_name":"robothearab","location":"CB, North Carolina, USA","description":"#MAGA, - #KAG, #MAGAVETERAN, #2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12058,"friends_count":13172,"listed_count":10,"created_at":"Wed - Jul 27 01:54:37 +0000 2016","favourites_count":21893,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59477,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/761034830003830785\/H8iefxdr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/761034830003830785\/H8iefxdr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/758118360353734656\/1470279367","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 11:20:08 +0000 2020","id":1234438334044352512,"id_str":"1234438334044352512","text":"IRAN - ROUNDUP Feb. 21 to March 1: IRAN PLAGUED BY CORONAVIRUS \u2013 Deaths Mounting, - People Revolt Against the Khomeinis\u2026 https:\/\/t.co\/IhzK2iFIGP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IhzK2iFIGP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234438334044352512","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1157673159128207361,"id_str":"1157673159128207361","name":"Steve\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","screen_name":"steve_Beno3210","location":"Valley - Forge, Pa","description":"MAGA Conservative looking to hook up with fellow - patriots happily married","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36281,"friends_count":36680,"listed_count":17,"created_at":"Sat - Aug 03 15:22:44 +0000 2019","favourites_count":87289,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":108059,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1174502125444853760\/SfQdNp0T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1174502125444853760\/SfQdNp0T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1157673159128207361\/1581294295","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":206,"favorite_count":110,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":206,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570396274688,"id_str":"1234518570396274688","text":"RT - @patrickwintour: Iranian ambassador to the UK says co-ordination underway - with British to send equipment from UK to help combat Coronavi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"patrickwintour","name":"Patrick - Wintour","id":27692596,"id_str":"27692596","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":927990411800522754,"id_str":"927990411800522754","name":"Zev - Rogan","screen_name":"Zevography","location":"","description":"ahwihu2199usianc - bxoja9wu8edy7eab db 3861t63te973jfka mffsaceg45t5234 12 2edwdcfawf34","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":134,"listed_count":2,"created_at":"Tue - Nov 07 20:05:30 +0000 2017","favourites_count":1188,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32063,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227735656744603650\/ByTJMD6W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227735656744603650\/ByTJMD6W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/927990411800522754\/1581034254","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:47:52 +0000 2020","id":1234490613606834178,"id_str":"1234490613606834178","text":"Iranian - ambassador to the UK says co-ordination underway with British to send equipment - from UK to help combat Coro\u2026 https:\/\/t.co\/QhzaPca6Wa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QhzaPca6Wa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234490613606834178","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27692596,"id_str":"27692596","name":"Patrick - Wintour","screen_name":"patrickwintour","location":"London","description":"Guardian - Diplomatic Editor. Covered UK politics for too many decades including as - Political Editor. Now urgently studying maps, history and Google Translate.","url":"https:\/\/t.co\/m2ZmqG5JsX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m2ZmqG5JsX","expanded_url":"http:\/\/www.guardian.co.uk\/profile\/patrickwintour","display_url":"guardian.co.uk\/profile\/patric\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":80542,"friends_count":1022,"listed_count":1627,"created_at":"Mon - Mar 30 18:00:56 +0000 2009","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":22174,"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\/578989688997969920\/_ZpAFlqg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578989688997969920\/_ZpAFlqg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27692596\/1426876783","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234487954304749570,"quoted_status_id_str":"1234487954304749570","quoted_status":{"created_at":"Mon - Mar 02 14:37:18 +0000 2020","id":1234487954304749570,"id_str":"1234487954304749570","text":"\u0627\u0648\u0644\u06cc\u0646 - \u0645\u062d\u0645\u0648\u0644\u0647 \u0647\u062f\u0627\u06cc\u0627\u06cc - \u0627\u0646\u06af\u0644\u06cc\u0633\u060c \u0641\u0631\u0627\u0646\u0633\u0647 - \u0648 \u0622\u0644\u0645\u0627\u0646 \u0628\u0631\u0627\u06cc \u0645\u0642\u0627\u0628\u0644\u0647 - \u0628\u0627 #\u0648\u06cc\u0631\u0648\u0633_\u06a9\u0648\u0631\u0648\u0646\u0627 - \u0627\u0645\u0634\u0628 \u0648\u0627\u0631\u062f \u062a\u0647\u0631\u0627\u0646 - \u0645\u06cc\u0634\u0648\u062f. \u062f\u0631 \u06a9\u0646\u0627\u0631 \u062a\u0644\u0627\u0634 - \u0645\u0647\u0646\u062f\u0633\u0627\u0646\u2026 https:\/\/t.co\/0E5F27H1fa","truncated":true,"entities":{"hashtags":[{"text":"\u0648\u06cc\u0631\u0648\u0633_\u06a9\u0648\u0631\u0648\u0646\u0627","indices":[58,71]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0E5F27H1fa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234487954304749570","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312087059,"id_str":"3312087059","name":"Hamid - Baeidinejad","screen_name":"baeidinejad","location":"United Kingdom","description":"personal - account of Iran\u2019s Ambassador to the UK, views are mine not the MFA\u2019s","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18132,"friends_count":19,"listed_count":262,"created_at":"Sun - Jun 07 16:45:10 +0000 2015","favourites_count":82,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1637,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/773036427928010756\/H28S3SV7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/773036427928010756\/H28S3SV7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312087059\/1499412944","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":431,"favorited":false,"retweeted":false,"lang":"fa"},"retweet_count":38,"favorite_count":65,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234487954304749570,"quoted_status_id_str":"1234487954304749570","retweet_count":38,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570308177920,"id_str":"1234518570308177920","text":"RT - @GottaLaff: Warren has a coronavirus plan, but it''s not part of her presidential - agenda. It''s what she wants the federal government to d\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GottaLaff","name":"Laffy","id":15368940,"id_str":"15368940","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":231156352,"id_str":"231156352","name":"Trump... - is a \u2018Manifesto of Mistruths\u2019 -Pelosi","screen_name":"buccos08","location":"Rudy - is UNDER INVESTIGATION ","description":"\ud83d\udc49\ud83c\udffc \u201cThe - president is Guilty of an appalling Abuse of public trust,\u201d GOP Sen Mitt - Romney \ud83d\udc48\ud83c\udffd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":984,"friends_count":4998,"listed_count":14,"created_at":"Mon - Dec 27 19:15:57 +0000 2010","favourites_count":164877,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":136662,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227026632264867841\/4fEIqtHO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227026632264867841\/4fEIqtHO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231156352\/1580919721","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:34:32 +0000 2020","id":1234502355405570048,"id_str":"1234502355405570048","text":"Warren - has a coronavirus plan, but it''s not part of her presidential agenda. It''s - what she wants the federal govern\u2026 https:\/\/t.co\/ASpXTxUpeV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ASpXTxUpeV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234502355405570048","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15368940,"id_str":"15368940","name":"Laffy","screen_name":"GottaLaff","location":"California","description":"Weekly - \u201cMy Tweet Spot\u201d with @NicoleSandler radio show, Progressive Voices - Network. Co-editor + post at Laffy''s Place. I tweet a lot & no, I''m not - Nicole Sandler","url":"https:\/\/t.co\/kEemQ1cDk8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kEemQ1cDk8","expanded_url":"http:\/\/nicolesandler.com\/laffys-place\/","display_url":"nicolesandler.com\/laffys-place\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":56459,"friends_count":24751,"listed_count":2579,"created_at":"Wed - Jul 09 18:57:00 +0000 2008","favourites_count":1274,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":920858,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"527A42","profile_background_image_url":"http:\/\/abs.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\/1115060764895612929\/TY-wQu0N_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1115060764895612929\/TY-wQu0N_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15368940\/1466621171","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"ADC9FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":230,"favorite_count":435,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":230,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570127761410,"id_str":"1234518570127761410","text":"RT - @Education4Libs: Dear libs,\n\nI\u2019ve found a simple & effective way - to stay safe from the Coronavirus....\n\nIt\u2019s called turning off the - Fake\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Education4Libs","name":"Educating - Liberals","id":817661098988019712,"id_str":"817661098988019712","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344203895,"id_str":"344203895","name":"sal - craco","screen_name":"cracosal","location":"warren,nj","description":"NYY, - Knicks, Giants, Rangers, Villanova, Father, & Pop Pop!! MAGA!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10091,"friends_count":5424,"listed_count":31,"created_at":"Thu - Jul 28 18:02:59 +0000 2011","favourites_count":138399,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":88429,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3495154322\/6e7193aab2e2b43339ef21909552d711_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3495154322\/6e7193aab2e2b43339ef21909552d711_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:54 +0000 2020","id":1234518050017349633,"id_str":"1234518050017349633","text":"Dear - libs,\n\nI\u2019ve found a simple & effective way to stay safe from the - Coronavirus....\n\nIt\u2019s called turning off the\u2026 https:\/\/t.co\/VT6kEravcu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VT6kEravcu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518050017349633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":817661098988019712,"id_str":"817661098988019712","name":"Educating - Liberals","screen_name":"Education4Libs","location":"Minnesota, USA","description":"Digital - soldier. Followed by @GenFlynn. Mentioned by Q. Retweeted by Trump. Shadowbanned - by Twitter. #WWG1WGA \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/rW7JqtLh0G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rW7JqtLh0G","expanded_url":"http:\/\/Patreon.com\/E4L","display_url":"Patreon.com\/E4L","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":477784,"friends_count":280124,"listed_count":2129,"created_at":"Sat - Jan 07 09:16:12 +0000 2017","favourites_count":130074,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9378,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127981592696115202\/WBcMbFd-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127981592696115202\/WBcMbFd-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/817661098988019712\/1563879746","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1636,"favorite_count":5215,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1636,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570102599681,"id_str":"1234518570102599681","text":"RT - @aproko_doctor: Dear Banks\n\nPlease install hand sanitizers in your ATM galleries, - especially now that we have a Coronavirus virus outbre\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aproko_doctor","name":"Aproko - Doctor\u2122","id":308269557,"id_str":"308269557","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1395070014,"id_str":"1395070014","name":"Angela - Ademola","screen_name":"angelademola","location":"","description":"I love - Jesus\ud83d\udc4c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":113,"listed_count":0,"created_at":"Wed - May 01 17:05:04 +0000 2013","favourites_count":1122,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":336,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1172609624928935936\/-Em7uWJl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172609624928935936\/-Em7uWJl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1395070014\/1535057521","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 11:32:14 +0000 2020","id":1234441381931814912,"id_str":"1234441381931814912","text":"Dear - Banks\n\nPlease install hand sanitizers in your ATM galleries, especially - now that we have a Coronavirus virus o\u2026 https:\/\/t.co\/uzN5DVnUQy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uzN5DVnUQy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234441381931814912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":308269557,"id_str":"308269557","name":"Aproko - Doctor\u2122","screen_name":"aproko_doctor","location":"Lagos Nigeria","description":"Founder - of @DHealthyThreads\/\/\nCelebrity Champion for @YNCSD\/\/\nExpert communicator\/\/\nTrusted - voice for brands.\n\n\ud83d\udce9\nbobbyegemba@gmail.com","url":"https:\/\/t.co\/PGTUFevbWA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PGTUFevbWA","expanded_url":"https:\/\/www.youtube.com\/channel\/UCrHugJRAc7Zv_m73lgXxKfw","display_url":"youtube.com\/channel\/UCrHug\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":205615,"friends_count":7251,"listed_count":214,"created_at":"Tue - May 31 03:34:01 +0000 2011","favourites_count":33707,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50192,"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\/1220601018578341888\/KmHkWy4J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220601018578341888\/KmHkWy4J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/308269557\/1574966743","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1650,"favorite_count":3736,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1650,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:58 +0000 2020","id":1234518570048131082,"id_str":"1234518570048131082","text":"Pobrecitos - \ud83d\ude01\nhttps:\/\/t.co\/7LwtyH4qlf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7LwtyH4qlf","expanded_url":"https:\/\/jornaleconomico.sapo.pt\/noticias\/como-perder-20-mil-milhoes-de-euros-em-cinco-dias-fortunas-de-jeff-bezos-e-bill-gates-afetadas-pelo-coronavirus-553535","display_url":"jornaleconomico.sapo.pt\/noticias\/como-\u2026","indices":[13,36]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1134167242063667200,"id_str":"1134167242063667200","name":"Wild_Wolf","screen_name":"WolfStudent","location":"Portugal","description":"Male. - Free and Wild Soul.\nDiver.\nCMAS,PADI,EFR,DAN Instructor.\nBest Friends...my - books!\nPT, EN, ES, FR.\n\nIf you are NOT Polite and Educated I will BLOCK - U!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":208,"listed_count":0,"created_at":"Thu - May 30 18:38:37 +0000 2019","favourites_count":5410,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3935,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232274181523464193\/nkpd2zvI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232274181523464193\/nkpd2zvI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1134167242063667200\/1559246434","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569934839808,"id_str":"1234518569934839808","text":"Coronavirus - is spreading rapidly and the only One Who can protect us is Allah... May Allah - save and protect all of us!\n\nAmeen!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3393787529,"id_str":"3393787529","name":"Adam - Abubakar","screen_name":"adam__abubakar","location":"Maiduguri, Northern Nigeria.","description":"Alhamdulillah\u2764 - | Servant Of ALLAH | Lover Of Clean Places | REMINISCES | No DMs | @ManUtdFan\ud83d\udd34\u2764","url":"https:\/\/t.co\/Y7bTp8Z7Yo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Y7bTp8Z7Yo","expanded_url":"http:\/\/mt.bo.gov.ng","display_url":"mt.bo.gov.ng","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10764,"friends_count":9742,"listed_count":4,"created_at":"Wed - Jul 29 12:57:18 +0000 2015","favourites_count":38379,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18413,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1172258576129306626\/cp7IhwhM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172258576129306626\/cp7IhwhM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3393787529\/1552810998","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569922285569,"id_str":"1234518569922285569","text":"RT - @lagazul11: \u00bfLO SABIAS?\n\nLos jugadores de Universidad Cat\u00f3lica - no solo inventaron las fotos en el camar\u00edn, tambi\u00e9n crearon el popular - c\u00e1\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lagazul11","name":"\u300bLucas\u300a","id":399061132,"id_str":"399061132","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175598513,"id_str":"175598513","name":"Felipe - Bustamante","screen_name":"felipeduardobus","location":"Talcahuano","description":"Estudiante - de Quimica y Farmacia, en la Universidad de concepcion y Azul de corazon","url":"https:\/\/t.co\/87S9XTjfrt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/87S9XTjfrt","expanded_url":"https:\/\/www.instagram.com\/felipeduardobustamante\/?hl=es-la","display_url":"instagram.com\/felipeduardobu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":422,"friends_count":324,"listed_count":0,"created_at":"Sat - Aug 07 01:57:22 +0000 2010","favourites_count":10045,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4702,"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\/1223608696153894913\/RuVZYhCT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223608696153894913\/RuVZYhCT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175598513\/1578404137","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:04:33 +0000 2020","id":1234449511642124290,"id_str":"1234449511642124290","text":"\u00bfLO - SABIAS?\n\nLos jugadores de Universidad Cat\u00f3lica no solo inventaron las - fotos en el camar\u00edn, tambi\u00e9n crearon el p\u2026 https:\/\/t.co\/hiyimzqnxE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hiyimzqnxE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234449511642124290","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":399061132,"id_str":"399061132","name":"\u300bLucas\u300a","screen_name":"lagazul11","location":"","description":"#VamosLaU - \u2022 De calcet\u00edn y chalas a la gala universal de la decencia.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":743,"friends_count":329,"listed_count":5,"created_at":"Wed - Oct 26 22:58:28 +0000 2011","favourites_count":21770,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27625,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1234605441692381186\/CXBZbvL8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234605441692381186\/CXBZbvL8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/399061132\/1583188043","profile_link_color":"DD2E44","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234289288461901824,"quoted_status_id_str":"1234289288461901824","quoted_status":{"created_at":"Mon - Mar 02 01:27:53 +0000 2020","id":1234289288461901824,"id_str":"1234289288461901824","text":"Cuando - lo compras por Aliexpress \/ Cuando te llega a la casa \ud83d\udca9 https:\/\/t.co\/o4MiVpsn3z","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234289160766312448,"id_str":"1234289160766312448","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/ESETc8GXUAAjW6-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESETc8GXUAAjW6-.jpg","url":"https:\/\/t.co\/o4MiVpsn3z","display_url":"pic.twitter.com\/o4MiVpsn3z","expanded_url":"https:\/\/twitter.com\/NoContextCDUC\/status\/1234289288461901824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1176,"h":575,"resize":"fit"},"small":{"w":680,"h":332,"resize":"fit"},"large":{"w":1176,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234289160766312448,"id_str":"1234289160766312448","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/ESETc8GXUAAjW6-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESETc8GXUAAjW6-.jpg","url":"https:\/\/t.co\/o4MiVpsn3z","display_url":"pic.twitter.com\/o4MiVpsn3z","expanded_url":"https:\/\/twitter.com\/NoContextCDUC\/status\/1234289288461901824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1176,"h":575,"resize":"fit"},"small":{"w":680,"h":332,"resize":"fit"},"large":{"w":1176,"h":575,"resize":"fit"}}},{"id":1234289177396760577,"id_str":"1234289177396760577","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/ESETd6DX0AE4d1i.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESETd6DX0AE4d1i.png","url":"https:\/\/t.co\/o4MiVpsn3z","display_url":"pic.twitter.com\/o4MiVpsn3z","expanded_url":"https:\/\/twitter.com\/NoContextCDUC\/status\/1234289288461901824\/photo\/1","type":"photo","sizes":{"small":{"w":576,"h":680,"resize":"fit"},"medium":{"w":706,"h":833,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":706,"h":833,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874997599559876608,"id_str":"874997599559876608","name":"No - Context Universidad Cat\u00f3lica","screen_name":"NoContextCDUC","location":"","description":"#LosCruzados - sigo a todos de vuelta","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1087,"friends_count":1673,"listed_count":5,"created_at":"Wed - Jun 14 14:30:59 +0000 2017","favourites_count":329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":205,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224855731041656832\/Kssc5ERd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224855731041656832\/Kssc5ERd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874997599559876608\/1580863339","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":67,"favorite_count":294,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":141,"favorite_count":394,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1234289288461901824,"quoted_status_id_str":"1234289288461901824","retweet_count":141,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569775509506,"id_str":"1234518569775509506","text":"RT - @AiolaVirella: Prepare your work-from-home kits now and ask about leave policies. - https:\/\/t.co\/1npwu28Dpf via @HuffPostLife","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AiolaVirella","name":"Aiola - Virella","id":28433682,"id_str":"28433682","indices":[3,16]},{"screen_name":"HuffPostLife","name":"HuffPost - Life","id":24569636,"id_str":"24569636","indices":[113,126]}],"urls":[{"url":"https:\/\/t.co\/1npwu28Dpf","expanded_url":"https:\/\/www.huffpost.com\/entry\/work-during-coronavirus-outbreak_l_5e57eb5ac5b6450a30bb49f5?utm_campaign=share_twitter&ncid=engmodushpmg00000004","display_url":"huffpost.com\/entry\/work-dur\u2026","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110312945,"id_str":"110312945","name":"Pedro - Bosque P\u00e9rez","screen_name":"pbosque1","location":"San Juan, Puerto Rico","description":"Reportero - multimedios con m\u00e1s de 20 a\u00f1os de experiencia en El Nuevo D\u00eda, - Agencia de Prensa Espa\u00f1ola EFE, Di\u00e1logo y Radio UPR. Correo: bosquepedrof@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1733,"friends_count":1829,"listed_count":34,"created_at":"Mon - Feb 01 03:26:54 +0000 2010","favourites_count":16160,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39927,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930128994850234370\/o9Kyk70C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930128994850234370\/o9Kyk70C_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:30:09 +0000 2020","id":1234471054531321856,"id_str":"1234471054531321856","text":"Prepare - your work-from-home kits now and ask about leave policies. https:\/\/t.co\/1npwu28Dpf - via @HuffPostLife","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HuffPostLife","name":"HuffPost - Life","id":24569636,"id_str":"24569636","indices":[95,108]}],"urls":[{"url":"https:\/\/t.co\/1npwu28Dpf","expanded_url":"https:\/\/www.huffpost.com\/entry\/work-during-coronavirus-outbreak_l_5e57eb5ac5b6450a30bb49f5?utm_campaign=share_twitter&ncid=engmodushpmg00000004","display_url":"huffpost.com\/entry\/work-dur\u2026","indices":[67,90]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":28433682,"id_str":"28433682","name":"Aiola - Virella","screen_name":"AiolaVirella","location":"San Juan, Puerto Rico","description":"Periodista - de profesi\u00f3n y vocaci\u00f3n. Editora en Jefe del peri\u00f3dico Metro - Puerto Rico. Las opiniones expresadas no representan la l\u00ednea editorial - de Metro.","url":"http:\/\/t.co\/mlQfEmhzfm","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/mlQfEmhzfm","expanded_url":"http:\/\/www.metro.pr","display_url":"metro.pr","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":16480,"friends_count":1147,"listed_count":155,"created_at":"Thu - Apr 02 22:16:49 +0000 2009","favourites_count":1461,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":35433,"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\/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\/1161082727711617024\/CfdgQjYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161082727711617024\/CfdgQjYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28433682\/1400425075","profile_link_color":"9266CC","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"},"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,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569767112706,"id_str":"1234518569767112706","text":"RT - @tonyposnanski: Listen, I don\u2019t believe in making the Coronavirus political. - I\u2019m just saying that I don\u2019t want a man who can\u2019t close an\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tonyposnanski","name":"Tony - Posnanski","id":17642747,"id_str":"17642747","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2933849421,"id_str":"2933849421","name":"HE''S - IMPEACHED!!!","screen_name":"devdev324","location":"Long Island","description":"Shell-shocked - since 2016 Trump is unfit! #Resistance Dogs Rule! #VoteBlueNoMatterWho","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1775,"friends_count":2414,"listed_count":32,"created_at":"Sat - Dec 20 17:00:23 +0000 2014","favourites_count":58353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":91807,"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\/1106372142348861440\/wHetFLP4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1106372142348861440\/wHetFLP4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2933849421\/1583093123","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:31:31 +0000 2020","id":1234516697278750722,"id_str":"1234516697278750722","text":"Listen, - I don\u2019t believe in making the Coronavirus political. I\u2019m just saying - that I don\u2019t want a man who can\u2019t clos\u2026 https:\/\/t.co\/jbbaeAjf7i","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jbbaeAjf7i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234516697278750722","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17642747,"id_str":"17642747","name":"Tony - Posnanski","screen_name":"tonyposnanski","location":"","description":"Father - of a future MLBer. Owner of Tony\u2019s Sports Card w\/ great auctions on - EBay here https:\/\/t.co\/6qCnSLxerj. Your 87-93 sports cards are garbage.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/6qCnSLxerj","expanded_url":"https:\/\/ebay.com\/usr\/tonyposnanski","display_url":"ebay.com\/usr\/tonyposnan\u2026","indices":[85,108]}]}},"protected":false,"followers_count":222186,"friends_count":1349,"listed_count":2284,"created_at":"Wed - Nov 26 04:57:28 +0000 2008","favourites_count":41800,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":122213,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234470722342395904\/meaDlXIE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234470722342395904\/meaDlXIE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17642747\/1583180891","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":618,"favorite_count":5035,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":618,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569762918400,"id_str":"1234518569762918400","text":"RT - @C_3C_3: Follow along...\n\nSen. Murphy secretly met Iranian leaders to undermine - Trump.\n\nIranian leaders are now dying from the Coronavir\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"C_3C_3","name":"C3","id":2327400218,"id_str":"2327400218","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":827672907232968704,"id_str":"827672907232968704","name":"Ladyawake\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f","screen_name":"Ladyawake1","location":"","description":"Trump - is saving America! God is with us, stay strong. I love my husband, family, - friends, and fur babies! \ud83d\ude4f\ud83c\uddfa\ud83c\uddf8\ud83d\ude4f#KAG - #TRUMP2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2784,"friends_count":3144,"listed_count":1,"created_at":"Sat - Feb 04 00:19:33 +0000 2017","favourites_count":86989,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":79017,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/901066764544561153\/zpehu494_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/901066764544561153\/zpehu494_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:37:32 +0000 2020","id":1234503113081597953,"id_str":"1234503113081597953","text":"Follow - along...\n\nSen. Murphy secretly met Iranian leaders to undermine Trump.\n\nIranian - leaders are now dying from t\u2026 https:\/\/t.co\/aFU3LEkrNv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aFU3LEkrNv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503113081597953","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2327400218,"id_str":"2327400218","name":"C3","screen_name":"C_3C_3","location":"","description":"Turds - will get instablocked (exception Catturd)","url":"https:\/\/t.co\/Z5RPBMXj0L","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z5RPBMXj0L","expanded_url":"https:\/\/www.instagram.com\/c_3c_3\/","display_url":"instagram.com\/c_3c_3\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":72577,"friends_count":15441,"listed_count":272,"created_at":"Tue - Feb 04 16:44:02 +0000 2014","favourites_count":119024,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38999,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/945294827742224385\/2g_sshAu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945294827742224385\/2g_sshAu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2327400218\/1581002882","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1536,"favorite_count":2511,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1536,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569720930304,"id_str":"1234518569720930304","text":"RT - @AiphanMarcel: Quand on sait que le principal foyer de #coronavirus vient - des militaires qu\u2019elle a envoy\u00e9 chercher les expatri\u00e9s de Wuha\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[58,70]}],"symbols":[],"user_mentions":[{"screen_name":"AiphanMarcel","name":"Marcel - Aiphan","id":1117128874389835776,"id_str":"1117128874389835776","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1196045398571442176,"id_str":"1196045398571442176","name":"Pitniff95","screen_name":"pitniff95","location":"Ile-de-France, - France helas","description":"Le paranormal est mon chemin, les esprits mes - guides.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":88,"listed_count":0,"created_at":"Sun - Nov 17 12:40:32 +0000 2019","favourites_count":16677,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196049707618967554\/G-P9TOYk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196049707618967554\/G-P9TOYk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1196045398571442176\/1580501978","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 23:32:36 +0000 2020","id":1234260276683382784,"id_str":"1234260276683382784","text":"Quand - on sait que le principal foyer de #coronavirus vient des militaires qu\u2019elle - a envoy\u00e9 chercher les expatri\u00e9s d\u2026 https:\/\/t.co\/5kjS96mC6l","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[40,52]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5kjS96mC6l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234260276683382784","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1117128874389835776,"id_str":"1117128874389835776","name":"Marcel - Aiphan","screen_name":"AiphanMarcel","location":"Marseille, France","description":"Il - n''y a que deux partis, l''Ordre et le Progr\u00e8s. Je n''aime pas l''ordre.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15540,"friends_count":2848,"listed_count":94,"created_at":"Sat - Apr 13 18:14:13 +0000 2019","favourites_count":25192,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15789,"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\/1126469536402890752\/ClAt34bF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126469536402890752\/ClAt34bF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1117128874389835776\/1576604326","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":706,"favorite_count":1266,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":706,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569683124224,"id_str":"1234518569683124224","text":"RT - @heraldodemexico: La Bolsa Mexicana de Valores (BMV) abri\u00f3 la sesi\u00f3n - con un avance de 0.51 por ciento. \n\nhttps:\/\/t.co\/XKiBvqng4m","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heraldodemexico","name":"El - Heraldo de M\u00e9xico","id":846899281806082053,"id_str":"846899281806082053","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/XKiBvqng4m","expanded_url":"https:\/\/heraldodemexico.com.mx\/mer-k-2\/bolsa-registra-avance-pero-peso-mantiene-las-perdidas-en-la-apertura-coronavirus-mercados-financieros-dolar-tipo-cambio-2-marzo\/","display_url":"heraldodemexico.com.mx\/mer-k-2\/bolsa-\u2026","indices":[108,131]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":426920984,"id_str":"426920984","name":"cordero26","screen_name":"quevedodi26","location":"M\u00e9xico","description":"","url":"https:\/\/t.co\/lQfHnjCJUd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lQfHnjCJUd","expanded_url":"http:\/\/Solomundoz.wordpress.com","display_url":"Solomundoz.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":724,"listed_count":0,"created_at":"Fri - Dec 02 21:39:19 +0000 2011","favourites_count":108,"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":"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\/512391504933830657\/nXuDkO_Z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512391504933830657\/nXuDkO_Z_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426920984\/1410998655","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:00 +0000 2020","id":1234517824762191873,"id_str":"1234517824762191873","text":"La - Bolsa Mexicana de Valores (BMV) abri\u00f3 la sesi\u00f3n con un avance de - 0.51 por ciento. \n\nhttps:\/\/t.co\/XKiBvqng4m","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XKiBvqng4m","expanded_url":"https:\/\/heraldodemexico.com.mx\/mer-k-2\/bolsa-registra-avance-pero-peso-mantiene-las-perdidas-en-la-apertura-coronavirus-mercados-financieros-dolar-tipo-cambio-2-marzo\/","display_url":"heraldodemexico.com.mx\/mer-k-2\/bolsa-\u2026","indices":[87,110]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":846899281806082053,"id_str":"846899281806082053","name":"El - Heraldo de M\u00e9xico","screen_name":"heraldodemexico","location":"","description":"Somos - Heraldo Media Group, la evoluci\u00f3n de esta casa editorial en una multiplataforma - que integra a un diario impreso, digital, televisi\u00f3n y radio.","url":"https:\/\/t.co\/TZqIzTUNZw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TZqIzTUNZw","expanded_url":"http:\/\/heraldodemexico.com.mx","display_url":"heraldodemexico.com.mx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":182305,"friends_count":895,"listed_count":874,"created_at":"Wed - Mar 29 01:38:18 +0000 2017","favourites_count":732,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":161618,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186266713207267329\/BZ2L1JqS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186266713207267329\/BZ2L1JqS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/846899281806082053\/1582403679","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"es"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569620312064,"id_str":"1234518569620312064","text":"RT - @yumcoconutmilk: I really hate this country. $3,000 to get tested for the - coronavirus, bc they wanted to reject the WHO\u2019s test so they c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yumcoconutmilk","name":"nylah - burton","id":703052849039675393,"id_str":"703052849039675393","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":977008326113415171,"id_str":"977008326113415171","name":"Bogwolf","screen_name":"prairievampire","location":"Ohio, - USA","description":"Straum \u2606 23 \u2606 Taurus \u2606 Queer affffffff","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":709,"listed_count":1,"created_at":"Fri - Mar 23 02:25:11 +0000 2018","favourites_count":6180,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9842,"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\/1220768025735049216\/ZAllz663_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220768025735049216\/ZAllz663_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/977008326113415171\/1572024327","profile_link_color":"3F7C5C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 16:52:32 +0000 2020","id":1234159596379529216,"id_str":"1234159596379529216","text":"I - really hate this country. $3,000 to get tested for the coronavirus, bc they - wanted to reject the WHO\u2019s test so th\u2026 https:\/\/t.co\/jKUj9JPPCt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jKUj9JPPCt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234159596379529216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703052849039675393,"id_str":"703052849039675393","name":"nylah - burton","screen_name":"yumcoconutmilk","location":"Washington, DC ","description":"Writer - | race, climate, mental health | words @NYMag @Essence @zoramag @byshondaland - @TheNation @bustle @Independent | \u201coverwhelming Aries energy\u201d","url":"https:\/\/t.co\/rcfUUE7kM1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rcfUUE7kM1","expanded_url":"https:\/\/nylahburton.contently.com\/","display_url":"nylahburton.contently.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16427,"friends_count":3022,"listed_count":169,"created_at":"Fri - Feb 26 03:03:56 +0000 2016","favourites_count":37150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16924,"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\/1212065411816136704\/EqCukNXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212065411816136704\/EqCukNXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703052849039675393\/1561545197","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50649,"favorite_count":261081,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":50649,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569527889926,"id_str":"1234518569527889926","text":"RT - @bardessdmdenton: Italy cancels last 2 days of Venice Carnival because of - #CoronavirusOutbreak \nThis week I go to Genoa, invited by some\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronavirusOutbreak","indices":[77,97]}],"symbols":[],"user_mentions":[{"screen_name":"bardessdmdenton","name":"D - M Denton - Author and Artist","id":186080087,"id_str":"186080087","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.akratisaxena.com\" rel=\"nofollow\"\u003ecorona_analysis\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":369315889,"id_str":"369315889","name":"Akrati - Saxena","screen_name":"s_akrati","location":"Singapore","description":"Research - Fellow at NUS, Singapore, Ph.D. from IIT\n\n#feminist, #Data_Scientist, #python\n\nfounder - & M.D. @RightApprise\n\nCurrently working on coronavirus dataset","url":"https:\/\/t.co\/4iBoy81Y2g","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4iBoy81Y2g","expanded_url":"http:\/\/www.akratisaxena.com","display_url":"akratisaxena.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":2448,"listed_count":23,"created_at":"Wed - Sep 07 04:23:17 +0000 2011","favourites_count":890,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20781,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/939804876514533376\/sEb4CbaU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/939804876514533376\/sEb4CbaU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369315889\/1514216566","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 25 21:15:17 +0000 2020","id":1232413781252329472,"id_str":"1232413781252329472","text":"Italy - cancels last 2 days of Venice Carnival because of #CoronavirusOutbreak \nThis - week I go to Genoa, invited by s\u2026 https:\/\/t.co\/kP167o2WwU","truncated":true,"entities":{"hashtags":[{"text":"CoronavirusOutbreak","indices":[56,76]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kP167o2WwU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1232413781252329472","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":186080087,"id_str":"186080087","name":"D - M Denton - Author and Artist","screen_name":"bardessdmdenton","location":"Northeastern - USA","description":"Author, artist. #ATTMP, #LiteraryFiction, #HistoricalFiction, - #KindleShorts, #Poetry, #Illustrator, #BaroqueMusic, #WroxtonWriters, #Bronte200","url":"http:\/\/t.co\/Q8nbfvCHko","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Q8nbfvCHko","expanded_url":"http:\/\/bardessdmdenton.wordpress.com\/","display_url":"bardessdmdenton.wordpress.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1885,"friends_count":1436,"listed_count":316,"created_at":"Thu - Sep 02 14:53:05 +0000 2010","favourites_count":9472,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39257,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912736258291650560\/QacC1hMy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912736258291650560\/QacC1hMy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/186080087\/1580494149","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":17,"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569385414658,"id_str":"1234518569385414658","text":"RT - @RoanaAi: El coronavirus y la sociedad de la mentira global https:\/\/t.co\/WeKMaqfsQr - v\u00eda @nuevatribuna","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoanaAi","name":"Ana - Isabel Jimenez","id":307525811,"id_str":"307525811","indices":[3,11]},{"screen_name":"nuevatribuna","name":"nuevatribuna.es - #Igualdad","id":18556155,"id_str":"18556155","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/WeKMaqfsQr","expanded_url":"https:\/\/www.nuevatribuna.es\/opinion\/pedro-luis-angosto\/coronavirus-sociedad-mentira-global\/20200226141141171510.html","display_url":"nuevatribuna.es\/opinion\/pedro-\u2026","indices":[63,86]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":306510800,"id_str":"306510800","name":"Sallyumquin","screen_name":"MMadreselva","location":"","description":"...que - no se hagan callo las cosas ni en el alma ni en el cuerpo...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":847,"friends_count":1008,"listed_count":34,"created_at":"Sat - May 28 00:47:05 +0000 2011","favourites_count":20716,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47297,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/707400764411551744\/JUaMsyqZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/707400764411551744\/JUaMsyqZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/306510800\/1467669516","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:38 +0000 2020","id":1234518486451474432,"id_str":"1234518486451474432","text":"El - coronavirus y la sociedad de la mentira global https:\/\/t.co\/WeKMaqfsQr - v\u00eda @nuevatribuna","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nuevatribuna","name":"nuevatribuna.es - #Igualdad","id":18556155,"id_str":"18556155","indices":[78,91]}],"urls":[{"url":"https:\/\/t.co\/WeKMaqfsQr","expanded_url":"https:\/\/www.nuevatribuna.es\/opinion\/pedro-luis-angosto\/coronavirus-sociedad-mentira-global\/20200226141141171510.html","display_url":"nuevatribuna.es\/opinion\/pedro-\u2026","indices":[50,73]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":307525811,"id_str":"307525811","name":"Ana - Isabel Jimenez","screen_name":"RoanaAi","location":"","description":"Solo - puede haber revoluci\u00f3n donde hay conciencia. Jean Jaur`es","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":238,"friends_count":311,"listed_count":11,"created_at":"Sun - May 29 20:04:22 +0000 2011","favourites_count":2676,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23776,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233528042385002496\/glJtuve9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233528042385002496\/glJtuve9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/307525811\/1465770187","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"es"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569385414656,"id_str":"1234518569385414656","text":"RT - @DeAnna4Congress: What was @SpeakerPelosi busy with last week that she didn\u2019t - schedule a vote on coronavirus funding?\n\nShe said they\u2019ll\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeAnna4Congress","name":"DeAnna - for Congress\ud83c\uddfa\ud83c\uddf8vs Nancy","id":16740433,"id_str":"16740433","indices":[3,19]},{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[30,44]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2213423701,"id_str":"2213423701","name":"Conservative_Nana","screen_name":"Conserve_Nana","location":"Texas, - USA","description":"Conservative Texan, mother, grandmother, proud Republican, - proud American, proud Veteran of USAF, and a PROUD DEPLORABLE","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":866,"friends_count":1095,"listed_count":1,"created_at":"Mon - Nov 25 02:59:10 +0000 2013","favourites_count":8590,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7827,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000787051271\/bc38077eb25cae1b60ca52de127e0e3b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000787051271\/bc38077eb25cae1b60ca52de127e0e3b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2213423701\/1572551720","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:18:45 +0000 2020","id":1234498385257721861,"id_str":"1234498385257721861","text":"What - was @SpeakerPelosi busy with last week that she didn\u2019t schedule a vote - on coronavirus funding?\n\nShe said they\u2019\u2026 https:\/\/t.co\/OZNoEtCLnN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[9,23]}],"urls":[{"url":"https:\/\/t.co\/OZNoEtCLnN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234498385257721861","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16740433,"id_str":"16740433","name":"DeAnna - for Congress\ud83c\uddfa\ud83c\uddf8vs Nancy","screen_name":"DeAnna4Congress","location":"San - Francisco, CA","description":"\ud83c\udf1fCongressional Candidate vs Nancy - Pelosi (CA-12)\ud83c\uddfa\ud83c\uddf8Republican\/Christian #MAGA \u27a1\ufe0f - See my PLATFORM, Donate. Join me in the fight of our lives!\ud83d\udc47\ud83c\udffd - I check DMs","url":"https:\/\/t.co\/sY6W5RWYWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sY6W5RWYWZ","expanded_url":"https:\/\/www.deannaforcongress.com","display_url":"deannaforcongress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":138994,"friends_count":63334,"listed_count":424,"created_at":"Tue - Oct 14 16:08:50 +0000 2008","favourites_count":26437,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12534,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D11A29","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\/1225268456162902016\/uow_e0Da_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225268456162902016\/uow_e0Da_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16740433\/1577728148","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5FAC2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3470,"favorite_count":6694,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3470,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569326727174,"id_str":"1234518569326727174","text":"que - ODIO desse novo coronavirus pq eu, viciada em \u00e1lcool em gel, n\u00e3o - vou conseguir encontrar os individuais nas farm\u00e1cias :(","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54402613,"id_str":"54402613","name":"arlinds","screen_name":"arlinds","location":"S\u00e3o - Paulo","description":"usem doleiras!!!","url":"https:\/\/t.co\/7ZWJSVNuwC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7ZWJSVNuwC","expanded_url":"http:\/\/instagram.com\/arlindsloc","display_url":"instagram.com\/arlindsloc","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2264,"friends_count":891,"listed_count":44,"created_at":"Tue - Jul 07 01:23:26 +0000 2009","favourites_count":24459,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":88747,"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\/1234461060800876544\/hFMIuGBE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234461060800876544\/hFMIuGBE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54402613\/1564666116","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","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"},"geo":null,"coordinates":null,"place":{"id":"68e019afec7d0ba5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/68e019afec7d0ba5.json","place_type":"city","name":"Sao - Paulo","full_name":"Sao Paulo, Brazil","country_code":"BR","country":"Brazil","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-46.826039,-24.008814],[-46.365052,-24.008814],[-46.365052,-23.356792],[-46.826039,-23.356792]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569288962049,"id_str":"1234518569288962049","text":"RT - @CGRVenezuela: \ud83d\udde3\ufe0f\ud83d\udce2 #CGR #TipDePrevenci\u00f3n | - Los coronavirus son una familia de virus que pueden causar enfermedades que - van desde formas\u2026","truncated":false,"entities":{"hashtags":[{"text":"CGR","indices":[22,26]},{"text":"TipDePrevenci\u00f3n","indices":[27,43]}],"symbols":[],"user_mentions":[{"screen_name":"CGRVenezuela","name":"CGR - Venezuela","id":313988546,"id_str":"313988546","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":455749342,"id_str":"455749342","name":"Contraloria - Cojedes","screen_name":"CECojedes","location":"San Carlos - Edo.Cojedes","description":"Contralor\u00eda - del estado Bolivariano de Cojedes\r\nFortaleciendo el Sistema Nacional de - Control Fiscal e Impulsando el Poder Popular...","url":"http:\/\/t.co\/c2r23p3rcY","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/c2r23p3rcY","expanded_url":"http:\/\/contraloriadecojedes.com","display_url":"contraloriadecojedes.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2016,"friends_count":191,"listed_count":13,"created_at":"Thu - Jan 05 13:31:31 +0000 2012","favourites_count":893,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25781,"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\/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\/762699586595069954\/_Y-4rhLS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/762699586595069954\/_Y-4rhLS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/455749342\/1549381607","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:09:15 +0000 2020","id":1234480895442214917,"id_str":"1234480895442214917","text":"\ud83d\udde3\ufe0f\ud83d\udce2 - #CGR #TipDePrevenci\u00f3n | Los coronavirus son una familia de virus que - pueden causar enfermedades que van desde f\u2026 https:\/\/t.co\/gcdjrWus95","truncated":true,"entities":{"hashtags":[{"text":"CGR","indices":[4,8]},{"text":"TipDePrevenci\u00f3n","indices":[9,25]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gcdjrWus95","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234480895442214917","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313988546,"id_str":"313988546","name":"CGR - Venezuela","screen_name":"CGRVenezuela","location":"Caracas","description":"La - Contralor\u00eda General de la Rep\u00fablica es el \u00f3rgano de control, - vigilancia y fiscalizaci\u00f3n de los ingresos, gastos, bienes p\u00fablicos - y bienes nacionales.","url":"http:\/\/t.co\/xGoaAZCojx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/xGoaAZCojx","expanded_url":"http:\/\/www.cgr.gob.ve","display_url":"cgr.gob.ve","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":14196,"friends_count":508,"listed_count":136,"created_at":"Thu - Jun 09 14:49:43 +0000 2011","favourites_count":87,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22229,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"175D90","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168574175038103552\/0x8ixw3G_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168574175038103552\/0x8ixw3G_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313988546\/1567444770","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569246957568,"id_str":"1234518569246957568","text":"RT - @IIHFHockey: The IIHF has cancelled six World Championship tournaments in - the Women''s and Men''s U18 category that were set to be held in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IIHFHockey","name":"IIHF","id":34895713,"id_str":"34895713","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":57414725,"id_str":"57414725","name":"Juuso - Leppilahti","screen_name":"JuusoLeppilahti","location":"Pori, Suomi","description":"#\u00e4ss\u00e4t - #NHLfi #serieafi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":176,"listed_count":9,"created_at":"Thu - Jul 16 19:00:51 +0000 2009","favourites_count":1010,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7607,"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\/764183894459645952\/5PnPRT4q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/764183894459645952\/5PnPRT4q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57414725\/1582128847","profile_link_color":"CB4154","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:18:46 +0000 2020","id":1234513490041352193,"id_str":"1234513490041352193","text":"The - IIHF has cancelled six World Championship tournaments in the Women''s and - Men''s U18 category that were set to be\u2026 https:\/\/t.co\/KBsgOSiHTv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KBsgOSiHTv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234513490041352193","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":34895713,"id_str":"34895713","name":"IIHF","screen_name":"IIHFHockey","location":"Zurich, - Switzerland","description":"Welcome to the official Twitter account of the - International Ice Hockey Federation. For live scores from our events also - follow @IIHFScores.","url":"http:\/\/t.co\/S5kqSK5OeT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/S5kqSK5OeT","expanded_url":"http:\/\/www.iihf.com","display_url":"iihf.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":168391,"friends_count":408,"listed_count":1803,"created_at":"Fri - Apr 24 10:38:35 +0000 2009","favourites_count":2435,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":27170,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"195A97","profile_background_image_url":"http:\/\/abs.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\/1111628976651489280\/vxVVJxGh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1111628976651489280\/vxVVJxGh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34895713\/1578652082","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B9C9E1","profile_text_color":"474747","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":225,"favorite_count":300,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":225,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569246916615,"id_str":"1234518569246916615","text":"RT - @itsJeffTiedrich: @realDonaldTrump bro last week you bragged that the coronavirus - was \"contained\" and that the number of cases was \"goin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"itsJeffTiedrich","name":"Jeff - Tiedrich","id":1009577803304656896,"id_str":"1009577803304656896","indices":[3,19]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[21,37]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1395150738,"id_str":"1395150738","name":"Michelle - \ud83c\udf0a\ud83c\udfb8\u270c\ud83c\udffc","screen_name":"NJLefty67","location":"New - Jersey, USA","description":"Guitarist Songwriter\/Score\/Composer - Bully - Breed Rescue Proud member of #TheResistance \u270c\ufe0f Thanks all Followers! - #FemaleMusician\n#FenderStrat\n#OriginalRock","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3401,"friends_count":4971,"listed_count":36,"created_at":"Wed - May 01 17:46:50 +0000 2013","favourites_count":132432,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":128082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191360735802281984\/Jj_UrfU7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191360735802281984\/Jj_UrfU7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1395150738\/1512693578","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:01:26 +0000 2020","id":1234463826550153216,"id_str":"1234463826550153216","text":"@realDonaldTrump - bro last week you bragged that the coronavirus was \"contained\" and that - the number of cases was \"g\u2026 https:\/\/t.co\/vwk2zFLs6M","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\/vwk2zFLs6M","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234463826550153216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234462291652993032,"in_reply_to_status_id_str":"1234462291652993032","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","user":{"id":1009577803304656896,"id_str":"1009577803304656896","name":"Jeff - Tiedrich","screen_name":"itsJeffTiedrich","location":"","description":"don''t - blame me, I voted for the email lady","url":"https:\/\/t.co\/ffCHQu1hps","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ffCHQu1hps","expanded_url":"https:\/\/www.patreon.com\/jefftiedrich","display_url":"patreon.com\/jefftiedrich","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":257629,"friends_count":109,"listed_count":1227,"created_at":"Wed - Jun 20 23:24:40 +0000 2018","favourites_count":9051,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16139,"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\/1009932396333031424\/8FzKlCfB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1009932396333031424\/8FzKlCfB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1009577803304656896\/1537733095","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":506,"favorite_count":4935,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":506,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569238630412,"id_str":"1234518569238630412","text":"RT - @Julietknows1: \ud83d\udd25Calls Grow to Quarantine Senator Chris Murphy after - Secret Meeting with #coronavirus Carriers from Iranian Regine\ud83d\udd25Why - ta\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[91,103]}],"symbols":[],"user_mentions":[{"screen_name":"Julietknows1","name":"Juliet.\ud83d\udc95","id":1049162319941517312,"id_str":"1049162319941517312","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1211070003799216128,"id_str":"1211070003799216128","name":"Sam - America \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","screen_name":"SamAmerica7","location":"Pennsylvania, - USA","description":"Here to support #Trump2020 #MAGA #2A @NRA #2ADefender - IFB","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2752,"friends_count":2824,"listed_count":0,"created_at":"Sat - Dec 28 23:43:17 +0000 2019","favourites_count":4795,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3184,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211075192925106178\/IquvhQjB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211075192925106178\/IquvhQjB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1211070003799216128\/1577577882","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:10:17 +0000 2020","id":1234496253813235717,"id_str":"1234496253813235717","text":"\ud83d\udd25Calls - Grow to Quarantine Senator Chris Murphy after Secret Meeting with #coronavirus - Carriers from Iranian Regine\ud83d\udd25\u2026 https:\/\/t.co\/HgOksUhUjB","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[73,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HgOksUhUjB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234496253813235717","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1049162319941517312,"id_str":"1049162319941517312","name":"Juliet.\ud83d\udc95","screen_name":"Julietknows1","location":"Chicago, - IL","description":"\ud83c\uddfa\ud83c\uddf8RETWEETED by @realDonaldTrump\ud83c\uddfa\ud83c\uddf8https:\/\/t.co\/L9tcLPV7MZ\u2764\ufe0fCLEAR - @GenFlynn \ud83c\uddfa\ud83c\uddf8#VoteRed\ud83c\uddfa\ud83c\uddf8MAGA\ud83c\uddfa\ud83c\uddf8Married - 18 times w\/a million kids\u2764\ufe0fNotre Dame\u2618\ufe0fMarquette","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/L9tcLPV7MZ","expanded_url":"http:\/\/RudyGiulianics.com","display_url":"RudyGiulianics.com","indices":[33,56]}]}},"protected":false,"followers_count":43391,"friends_count":40567,"listed_count":11,"created_at":"Mon - Oct 08 04:59:24 +0000 2018","favourites_count":103897,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":85223,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226600892079788032\/t64z5v3W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226600892079788032\/t64z5v3W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1049162319941517312\/1572028254","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":720,"favorite_count":707,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":720,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569234288643,"id_str":"1234518569234288643","text":"RT - @MrJones_tm: The fake news enemy of the people media are already trying to - create chaos by asking Trump if it is \"safe\" to be holding ra\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrJones_tm","name":"Mr. - Jones\u2122\ufe0f\ud83c\uddfa\ud83c\uddf8","id":1191364337631465474,"id_str":"1191364337631465474","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1149523585565786112,"id_str":"1149523585565786112","name":"\u4f0a\u9054 - \u767d\u9df9 DATE Hakutaka","screen_name":"New_Kiminonaha","location":"Japan","description":"\ud83c\uddef\ud83c\uddf5 #KAG\ud83c\uddfa\ud83c\uddf8#4MoreYears Nothing - is more important infinitely than to win again.That''s the bottom line. #Congrats\ud83c\uddec\ud83c\udde7#Save\ud83c\udde6\ud83c\uddfa@DiamondandSilk - (\u524dRossi_beni)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5880,"friends_count":4566,"listed_count":5,"created_at":"Fri - Jul 12 03:39:14 +0000 2019","favourites_count":81998,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15032,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233431050874834945\/Y8wVeWS4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233431050874834945\/Y8wVeWS4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1149523585565786112\/1580035117","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:25:22 +0000 2020","id":1234515151518388224,"id_str":"1234515151518388224","text":"The - fake news enemy of the people media are already trying to create chaos by - asking Trump if it is \"safe\" to be ho\u2026 https:\/\/t.co\/Z18oOpFyJr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Z18oOpFyJr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234515151518388224","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1191364337631465474,"id_str":"1191364337631465474","name":"Mr. - Jones\u2122\ufe0f\ud83c\uddfa\ud83c\uddf8","screen_name":"MrJones_tm","location":"","description":"\ud83c\uddfa\ud83c\uddf8 - PROUD American \ud83c\uddfa\ud83c\uddf8 Brain Aneurysm Survivor \ud83e\udde0\ud83d\ude4f - Common Sense Enthusiast \ud83e\uddd0 Political Loud Mouth \ud83d\ude1c 110% - TRUMP \ud83c\uddfa\ud83c\uddf8 SUPER ELITE #Cult45","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33016,"friends_count":19890,"listed_count":35,"created_at":"Mon - Nov 04 14:39:33 +0000 2019","favourites_count":40446,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16102,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191367126470287361\/F86Xor9U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191367126470287361\/F86Xor9U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1191364337631465474\/1572879033","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":136,"favorite_count":290,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":136,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569192448002,"id_str":"1234518569192448002","text":"El - GP de Tailandia tambi\u00e9n se aplaza por el\u00a0coronavirus https:\/\/t.co\/7wkt6EfJVt - https:\/\/t.co\/97dfOriBuQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7wkt6EfJVt","expanded_url":"https:\/\/motociclismoyrocknroll.com\/2020\/03\/02\/el-gp-de-tailandia-tambien-se-aplaza-por-el-coronavirus\/","display_url":"motociclismoyrocknroll.com\/2020\/03\/02\/el-\u2026","indices":[56,79]}],"media":[{"id":1234518567497949185,"id_str":"1234518567497949185","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkGKxW4AE9s0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkGKxW4AE9s0J.jpg","url":"https:\/\/t.co\/97dfOriBuQ","display_url":"pic.twitter.com\/97dfOriBuQ","expanded_url":"https:\/\/twitter.com\/YRocknroll\/status\/1234518569192448002\/photo\/1","type":"photo","sizes":{"small":{"w":619,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":619,"h":349,"resize":"fit"},"medium":{"w":619,"h":349,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518567497949185,"id_str":"1234518567497949185","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkGKxW4AE9s0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkGKxW4AE9s0J.jpg","url":"https:\/\/t.co\/97dfOriBuQ","display_url":"pic.twitter.com\/97dfOriBuQ","expanded_url":"https:\/\/twitter.com\/YRocknroll\/status\/1234518569192448002\/photo\/1","type":"photo","sizes":{"small":{"w":619,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":619,"h":349,"resize":"fit"},"medium":{"w":619,"h":349,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.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,"user":{"id":1189674685740601344,"id_str":"1189674685740601344","name":"Motociclismo - & Rock N Roll","screen_name":"YRocknroll","location":"Hermosillo, Sonora","description":"Un - esfuerzo radiof\u00f3nico de motociclistas para motociclistas 106.7FM Pol\u00edtica - y Rock n Roll Radio\nSiguenos en FB https:\/\/t.co\/PNEcXtf9Kv","url":"https:\/\/t.co\/nTo6Sy7QGG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nTo6Sy7QGG","expanded_url":"https:\/\/motociclismoyrocknroll.com\/","display_url":"motociclismoyrocknroll.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/PNEcXtf9Kv","expanded_url":"https:\/\/www.facebook.com\/motociclismoyrocknroll","display_url":"facebook.com\/motociclismoyr\u2026","indices":[112,135]}]}},"protected":false,"followers_count":21,"friends_count":33,"listed_count":0,"created_at":"Wed - Oct 30 22:45:35 +0000 2019","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":857,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232035012872146957\/8mUdkxht_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232035012872146957\/8mUdkxht_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1189674685740601344\/1572806472","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569183957000,"id_str":"1234518569183957000","text":"RT - @klustout: After widespread unrest in 2019, dissent in #HongKong is evolving - in the #coronavirus era. \n\n(And authorities aim to arrest t\u2026","truncated":false,"entities":{"hashtags":[{"text":"HongKong","indices":[58,67]},{"text":"coronavirus","indices":[87,99]}],"symbols":[],"user_mentions":[{"screen_name":"klustout","name":"Kristie - Lu Stout\u270c\ud83c\udffd","id":22587869,"id_str":"22587869","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1143669515089133568,"id_str":"1143669515089133568","name":"Ivan - Wong","screen_name":"IvanWon91558509","location":"Hong Kong","description":"KFHG - SDGM \u9999\u6e2f\u4eba\u52a0\u6cb9 #fightforfreedom #standwithHK #followbackHongKong","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":113,"listed_count":0,"created_at":"Tue - Jun 25 23:57:15 +0000 2019","favourites_count":2211,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2243,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1182341365079789569\/PHu0sAaG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182341365079789569\/PHu0sAaG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 01:57:00 +0000 2020","id":1234296619127828486,"id_str":"1234296619127828486","text":"After - widespread unrest in 2019, dissent in #HongKong is evolving in the #coronavirus - era. \n\n(And authorities aim t\u2026 https:\/\/t.co\/RYhlFOE1Fz","truncated":true,"entities":{"hashtags":[{"text":"HongKong","indices":[44,53]},{"text":"coronavirus","indices":[73,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RYhlFOE1Fz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234296619127828486","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22587869,"id_str":"22587869","name":"Kristie - Lu Stout\u270c\ud83c\udffd","screen_name":"klustout","location":"Hong Kong","description":"Yep, - I''m an anchor\/correspondent for CNN. \ud83c\udfa5\ud83d\udcdd\ud83c\udf0f| - Instagram: @klustout | Name my momma gave me: \u9b6f\u53ef\u8482","url":"https:\/\/t.co\/708c7Njkwz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/708c7Njkwz","expanded_url":"http:\/\/instagram.com\/klustout","display_url":"instagram.com\/klustout","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":164757,"friends_count":3026,"listed_count":2617,"created_at":"Tue - Mar 03 04:56:18 +0000 2009","favourites_count":9599,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":22830,"lang":null,"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\/1179213135212945408\/y-GtBNde_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179213135212945408\/y-GtBNde_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22587869\/1457438751","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1749,"favorite_count":1813,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1749,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518569070874632,"id_str":"1234518569070874632","text":"\"Ahh - the Ol'' Pretend I''m President\" Routine: Mega-Billionaire Bloomberg Buys - Prime Time Slot to Address Nation on C\u2026 https:\/\/t.co\/KyxMpPqjoR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KyxMpPqjoR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518569070874632","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":992109555483103232,"id_str":"992109555483103232","name":"juju''s - other","screen_name":"smokesdad28","location":"texas","description":"JUJU''S - BU PRU VETTED NICE LADY UNLESS UR A TROPHY HNTR JINES LEFT. I''M STILL HERE. - CRITTER LVR. PRO CLIMATE 4 ALL KIDS. MAIN ACCT@jjsmokkieBOY57","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14341,"friends_count":14224,"listed_count":3,"created_at":"Thu - May 03 18:32:05 +0000 2018","favourites_count":16852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53734,"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\/1057463467286773760\/wKFC-Ixa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057463467286773760\/wKFC-Ixa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/992109555483103232\/1541111709","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"},"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568802422784,"id_str":"1234518568802422784","text":"RT - @tedlieu: What is one of the best things you can do to avoid the flu and #coronavirus? - Stop touching your face.\n\nhttps:\/\/t.co\/N24MYxq82K\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[76,88]}],"symbols":[],"user_mentions":[{"screen_name":"tedlieu","name":"Ted - Lieu","id":21059255,"id_str":"21059255","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/N24MYxq82K","expanded_url":"https:\/\/www.nytimes.com\/2020\/03\/02\/well\/live\/coronavirus-spread-transmission-face-touching-hands.html?action=click&module=Top%20Stories&pgtype=Homepage","display_url":"nytimes.com\/2020\/03\/02\/wel\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":829840996447899648,"id_str":"829840996447899648","name":"Miracle - Man","screen_name":"Kimota1977","location":"Sane and Rational America","description":"America - 2017 - 2021 - watching the much maligned yet subtle art of governance as practiced - by a narcissistic Adderall addict with delusions of grandeur.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2049,"friends_count":3304,"listed_count":4,"created_at":"Thu - Feb 09 23:54:46 +0000 2017","favourites_count":245569,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":106401,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/916785470356549632\/nTsXvFpn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/916785470356549632\/nTsXvFpn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/829840996447899648\/1554946757","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:16:11 +0000 2020","id":1234512837025812484,"id_str":"1234512837025812484","text":"What - is one of the best things you can do to avoid the flu and #coronavirus? Stop - touching your face.\u2026 https:\/\/t.co\/0uzNey2Psi","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[63,75]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0uzNey2Psi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234512837025812484","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[103,126]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21059255,"id_str":"21059255","name":"Ted - Lieu","screen_name":"tedlieu","location":"California","description":"Husband - of Betty, the love of my life. Father of two great kids. USAF veteran. Member - of Congress. In that order. Also, I don''t take orders from Vladimir Putin.","url":"https:\/\/t.co\/YZX138uDSy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YZX138uDSy","expanded_url":"http:\/\/www.TedLieu.com","display_url":"TedLieu.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1249719,"friends_count":9791,"listed_count":7154,"created_at":"Tue - Feb 17 03:12:31 +0000 2009","favourites_count":50416,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":24085,"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\/537271043937673217\/3O1qePzP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537271043937673217\/3O1qePzP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21059255\/1485531357","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":623,"favorite_count":1681,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":623,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568756137984,"id_str":"1234518568756137984","text":"RT - @Mike_Pence: Today, I led a meeting of the White House Coronavirus Taskforce - at @HHSgov. Grateful for the work of @SecAzar, @Surgeon_Gen\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mike_Pence","name":"Mike - Pence","id":22203756,"id_str":"22203756","indices":[3,14]},{"screen_name":"HHSGov","name":"HHS.gov","id":44783853,"id_str":"44783853","indices":[83,90]},{"screen_name":"SecAzar","name":"Secretary - Alex Azar","id":956283913835614208,"id_str":"956283913835614208","indices":[117,125]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214008695559839744,"id_str":"1214008695559839744","name":"Mukul - Khan","screen_name":"MukulKh72213797","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":84,"listed_count":0,"created_at":"Mon - Jan 06 02:20:45 +0000 2020","favourites_count":12609,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12402,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214016167515344896\/v0nsXj3z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214016167515344896\/v0nsXj3z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214008695559839744\/1578279118","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 28 00:28:33 +0000 2020","id":1233187195684638720,"id_str":"1233187195684638720","text":"Today, - I led a meeting of the White House Coronavirus Taskforce at @HHSgov. Grateful - for the work of @SecAzar,\u2026 https:\/\/t.co\/ML3izZYyq7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HHSGov","name":"HHS.gov","id":44783853,"id_str":"44783853","indices":[67,74]},{"screen_name":"SecAzar","name":"Secretary - Alex Azar","id":956283913835614208,"id_str":"956283913835614208","indices":[101,109]}],"urls":[{"url":"https:\/\/t.co\/ML3izZYyq7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233187195684638720","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22203756,"id_str":"22203756","name":"Mike - Pence","screen_name":"Mike_Pence","location":"","description":"Vice President - of the United States","url":"https:\/\/t.co\/mZB2hymxC9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mZB2hymxC9","expanded_url":"http:\/\/www.DonaldJTrump.com","display_url":"DonaldJTrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4266556,"friends_count":33,"listed_count":8945,"created_at":"Fri - Feb 27 23:04:51 +0000 2009","favourites_count":710,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":7743,"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\/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\/1141422399268761600\/k6fHhBbh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141422399268761600\/k6fHhBbh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22203756\/1582042068","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D6D6D6","profile_text_color":"002248","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":872,"favorite_count":3202,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":872,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568722665472,"id_str":"1234518568722665472","text":"RT - @tonyposnanski: Listen, I don\u2019t believe in making the Coronavirus political. - I\u2019m just saying that I don\u2019t want a man who can\u2019t close an\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tonyposnanski","name":"Tony - Posnanski","id":17642747,"id_str":"17642747","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3345626650,"id_str":"3345626650","name":"Danielle - #DemCastOK #OneVoice1 \u270d\ufe0f\ud83c\udd98\ufe0f","screen_name":"DemInRedOK","location":"Bixby, - OK","description":"RT''s don''t always mean I agree. Happily married!!! with - 3 kids. Not here for flirting DMs\ud83d\udc4b. Democrat. Don''t just get \ud83d\ude21 - angry \ud83d\ude21, vote! \n\n#OneVoice1 #Z14","url":"https:\/\/t.co\/bgQOpIhcw8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bgQOpIhcw8","expanded_url":"https:\/\/www.instagram.com\/invites\/contact\/?i=1cbv19e9ssj15&utm_content=e2k1ogy","display_url":"instagram.com\/invites\/contac\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1162,"friends_count":1453,"listed_count":1,"created_at":"Thu - Jun 25 15:24:12 +0000 2015","favourites_count":51775,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30898,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234895700506415104\/tGsYsaoO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234895700506415104\/tGsYsaoO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3345626650\/1576302758","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:31:31 +0000 2020","id":1234516697278750722,"id_str":"1234516697278750722","text":"Listen, - I don\u2019t believe in making the Coronavirus political. I\u2019m just saying - that I don\u2019t want a man who can\u2019t clos\u2026 https:\/\/t.co\/jbbaeAjf7i","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jbbaeAjf7i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234516697278750722","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17642747,"id_str":"17642747","name":"Tony - Posnanski","screen_name":"tonyposnanski","location":"","description":"Father - of a future MLBer. Owner of Tony\u2019s Sports Card w\/ great auctions on - EBay here https:\/\/t.co\/6qCnSLxerj. Your 87-93 sports cards are garbage.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/6qCnSLxerj","expanded_url":"https:\/\/ebay.com\/usr\/tonyposnanski","display_url":"ebay.com\/usr\/tonyposnan\u2026","indices":[85,108]}]}},"protected":false,"followers_count":222186,"friends_count":1349,"listed_count":2284,"created_at":"Wed - Nov 26 04:57:28 +0000 2008","favourites_count":41800,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":122213,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234470722342395904\/meaDlXIE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234470722342395904\/meaDlXIE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17642747\/1583180891","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":618,"favorite_count":5035,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":618,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568693358595,"id_str":"1234518568693358595","text":"RT - @readycat: This @NPRGoatsandSoda feature is fabulous! People learn best when\n\u2705Language - is tailored to their level\n\u2705Images reinforce idea\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"readycat","name":"Catherine - Kane","id":767727,"id_str":"767727","indices":[3,12]},{"screen_name":"NPRGoatsandSoda","name":"NPR - Goats & Soda","id":707512656,"id_str":"707512656","indices":[19,35]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":707512656,"id_str":"707512656","name":"NPR - Goats & Soda","screen_name":"NPRGoatsandSoda","location":"Washington, D.C.","description":"NPR''s - global health and development blog. Sign up for our weekly newsletter: https:\/\/t.co\/zE91GT8x5k","url":"http:\/\/t.co\/fpi2bCbGPB","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/fpi2bCbGPB","expanded_url":"http:\/\/www.npr.org\/blogs\/goatsandsoda\/","display_url":"npr.org\/blogs\/goatsand\u2026","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/zE91GT8x5k","expanded_url":"http:\/\/n.pr\/1TAuCBq","display_url":"n.pr\/1TAuCBq","indices":[77,100]}]}},"protected":false,"followers_count":43507,"friends_count":2648,"listed_count":1258,"created_at":"Fri - Jul 20 17:34:21 +0000 2012","favourites_count":5610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":19021,"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\/707271210372087808\/98xjNlz__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/707271210372087808\/98xjNlz__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/707512656\/1493068757","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:21:50 +0000 2020","id":1234514260635668480,"id_str":"1234514260635668480","text":"This - @NPRGoatsandSoda feature is fabulous! People learn best when\n\u2705Language - is tailored to their level\n\u2705Images rein\u2026 https:\/\/t.co\/t1NmohLlrc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NPRGoatsandSoda","name":"NPR - Goats & Soda","id":707512656,"id_str":"707512656","indices":[5,21]}],"urls":[{"url":"https:\/\/t.co\/t1NmohLlrc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234514260635668480","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":767727,"id_str":"767727","name":"Catherine - Kane","screen_name":"readycat","location":"Geneva, Switzerland","description":"Communicator - & partnership builder discussing public health, risk comms, community, health - workforce | WHO worker | humanitarian, dog lover, hiker | my opinions","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2482,"friends_count":794,"listed_count":162,"created_at":"Mon - Feb 12 16:33:45 +0000 2007","favourites_count":5833,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6071,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/779291061902516225\/lyEIvAV7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/779291061902516225\/lyEIvAV7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/767727\/1484773263","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568596856833,"id_str":"1234518568596856833","text":"RT - @MajinBoochi: Coronavirus in NY? There''s only one person who can save us - https:\/\/t.co\/mlh1UtwaVm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MajinBoochi","name":"Boochi","id":1232473344026517504,"id_str":"1232473344026517504","indices":[3,15]}],"urls":[],"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234317952213803008,"source_status_id_str":"1234317952213803008","source_user_id":1232473344026517504,"source_user_id_str":"1232473344026517504"}]},"extended_entities":{"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234317952213803008,"source_status_id_str":"1234317952213803008","source_user_id":1232473344026517504,"source_user_id_str":"1232473344026517504"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":797089865569628161,"id_str":"797089865569628161","name":"HDC.","screen_name":"chasingHelenn","location":"Miami, - FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":185,"friends_count":407,"listed_count":0,"created_at":"Fri - Nov 11 14:53:27 +0000 2016","favourites_count":5033,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7650,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1120469301235003398\/qzoxup_K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1120469301235003398\/qzoxup_K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/797089865569628161\/1555975056","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 03:21:46 +0000 2020","id":1234317952213803008,"id_str":"1234317952213803008","text":"Coronavirus - in NY? There''s only one person who can save us https:\/\/t.co\/mlh1UtwaVm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232473344026517504,"id_str":"1232473344026517504","name":"Boochi","screen_name":"MajinBoochi","location":"Clouds","description":"Haha - funny without the haha","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":15,"listed_count":0,"created_at":"Wed - Feb 26 01:12:07 +0000 2020","favourites_count":10,"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\/1232531852000452609\/yHmJCnSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232531852000452609\/yHmJCnSP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26767,"favorite_count":93822,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":26767,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568596840449,"id_str":"1234518568596840449","text":"RT - @monicaguerzoni: Negli Usa il tampone per il #coronavirus pu\u00f3 costarti - 1400 euro (oltre 3000 se non hai un\u2019assicurazione). In Italia \u00e8 - g\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[48,60]}],"symbols":[],"user_mentions":[{"screen_name":"monicaguerzoni","name":"monica - guerzoni","id":384986685,"id_str":"384986685","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1169706060086751232,"id_str":"1169706060086751232","name":"ciambElla","screen_name":"ciamb_ella","location":"","description":"I - like to stay in bed. It''s too peopley outside.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":57,"listed_count":0,"created_at":"Thu - Sep 05 20:17:25 +0000 2019","favourites_count":2034,"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\/1184843511759298560\/DqU1wBqa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184843511759298560\/DqU1wBqa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169706060086751232\/1579102249","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 08:09:09 +0000 2020","id":1234390272219504640,"id_str":"1234390272219504640","text":"Negli - Usa il tampone per il #coronavirus pu\u00f3 costarti 1400 euro (oltre 3000 - se non hai un\u2019assicurazione). In Italia\u2026 https:\/\/t.co\/QfMHconcL3","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QfMHconcL3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234390272219504640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384986685,"id_str":"384986685","name":"monica - guerzoni","screen_name":"monicaguerzoni","location":"","description":"Corriere - della Sera","url":"https:\/\/t.co\/h9cEgjpww3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/h9cEgjpww3","expanded_url":"http:\/\/www.corriere.it","display_url":"corriere.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11944,"friends_count":1052,"listed_count":145,"created_at":"Tue - Oct 04 17:35:55 +0000 2011","favourites_count":1106,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3289,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165897274309906434\/lr7jPmdC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165897274309906434\/lr7jPmdC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384986685\/1511590979","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4534,"favorite_count":19382,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":4534,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568554975232,"id_str":"1234518568554975232","text":"RT - @BNODesk: BREAKING: Tajikistan has informed airlines that it will deny entry - to citizens of 35 countries due to coronavirus, including t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BNODesk","name":"BNO - Newsroom","id":2985479932,"id_str":"2985479932","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131761307,"id_str":"131761307","name":"Gopnik_Vhar","screen_name":"Vhar216","location":"Earth","description":"Gopnik - IT Student, Hobbyist Music Producer, PC Refurbishment, Shadilay #SlavRight - \u2626\ufe0f Intently watching the world go mad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":195,"listed_count":1,"created_at":"Sun - Apr 11 07:13:50 +0000 2010","favourites_count":74483,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13882,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1014330009215995908\/fdjLs9hn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1014330009215995908\/fdjLs9hn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131761307\/1542216338","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:22:58 +0000 2020","id":1234499446588592128,"id_str":"1234499446588592128","text":"BREAKING: - Tajikistan has informed airlines that it will deny entry to citizens of 35 - countries due to coronavirus,\u2026 https:\/\/t.co\/6SLZ07T0KN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6SLZ07T0KN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234499446588592128","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2985479932,"id_str":"2985479932","name":"BNO - Newsroom","screen_name":"BNODesk","location":"Worldwide","description":"Live - updates from the team behind BNO News. Currently covering coronavirus. For - our regular news coverage, follow our main account: @BNONews","url":"https:\/\/t.co\/by7zZiBwBe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/by7zZiBwBe","expanded_url":"http:\/\/www.bnonews.com","display_url":"bnonews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":118215,"friends_count":5,"listed_count":1677,"created_at":"Mon - Jan 19 09:28:21 +0000 2015","favourites_count":4034,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5192,"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\/882093872452698113\/kPkSnGlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882093872452698113\/kPkSnGlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2985479932\/1499139659","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":776,"favorite_count":1785,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":776,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568387129348,"id_str":"1234518568387129348","text":"RT - @yumcoconutmilk: I really hate this country. $3,000 to get tested for the - coronavirus, bc they wanted to reject the WHO\u2019s test so they c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yumcoconutmilk","name":"nylah - burton","id":703052849039675393,"id_str":"703052849039675393","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600454553,"id_str":"600454553","name":"Steph","screen_name":"StephG_18","location":"","description":"#TAMU18 - \u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":229,"friends_count":150,"listed_count":1,"created_at":"Tue - Jun 05 22:01:06 +0000 2012","favourites_count":4639,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23705,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181009259368198144\/An51HsaS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181009259368198144\/An51HsaS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600454553\/1552534739","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 16:52:32 +0000 2020","id":1234159596379529216,"id_str":"1234159596379529216","text":"I - really hate this country. $3,000 to get tested for the coronavirus, bc they - wanted to reject the WHO\u2019s test so th\u2026 https:\/\/t.co\/jKUj9JPPCt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jKUj9JPPCt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234159596379529216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703052849039675393,"id_str":"703052849039675393","name":"nylah - burton","screen_name":"yumcoconutmilk","location":"Washington, DC ","description":"Writer - | race, climate, mental health | words @NYMag @Essence @zoramag @byshondaland - @TheNation @bustle @Independent | \u201coverwhelming Aries energy\u201d","url":"https:\/\/t.co\/rcfUUE7kM1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rcfUUE7kM1","expanded_url":"https:\/\/nylahburton.contently.com\/","display_url":"nylahburton.contently.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16427,"friends_count":3022,"listed_count":169,"created_at":"Fri - Feb 26 03:03:56 +0000 2016","favourites_count":37150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16924,"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\/1212065411816136704\/EqCukNXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212065411816136704\/EqCukNXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703052849039675393\/1561545197","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50649,"favorite_count":261081,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":50649,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568378695680,"id_str":"1234518568378695680","text":"RT - @marcorubio: This isn\u2019t just propaganda, this guy actually believes Coronavirus - is a U.S.\/Jewish plot \n\nA reminder of why #Iraq will st\u2026","truncated":false,"entities":{"hashtags":[{"text":"Iraq","indices":[126,131]}],"symbols":[],"user_mentions":[{"screen_name":"marcorubio","name":"Marco - Rubio","id":15745368,"id_str":"15745368","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1169438480,"id_str":"1169438480","name":"Dep(LAURA)able - NEEDs a KIDNEY!","screen_name":"OldSalz","location":"NJ, USA","description":"END - Stage Kidney Dis.- AT&T 30 yr- Bach of Sci, Ferris U, Mi. Kidney Transplant - Wait Lists Penn Med, UMDNJ, Blood Type A+\nPlz be an Organ Donor!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9147,"friends_count":10057,"listed_count":126,"created_at":"Mon - Feb 11 16:55:25 +0000 2013","favourites_count":125839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":370925,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213851834726649856\/22ReYJtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213851834726649856\/22ReYJtQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 15:48:46 +0000 2020","id":1234143551640031238,"id_str":"1234143551640031238","text":"This - isn\u2019t just propaganda, this guy actually believes Coronavirus is a U.S.\/Jewish - plot \n\nA reminder of why #Iraq\u2026 https:\/\/t.co\/bNU8gW24b3","truncated":true,"entities":{"hashtags":[{"text":"Iraq","indices":[110,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bNU8gW24b3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234143551640031238","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15745368,"id_str":"15745368","name":"Marco - Rubio","screen_name":"marcorubio","location":"United States","description":"Follower - of Christ,Husband,Father, Proud AMERICAN, US Senator for Florida, #GatorNation - & #FinsUp. Official tweets @SenRubioPress & Campaign tweets @TeamMarco","url":"https:\/\/t.co\/xm4vZLmGV0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xm4vZLmGV0","expanded_url":"http:\/\/marcorubio.com","display_url":"marcorubio.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4084172,"friends_count":2572,"listed_count":16495,"created_at":"Wed - Aug 06 03:07:06 +0000 2008","favourites_count":1633,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":12625,"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\/1226153068712136704\/iUJux8LT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226153068712136704\/iUJux8LT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15745368\/1581172648","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234021467907657729,"quoted_status_id_str":"1234021467907657729","quoted_status":{"created_at":"Sun - Mar 01 07:43:39 +0000 2020","id":1234021467907657729,"id_str":"1234021467907657729","text":"Iraqi - Political Analyst Muhammad Sadeq Al-Hashemi: Coronavirus Is an American, Jewish - Plot to Reduce World Populati\u2026 https:\/\/t.co\/oFmdjj1YGi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oFmdjj1YGi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234021467907657729","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613267,"id_str":"19613267","name":"MEMRI","screen_name":"MEMRIReports","location":"Washington - D.C.","description":"The Official Twitter Account of the Washington D.C.-Based - Middle East Media Research Institute. Follow us also on Facebook: https:\/\/t.co\/uTKfr9nwhW","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/uTKfr9nwhW","expanded_url":"http:\/\/www.facebook.com\/memri.org","display_url":"facebook.com\/memri.org","indices":[125,148]}]}},"protected":false,"followers_count":58446,"friends_count":237,"listed_count":1419,"created_at":"Tue - Jan 27 20:17:55 +0000 2009","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":21355,"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\/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\/907250051524825088\/qqWuld87_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907250051524825088\/qqWuld87_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613267\/1558029527","profile_link_color":"990000","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":331,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":367,"favorite_count":1161,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234021467907657729,"quoted_status_id_str":"1234021467907657729","retweet_count":367,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568332558342,"id_str":"1234518568332558342","text":"En - esp\u00e9rant que le coronavirus emporte quelques putes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1209380825982222337,"id_str":"1209380825982222337","name":"Lily - Verrecchia","screen_name":"LilyVerrecchia","location":"Paris, France","description":"","url":"https:\/\/t.co\/BN20e1GbpU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BN20e1GbpU","expanded_url":"https:\/\/www.instagram.com\/lilyverrecchia\/","display_url":"instagram.com\/lilyverrecchia\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":10,"listed_count":0,"created_at":"Tue - Dec 24 07:50:41 +0000 2019","favourites_count":203,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":300,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229526035655356416\/udGuVYDe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229526035655356416\/udGuVYDe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1209380825982222337\/1580198201","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":23,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568244535301,"id_str":"1234518568244535301","text":"Panic - buying hits New York as first coronavirus case announced | Daily Mail Online - https:\/\/t.co\/volSTVku3D","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/volSTVku3D","expanded_url":"https:\/\/www.dailymail.co.uk\/news\/article-8064575\/Panic-buying-hits-New-York-coronavirus-case-NYC.html","display_url":"dailymail.co.uk\/news\/article-8\u2026","indices":[83,106]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2829564783,"id_str":"2829564783","name":"(((Gala - Esther)))","screen_name":"esther_gala","location":"At the Gates","description":"\ud83d\udd25\ud83d\udc4f\ud83d\ude4c\ud83c\udffc\ud83d\udc46\ud83c\udffcBIBLICAL - BORN-AGAIN BELIEVER IN JESUS CHRIST. SANCTIFIED, PURIFIED, JUSTIFIED & SOON - TO BE GLORIFIED. PROPERTY OF GOD- NO COMPROMISE.\ud83d\udc4f\ud83d\ude4c\ud83c\udffc\ud83d\udc46\ud83c\udffc\ud83d\udd25","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":813,"friends_count":1444,"listed_count":9,"created_at":"Tue - Oct 14 14:21:22 +0000 2014","favourites_count":548,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4849,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229730569065504768\/gE0zVqI__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229730569065504768\/gE0zVqI__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829564783\/1467357000","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518568190009344,"id_str":"1234518568190009344","text":"RT - @diagnosinghc: A Florida man, Osmel Martinez Azcue, who returned from China - and found himself becoming sick. Because of the risk of coro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"diagnosinghc","name":"Diagnosing - Healthcare","id":1201317785508466688,"id_str":"1201317785508466688","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1002909822227046403,"id_str":"1002909822227046403","name":"Farrel_B","screen_name":"FarrelB1","location":"London, - England","description":"I''m just here to be nosy\ud83d\udc40 Insta ~ cof.b - \ud83e\udd82 \u2022Model\/Athlete\u2022","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":88,"listed_count":0,"created_at":"Sat - Jun 02 13:48:29 +0000 2018","favourites_count":5438,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":233,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127294222628003840\/xg6r5CvI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127294222628003840\/xg6r5CvI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1002909822227046403\/1548096420","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:01:55 +0000 2020","id":1234494148108939264,"id_str":"1234494148108939264","text":"A - Florida man, Osmel Martinez Azcue, who returned from China and found himself - becoming sick. Because of the risk o\u2026 https:\/\/t.co\/FcdVLTJPLA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FcdVLTJPLA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234494148108939264","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1201317785508466688,"id_str":"1201317785508466688","name":"Diagnosing - Healthcare","screen_name":"diagnosinghc","location":"USA","description":"Join - us in inspiring grassroots movement for a better future of US Healthcare. - Our healthcare reform film - #DiagnosingHealthcare \ud83c\udfac - Coming in - Spring 2020.","url":"https:\/\/t.co\/4aAH7F1QLm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4aAH7F1QLm","expanded_url":"https:\/\/www.youtube.com\/watch?v=9JKCHpYDyAo","display_url":"youtube.com\/watch?v=9JKCHp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":1165,"listed_count":4,"created_at":"Mon - Dec 02 01:51:50 +0000 2019","favourites_count":301,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":439,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223521743102345217\/6lb-8bPt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223521743102345217\/6lb-8bPt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201317785508466688\/1578469149","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2817,"favorite_count":6404,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2817,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567992930311,"id_str":"1234518567992930311","text":"RT - @KlatuBaradaNiko: My home state of #Washington in the national news again.\n\n2nd - #coronavirus death happened 1 hour North of here.","truncated":false,"entities":{"hashtags":[{"text":"Washington","indices":[38,49]},{"text":"coronavirus","indices":[83,95]}],"symbols":[],"user_mentions":[{"screen_name":"KlatuBaradaNiko","name":"\u0f3b\u22c6\u227a - Martin \ud83c\udff3\ufe0f\u200d\ud83c\udf08 \u227b\u22c6\u0f3a","id":1388656794,"id_str":"1388656794","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38433277,"id_str":"38433277","name":"Carolyn\u2235.\u2022\ud83d\udca6.\ud83c\udf0a\u2022Resist\u2022\ud83c\udf0a.\ud83d\udca6\u2022.\u2235","screen_name":"EquallyBalance","location":" - Ethos \ud83d\udcab","description":"\u2022\u2728\u2235Synergize\u2235\u2728\u2022\nSay - what you mean\/mean what you say.\nIt is our Attitude & Behavior that informs\nall - others about who we truly are.\ud83c\udf3f\ud83d\udc8e\ud83e\udd8b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3768,"friends_count":4085,"listed_count":351,"created_at":"Thu - May 07 13:49:27 +0000 2009","favourites_count":55157,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":124984,"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\/1675794382\/Untitled_hidden_ufo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1675794382\/Untitled_hidden_ufo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38433277\/1475733953","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 04:02:35 +0000 2020","id":1234328221778268161,"id_str":"1234328221778268161","text":"My - home state of #Washington in the national news again.\n\n2nd #coronavirus - death happened 1 hour North of here. https:\/\/t.co\/ocLR8AlbEc","truncated":false,"entities":{"hashtags":[{"text":"Washington","indices":[17,28]},{"text":"coronavirus","indices":[62,74]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ocLR8AlbEc","expanded_url":"https:\/\/twitter.com\/TedLandK5\/status\/1234295518211133440","display_url":"twitter.com\/TedLandK5\/stat\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1388656794,"id_str":"1388656794","name":"\u0f3b\u22c6\u227a - Martin \ud83c\udff3\ufe0f\u200d\ud83c\udf08 \u227b\u22c6\u0f3a","screen_name":"KlatuBaradaNiko","location":"Olympia, - WA USA","description":"\u3020 Sa\/Su #TwitterTips \ud83d\udf2c #ThereIsNoPlanetB - \ud83c\udf0e #AnimalLover\ud83d\udc31 #Veteran\ud83e\udd85 #LGBT\ud83c\udff3\ufe0f\u200d\ud83c\udf08 - #F2M\ufe0f\u200d \u26a7\ufe0f #WeAreAllOneHumanRace \ud83d\udd96 Retired\ud83d\udcbbAnalyst - \ud83c\udf77\u200b\u2e0e Use #TwitterLists","url":"https:\/\/t.co\/U9eedIeKKB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/U9eedIeKKB","expanded_url":"https:\/\/sites.google.com\/view\/martin-f2m\/home","display_url":"sites.google.com\/view\/martin-f2\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":73609,"friends_count":73794,"listed_count":186,"created_at":"Mon - Apr 29 05:03:40 +0000 2013","favourites_count":312976,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":168336,"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\/1195785029495869440\/uNLu4ULF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195785029495869440\/uNLu4ULF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1388656794\/1581123774","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"},"geo":null,"coordinates":null,"place":{"id":"375aa1ab4abd79b1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/375aa1ab4abd79b1.json","place_type":"city","name":"Olympia","full_name":"Olympia, - WA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-123.023734,46.98219],[-122.823298,46.98219],[-122.823298,47.146866],[-123.023734,47.146866]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1234295518211133440,"quoted_status_id_str":"1234295518211133440","quoted_status":{"created_at":"Mon - Mar 02 01:52:38 +0000 2020","id":1234295518211133440,"id_str":"1234295518211133440","text":"BREAKING: - King Co. Public Health confirms four new cases of #coronavirus, including - one death. All of those cases\u2026 https:\/\/t.co\/eBRdCW62IN","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[60,72]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eBRdCW62IN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234295518211133440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16367617,"id_str":"16367617","name":"Ted - Land","screen_name":"TedLandK5","location":"Seattle, WA","description":"Reporter - @king5seattle. Formerly @wsbt South Bend, @ch2ktuu Anchorage, Reno, and Chicago. - @nppa, @nlgja","url":"https:\/\/t.co\/xxGj08FGAu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xxGj08FGAu","expanded_url":"http:\/\/king5.com","display_url":"king5.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5724,"friends_count":4795,"listed_count":256,"created_at":"Fri - Sep 19 18:53:09 +0000 2008","favourites_count":5255,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":7507,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133482121799000064\/hpfETP8H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133482121799000064\/hpfETP8H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16367617\/1530137793","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"},"geo":null,"coordinates":null,"place":{"id":"07d9dca767885000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9dca767885000.json","place_type":"poi","name":"Life - Care Center of Kirkland","full_name":"Life Care Center of Kirkland","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.205854,47.707086],[-122.205854,47.707086],[-122.205854,47.707086],[-122.205854,47.707086]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":592,"favorite_count":1014,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":26,"favorite_count":48,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234295518211133440,"quoted_status_id_str":"1234295518211133440","retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567946723329,"id_str":"1234518567946723329","text":"RT - @DeanObeidallah: Remember when on Feb 10 Trump told us not to be concerned - with the Coronavirus because it would go \"away in April with\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeanObeidallah","name":"(((DeanObeidallah)))","id":18320938,"id_str":"18320938","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":83967276,"id_str":"83967276","name":"Seeker - of the Truth","screen_name":"Grtseeker","location":"","description":"Political - news junkie, music lover, liberal thinker, defender of public ed, believer - that free speech is as necessary as air & a lie is a lie! The Resistance","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6518,"friends_count":6403,"listed_count":97,"created_at":"Wed - Oct 21 00:58:59 +0000 2009","favourites_count":17558,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":202152,"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\/1229798311672139776\/QG77x7yQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229798311672139776\/QG77x7yQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83967276\/1582798562","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:49:08 +0000 2020","id":1234490932868927488,"id_str":"1234490932868927488","text":"Remember - when on Feb 10 Trump told us not to be concerned with the Coronavirus because - it would go \"away in April\u2026 https:\/\/t.co\/MxVODlaO7D","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MxVODlaO7D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234490932868927488","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18320938,"id_str":"18320938","name":"(((DeanObeidallah)))","screen_name":"DeanObeidallah","location":"","description":"Host - of Dean Obeidallah show @SXMProgress Radio channel 127 6-9PMET. Lawyer who - will tell jokes for $.\nColumnist: @thedailybeast @CNNOpinion","url":"https:\/\/t.co\/YUuEZVGY8N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YUuEZVGY8N","expanded_url":"http:\/\/www.deanofradio.com","display_url":"deanofradio.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":103519,"friends_count":11525,"listed_count":1565,"created_at":"Mon - Dec 22 23:46:14 +0000 2008","favourites_count":62999,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":139333,"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\/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\/1000710835470090240\/BTLab9wW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1000710835470090240\/BTLab9wW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18320938\/1502990358","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1052,"favorite_count":2498,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1052,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567896461312,"id_str":"1234518567896461312","text":"RT - @COVID19Update: #BREAKING: \n\n#SaudiArabia \ud83c\uddf8\ud83c\udde6announces - the first case of #Coronavirus in the Kingdom, with the infected case being - a citi\u2026","truncated":false,"entities":{"hashtags":[{"text":"BREAKING","indices":[19,28]},{"text":"SaudiArabia","indices":[32,44]},{"text":"Coronavirus","indices":[75,87]}],"symbols":[],"user_mentions":[{"screen_name":"COVID19Update","name":"CoronaVirus - Updates\ud83e\udda0","id":1081972159860359170,"id_str":"1081972159860359170","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2926544896,"id_str":"2926544896","name":"Danish - Abdul Ghaffar","screen_name":"DanishShpurwala","location":"Karachi, Pakistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":461,"listed_count":1,"created_at":"Wed - Dec 17 06:51:15 +0000 2014","favourites_count":618,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6875,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1046086241278676994\/yXh3azBb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1046086241278676994\/yXh3azBb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2926544896\/1563514473","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:19:06 +0000 2020","id":1234513574485200899,"id_str":"1234513574485200899","text":"#BREAKING: - \n\n#SaudiArabia \ud83c\uddf8\ud83c\udde6announces the first case of #Coronavirus - in the Kingdom, with the infected case being a\u2026 https:\/\/t.co\/ysFUUsnqyM","truncated":true,"entities":{"hashtags":[{"text":"BREAKING","indices":[0,9]},{"text":"SaudiArabia","indices":[13,25]},{"text":"Coronavirus","indices":[56,68]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ysFUUsnqyM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234513574485200899","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1081972159860359170,"id_str":"1081972159860359170","name":"CoronaVirus - Updates\ud83e\udda0","screen_name":"COVID19Update","location":"Bangkok, Thailand","description":"\u2022I - am a #PH Professional\ud83d\udc68\u200d\u2695\ufe0f.Breaking News and Updates - About #coronavirus,Truth\ud83d\udd0e, No Rumors.|Safety\u26d1\ufe0f\ud83e\udd57Tips|\n#COVID19 - #WHO #CDC #JHU #Dxy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35197,"friends_count":46,"listed_count":239,"created_at":"Sun - Jan 06 17:53:59 +0000 2019","favourites_count":985,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228679128515272705\/k6z4OUS9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228679128515272705\/k6z4OUS9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081972159860359170\/1581774700","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":47,"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567892197377,"id_str":"1234518567892197377","text":"RT - @labourpress: .@johnmcdonnellMP sets out a five-point plan to deal with the - potential economic impact of a coronavirus outbreak.\n\nhttps:\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"labourpress","name":"Labour - Press Team","id":79173926,"id_str":"79173926","indices":[3,15]},{"screen_name":"johnmcdonnellMP","name":"John - McDonnell MP","id":77234984,"id_str":"77234984","indices":[18,34]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":415587690,"id_str":"415587690","name":"Alfie - Turner","screen_name":"AlfieTurner2","location":"Eastbourne","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":121,"friends_count":1274,"listed_count":0,"created_at":"Fri - Nov 18 14:52:35 +0000 2011","favourites_count":473,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36306,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480170651932561409\/cAIG1RCx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480170651932561409\/cAIG1RCx_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:19:18 +0000 2020","id":1234513621276938242,"id_str":"1234513621276938242","text":".@johnmcdonnellMP - sets out a five-point plan to deal with the potential economic impact of a - coronavirus outbreak.\n\nhttps:\/\/t.co\/iG6SB92ftT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"johnmcdonnellMP","name":"John - McDonnell MP","id":77234984,"id_str":"77234984","indices":[1,17]}],"urls":[{"url":"https:\/\/t.co\/iG6SB92ftT","expanded_url":"https:\/\/labour.org.uk\/press\/john-mcdonnell-mp-labours-shadow-chancellor-has-set-out-a-five-point-plan-to-deal-with-the-potential-economic-impact-of-a-coronavirus-outbreak\/","display_url":"labour.org.uk\/press\/john-mcd\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79173926,"id_str":"79173926","name":"Labour - Press Team","screen_name":"labourpress","location":"UK","description":"Labour''s - Press Team on Twitter","url":"https:\/\/t.co\/ArqnDGS4Rz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ArqnDGS4Rz","expanded_url":"http:\/\/press.labour.org.uk","display_url":"press.labour.org.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":142692,"friends_count":1310,"listed_count":1569,"created_at":"Fri - Oct 02 12:57:14 +0000 2009","favourites_count":271,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":59295,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146031336773300224\/beb4eS5L_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146031336773300224\/beb4eS5L_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/79173926\/1497453682","profile_link_color":"E81C4F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":103,"favorite_count":181,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":103,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567883767809,"id_str":"1234518567883767809","text":"RT - @FrancisBrennan: Joe Biden just touted the debunked talking point that President - Trump had muzzled Doctor Fauci form discussing the coro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FrancisBrennan","name":"Francis - Brennan (Text TRUMP to 88022)","id":718187712,"id_str":"718187712","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":830400432707104769,"id_str":"830400432707104769","name":"Max - Headroom","screen_name":"impavidus24","location":"Red Earth 29, Saskatchewan","description":"Likes - long walks on the beach, sunsets, drinks by the fireplace, saving the whales, - the trees, the air, and the water........oh wait, that must be someone else.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":169,"friends_count":297,"listed_count":3,"created_at":"Sat - Feb 11 12:57:46 +0000 2017","favourites_count":4379,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6108,"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\/830406347745144832\/OAEv6r-o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/830406347745144832\/OAEv6r-o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/830400432707104769\/1487632320","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 14:27:29 +0000 2020","id":1234123094865928193,"id_str":"1234123094865928193","text":"Joe - Biden just touted the debunked talking point that President Trump had muzzled - Doctor Fauci form discussing the\u2026 https:\/\/t.co\/PxAvaZST7V","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PxAvaZST7V","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234123094865928193","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":718187712,"id_str":"718187712","name":"Francis - Brennan (Text TRUMP to 88022)","screen_name":"FrancisBrennan","location":"Washington - D.C.","description":"Director of Strategic Response for @RealDonaldTrump 2020 - Campaign @TeamTrump + @TrumpWarRoom","url":"https:\/\/t.co\/DHRWm4KRN1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DHRWm4KRN1","expanded_url":"http:\/\/donaldtrump.com","display_url":"donaldtrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16940,"friends_count":987,"listed_count":117,"created_at":"Thu - Jul 26 14:13:41 +0000 2012","favourites_count":1602,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6765,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554632885131411457\/utDQoEIF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554632885131411457\/utDQoEIF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718187712\/1560777324","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4899,"favorite_count":10280,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4899,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567875420162,"id_str":"1234518567875420162","text":"RT - @TimothyDSnyder: 3\/4: If you are a mom worried about coronavirus, one thing - you can do is to make sure that the man in your life washes\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TimothyDSnyder","name":"Timothy - Snyder","id":3129968261,"id_str":"3129968261","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":203785842,"id_str":"203785842","name":"NYEMSMom","screen_name":"rehtaeh1628","location":"United - States","description":"Concerned citizen who was taught good citizenship","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":780,"friends_count":3227,"listed_count":1,"created_at":"Sun - Oct 17 03:54:09 +0000 2010","favourites_count":136964,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":85351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176629423489114112\/ePPDLhhZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176629423489114112\/ePPDLhhZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/203785842\/1569365290","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:27:10 +0000 2020","id":1234515604398313475,"id_str":"1234515604398313475","text":"3\/4: - If you are a mom worried about coronavirus, one thing you can do is to make - sure that the man in your life was\u2026 https:\/\/t.co\/avquRKjr2N","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/avquRKjr2N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234515604398313475","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234515602288652294,"in_reply_to_status_id_str":"1234515602288652294","in_reply_to_user_id":3129968261,"in_reply_to_user_id_str":"3129968261","in_reply_to_screen_name":"TimothyDSnyder","user":{"id":3129968261,"id_str":"3129968261","name":"Timothy - Snyder","screen_name":"TimothyDSnyder","location":"","description":"Levin - Professor of History at Yale. Author of \"The Road to Unfreedom: Russia, Europe, - America,\" \"On Tyranny,\" \"Black Earth,\" and \"Bloodlands\"","url":"http:\/\/t.co\/a9mp9ieE9j","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a9mp9ieE9j","expanded_url":"http:\/\/timothysnyder.org","display_url":"timothysnyder.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":84475,"friends_count":0,"listed_count":1197,"created_at":"Mon - Mar 30 21:25:57 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":864,"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\/582655768471552000\/8Ad5TU8L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582655768471552000\/8Ad5TU8L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3129968261\/1517671873","profile_link_color":"0E4C92","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":69,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567795724288,"id_str":"1234518567795724288","text":"RT - @MEK_Iran: #CoronaVirusIran: Where is the Country Heading to? https:\/\/t.co\/xxd0UYe98w\n#iran - #MEK #freeiran @USAdarFarsi","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirusIran","indices":[14,30]},{"text":"iran","indices":[89,94]},{"text":"MEK","indices":[95,99]},{"text":"freeiran","indices":[100,109]}],"symbols":[],"user_mentions":[{"screen_name":"MEK_Iran","name":"MEK - Iran (Mujahedin-e Khalq)","id":972215764680892419,"id_str":"972215764680892419","indices":[3,12]},{"screen_name":"USAdarFarsi","name":"USA - darFarsi","id":251633354,"id_str":"251633354","indices":[110,122]}],"urls":[{"url":"https:\/\/t.co\/xxd0UYe98w","expanded_url":"https:\/\/mek-iran.com\/2020\/03\/01\/iran-coronavirus-where-is-the-country-heading-to\/","display_url":"mek-iran.com\/2020\/03\/01\/ira\u2026","indices":[65,88]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1096520546987184130,"id_str":"1096520546987184130","name":"Zeynab - Pasha","screen_name":"pasha_zeynab","location":"","description":"freedomlover\n\u0645\u0631\u06af - \u0628\u0631 \u0627\u0635\u0644 \u0648\u0644\u0627\u06cc\u062a \u0641\u0642\u06cc\u0647 - \ud83d\udc4a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1088,"friends_count":920,"listed_count":3,"created_at":"Fri - Feb 15 21:24:05 +0000 2019","favourites_count":236874,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67413,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1118769262347337729\/TxGtt2gh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118769262347337729\/TxGtt2gh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1096520546987184130\/1555570286","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:42:28 +0000 2020","id":1234504353366429696,"id_str":"1234504353366429696","text":"#CoronaVirusIran: - Where is the Country Heading to? https:\/\/t.co\/xxd0UYe98w\n#iran #MEK #freeiran - @USAdarFarsi","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirusIran","indices":[0,16]},{"text":"iran","indices":[75,80]},{"text":"MEK","indices":[81,85]},{"text":"freeiran","indices":[86,95]}],"symbols":[],"user_mentions":[{"screen_name":"USAdarFarsi","name":"USA - darFarsi","id":251633354,"id_str":"251633354","indices":[96,108]}],"urls":[{"url":"https:\/\/t.co\/xxd0UYe98w","expanded_url":"https:\/\/mek-iran.com\/2020\/03\/01\/iran-coronavirus-where-is-the-country-heading-to\/","display_url":"mek-iran.com\/2020\/03\/01\/ira\u2026","indices":[51,74]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":972215764680892419,"id_str":"972215764680892419","name":"MEK - Iran (Mujahedin-e Khalq)","screen_name":"MEK_Iran","location":"Iran","description":"Official - Twitter account for MEK-Iran, supporters of Iran''s main democratic opposition. - #FreeIran #IranProtests #MEK","url":"https:\/\/t.co\/Xpn4TuU6OS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Xpn4TuU6OS","expanded_url":"http:\/\/mek-iran.com\/","display_url":"mek-iran.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1181,"friends_count":602,"listed_count":10,"created_at":"Fri - Mar 09 21:01:15 +0000 2018","favourites_count":3632,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5041,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/972220891600998400\/5ii5pM_Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/972220891600998400\/5ii5pM_Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972215764680892419\/1520631123","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":17,"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567707496448,"id_str":"1234518567707496448","text":"RT - @patrickwintour: Iranian ambassador to the UK says co-ordination underway - with British to send equipment from UK to help combat Coronavi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"patrickwintour","name":"Patrick - Wintour","id":27692596,"id_str":"27692596","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246614123,"id_str":"246614123","name":"kimberly - grace","screen_name":"grace8ming","location":"eugene\/world \u2022 via kalamazoo","description":"freelancer - \u2022 traveler \u2022 empathizer \u2022 analyzer \u2022 problem solver \u2022 - dreamer \u2022 retweeter (not endorser) \u2022 a fan of curiosity & the cat - it killed \u2022 she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":642,"friends_count":3951,"listed_count":64,"created_at":"Thu - Feb 03 03:30:18 +0000 2011","favourites_count":26678,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":75181,"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\/620270614629122050\/WjnVSesv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620270614629122050\/WjnVSesv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246614123\/1392431593","profile_link_color":"04B4AE","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"303319","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:47:52 +0000 2020","id":1234490613606834178,"id_str":"1234490613606834178","text":"Iranian - ambassador to the UK says co-ordination underway with British to send equipment - from UK to help combat Coro\u2026 https:\/\/t.co\/QhzaPca6Wa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QhzaPca6Wa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234490613606834178","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27692596,"id_str":"27692596","name":"Patrick - Wintour","screen_name":"patrickwintour","location":"London","description":"Guardian - Diplomatic Editor. Covered UK politics for too many decades including as - Political Editor. Now urgently studying maps, history and Google Translate.","url":"https:\/\/t.co\/m2ZmqG5JsX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m2ZmqG5JsX","expanded_url":"http:\/\/www.guardian.co.uk\/profile\/patrickwintour","display_url":"guardian.co.uk\/profile\/patric\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":80542,"friends_count":1022,"listed_count":1627,"created_at":"Mon - Mar 30 18:00:56 +0000 2009","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":22174,"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\/578989688997969920\/_ZpAFlqg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578989688997969920\/_ZpAFlqg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27692596\/1426876783","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234487954304749570,"quoted_status_id_str":"1234487954304749570","quoted_status":{"created_at":"Mon - Mar 02 14:37:18 +0000 2020","id":1234487954304749570,"id_str":"1234487954304749570","text":"\u0627\u0648\u0644\u06cc\u0646 - \u0645\u062d\u0645\u0648\u0644\u0647 \u0647\u062f\u0627\u06cc\u0627\u06cc - \u0627\u0646\u06af\u0644\u06cc\u0633\u060c \u0641\u0631\u0627\u0646\u0633\u0647 - \u0648 \u0622\u0644\u0645\u0627\u0646 \u0628\u0631\u0627\u06cc \u0645\u0642\u0627\u0628\u0644\u0647 - \u0628\u0627 #\u0648\u06cc\u0631\u0648\u0633_\u06a9\u0648\u0631\u0648\u0646\u0627 - \u0627\u0645\u0634\u0628 \u0648\u0627\u0631\u062f \u062a\u0647\u0631\u0627\u0646 - \u0645\u06cc\u0634\u0648\u062f. \u062f\u0631 \u06a9\u0646\u0627\u0631 \u062a\u0644\u0627\u0634 - \u0645\u0647\u0646\u062f\u0633\u0627\u0646\u2026 https:\/\/t.co\/0E5F27H1fa","truncated":true,"entities":{"hashtags":[{"text":"\u0648\u06cc\u0631\u0648\u0633_\u06a9\u0648\u0631\u0648\u0646\u0627","indices":[58,71]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0E5F27H1fa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234487954304749570","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312087059,"id_str":"3312087059","name":"Hamid - Baeidinejad","screen_name":"baeidinejad","location":"United Kingdom","description":"personal - account of Iran\u2019s Ambassador to the UK, views are mine not the MFA\u2019s","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18132,"friends_count":19,"listed_count":262,"created_at":"Sun - Jun 07 16:45:10 +0000 2015","favourites_count":82,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1637,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/773036427928010756\/H28S3SV7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/773036427928010756\/H28S3SV7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312087059\/1499412944","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":431,"favorited":false,"retweeted":false,"lang":"fa"},"retweet_count":38,"favorite_count":65,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234487954304749570,"quoted_status_id_str":"1234487954304749570","retweet_count":38,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567271399425,"id_str":"1234518567271399425","text":"Coronavirus - llega a M\u00e9xico y se pone una salsa bien sabrosa en la rockola de La Faena","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":555017660,"id_str":"555017660","name":"Margo - Gantz","screen_name":"modochikako","location":"","description":"exigimos cadena - perpet\u00faa para el \u00e1tomo de la 4T","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":629,"listed_count":1,"created_at":"Mon - Apr 16 10:23:00 +0000 2012","favourites_count":3190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6035,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1181817689800663040\/Bm7u34Ka_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181817689800663040\/Bm7u34Ka_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/555017660\/1571194868","profile_link_color":"00DD44","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"},"geo":null,"coordinates":null,"place":{"id":"90a5d505052f7bae","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/90a5d505052f7bae.json","place_type":"city","name":"\u00c1lvaro - Obreg\u00f3n","full_name":"\u00c1lvaro Obreg\u00f3n, Distrito Federal","country_code":"MX","country":"Mexico","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-99.324375,19.232228],[-99.1716443,19.232228],[-99.1716443,19.403856],[-99.324375,19.403856]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567237890049,"id_str":"1234518567237890049","text":"RT - @ewarren: My new plan for coronavirus response:\n1. Ensure every American - can get all recommended care for coronavirus for free.\n2. Creat\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":976623871993376768,"id_str":"976623871993376768","name":"Kriste - Kline","screen_name":"KristeKline","location":"Georgia, USA","description":"School - bus driver,neccessary trouble maker","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1310,"friends_count":2150,"listed_count":1,"created_at":"Thu - Mar 22 00:57:30 +0000 2018","favourites_count":484437,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65392,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184650770811097088\/IIaIqYsf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184650770811097088\/IIaIqYsf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/976623871993376768\/1571277727","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:05:17 +0000 2020","id":1234510093963624448,"id_str":"1234510093963624448","text":"My - new plan for coronavirus response:\n1. Ensure every American can get all recommended - care for coronavirus for fre\u2026 https:\/\/t.co\/6Afxl67CH4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6Afxl67CH4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510093963624448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357606935,"id_str":"357606935","name":"Elizabeth - Warren","screen_name":"ewarren","location":"Massachusetts","description":"U.S. - Senator, former teacher, and candidate for president. Wife, mom (Amelia, Alex, - Bailey, @CFPB), grandmother, and Okie. She\/her. Official campaign account.","url":"https:\/\/t.co\/5jpXuSnwli","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5jpXuSnwli","expanded_url":"http:\/\/ewar.ren\/chip-in","display_url":"ewar.ren\/chip-in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3831315,"friends_count":521,"listed_count":15758,"created_at":"Thu - Aug 18 16:43:48 +0000 2011","favourites_count":116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9199,"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\/1215406626049413121\/LiVKh64l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215406626049413121\/LiVKh64l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357606935\/1578610497","profile_link_color":"232444","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"7DA6D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5538,"favorite_count":22071,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5538,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567220998149,"id_str":"1234518567220998149","text":"RT - @jimgeraghty: It should not be surprising to see the number of cases increase - dramatically; we are a culture obsessed with getting conte\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jimgeraghty","name":"Jim - Geraghty","id":15335534,"id_str":"15335534","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":390421144,"id_str":"390421144","name":"Jonathan - Sabin","screen_name":"jonathanwsabin","location":"Salt Lake City, UT","description":"Rabid, - though still very amateur golfer; hockey fan and staunch Libertarian. Live - in any manner you choose so long as I don''t have to pay for it.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":404,"friends_count":425,"listed_count":16,"created_at":"Thu - Oct 13 23:26:33 +0000 2011","favourites_count":3837,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41782,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1064647119368142850\/ufP5GkL6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064647119368142850\/ufP5GkL6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/390421144\/1401224221","profile_link_color":"008FB3","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:29 +0000 2020","id":1234518450850193408,"id_str":"1234518450850193408","text":"It - should not be surprising to see the number of cases increase dramatically; - we are a culture obsessed with gettin\u2026 https:\/\/t.co\/Iz6tNLsGML","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Iz6tNLsGML","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518450850193408","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15335534,"id_str":"15335534","name":"Jim - Geraghty","screen_name":"jimgeraghty","location":"Authenticity Woods, Virginia.","description":"NR - senior political correspondent by day, dad by day and night. Author. Three - Martini Lunch podcast. Intermittent cable news talking head. #TJAMS","url":"https:\/\/t.co\/5FJSq47eiu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5FJSq47eiu","expanded_url":"http:\/\/www.amazon.com\/Jim-Geraghty\/e\/B001H9TDOW","display_url":"amazon.com\/Jim-Geraghty\/e\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":96372,"friends_count":1092,"listed_count":2782,"created_at":"Sun - Jul 06 20:49:38 +0000 2008","favourites_count":11449,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":93498,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206387828936101888\/g0lrUfuG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206387828936101888\/g0lrUfuG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15335534\/1573242355","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"},"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":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567112073216,"id_str":"1234518567112073216","text":"RT - @zeefa64: I heard yesterday there are 150 prescription medications that will - be in short supply or non existent! You may want to check o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zeefa64","name":"Zee - Zembry \ud83d\udc8b \ud83c\uddfa\ud83c\uddf8 \u274c \u2764","id":234497162,"id_str":"234497162","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2611066880,"id_str":"2611066880","name":"artfantasystudio.com","screen_name":"artfantasystudi","location":"North - Carolina, USA","description":"\ud83d\udc29\ud83d\udc29 Art Fantasy Studio - \ud83c\udfa8 NC #Artist of Original Fine ART Paintings~ Support the USA aka - #MAGA Trump''s swamp purge, or lose freedom to NWO Globalist dictators.","url":"https:\/\/t.co\/cBFpfqsASg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cBFpfqsASg","expanded_url":"https:\/\/artfantasystudio.com\/","display_url":"artfantasystudio.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3004,"friends_count":4383,"listed_count":91,"created_at":"Tue - Jul 08 05:06:59 +0000 2014","favourites_count":19620,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":108824,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228372956843257859\/z3OZjtfs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228372956843257859\/z3OZjtfs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2611066880\/1569371901","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:33:48 +0000 2020","id":1234517270468145152,"id_str":"1234517270468145152","text":"I - heard yesterday there are 150 prescription medications that will be in short - supply or non existent! You may want\u2026 https:\/\/t.co\/r4hXT6az7x","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r4hXT6az7x","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517270468145152","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234497162,"id_str":"234497162","name":"Zee - Zembry \ud83d\udc8b \ud83c\uddfa\ud83c\uddf8 \u274c \u2764","screen_name":"zeefa64","location":"Phoenix, - AZ","description":"ORRN. Flight Attendant. Catholic. Political Activist, Administrator - https:\/\/t.co\/tjwgzRNXVT #MAGA #Q #ProudDeplorable #KAG *Shadow Banned *No - Dates","url":"https:\/\/t.co\/fGXLo0hfBD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fGXLo0hfBD","expanded_url":"http:\/\/www.facebook.com\/zee.zembry","display_url":"facebook.com\/zee.zembry","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/tjwgzRNXVT","expanded_url":"http:\/\/OverpassesforAmerica.org","display_url":"OverpassesforAmerica.org","indices":[68,91]}]}},"protected":false,"followers_count":31090,"friends_count":33988,"listed_count":55,"created_at":"Wed - Jan 05 20:17:35 +0000 2011","favourites_count":100211,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104059,"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\/1212770112153047042\/1OSNrWB3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212770112153047042\/1OSNrWB3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234497162\/1524923762","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":9,"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567107866625,"id_str":"1234518567107866625","text":"RT - @B52Malmet: Trump is the face of the #coronavirus crisis (with his fake tan - and orange pancake make up) -he and Pence meet with big Phar\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[40,52]}],"symbols":[],"user_mentions":[{"screen_name":"B52Malmet","name":"Barbara - Malmet","id":2876041031,"id_str":"2876041031","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":433461857,"id_str":"433461857","name":"suv","screen_name":"suv49","location":"Schoolcraft, - Michigan","description":"Retired Educator. Liberal Progressive, ERA now! Love - family, dogs, cats, and nature. #GlobalClimateStrike","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":714,"friends_count":706,"listed_count":7,"created_at":"Sat - Dec 10 16:04:35 +0000 2011","favourites_count":29120,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31101,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219236461075161090\/kzou0BzY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219236461075161090\/kzou0BzY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:49:36 +0000 2020","id":1234491049529237505,"id_str":"1234491049529237505","text":"Trump - is the face of the #coronavirus crisis (with his fake tan and orange pancake - make up) -he and Pence meet with\u2026 https:\/\/t.co\/nPGCcgRmOA","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[25,37]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nPGCcgRmOA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234491049529237505","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2876041031,"id_str":"2876041031","name":"Barbara - Malmet","screen_name":"B52Malmet","location":"New York, NY","description":"Artist, - Activist, TriAthlete, Producer- The democracy you save is your own. #ProtectTheFreePress - #WomensRightsAreHumanRights","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":157274,"friends_count":6798,"listed_count":376,"created_at":"Fri - Nov 14 05:18:51 +0000 2014","favourites_count":655821,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":291641,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876041031\/1579491738","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":367,"favorite_count":915,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":367,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567044997120,"id_str":"1234518567044997120","text":"RT - @NYGovCuomo: NY is providing hospitals with guidance on replicating the State''s - FDA-approved #coronavirus test so we can quickly reach o\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[96,108]}],"symbols":[],"user_mentions":[{"screen_name":"NYGovCuomo","name":"Andrew - Cuomo","id":232268199,"id_str":"232268199","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":263747020,"id_str":"263747020","name":"Adriana - Heguy","screen_name":"AdrianaHeguy","location":"New York","description":"Genomics - scientist, vegetarian, animal lover, atheist, mom. \u2764\ufe0fBiking, kayaking - and running. Tweets are my own opinion. Do not contact me at work. She\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1094,"friends_count":1681,"listed_count":48,"created_at":"Thu - Mar 10 17:21:15 +0000 2011","favourites_count":95200,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52717,"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\/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\/1038123749814546432\/14DAVyrF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1038123749814546432\/14DAVyrF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263747020\/1498432218","profile_link_color":"5C91B9","profile_sidebar_border_color":"C0DCF1","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:32:05 +0000 2020","id":1234516838861754368,"id_str":"1234516838861754368","text":"NY - is providing hospitals with guidance on replicating the State''s FDA-approved - #coronavirus test so we can quickly\u2026 https:\/\/t.co\/HS9s1QwpkI","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[80,92]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HS9s1QwpkI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234516838861754368","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232268199,"id_str":"232268199","name":"Andrew - Cuomo","screen_name":"NYGovCuomo","location":"New York","description":"Father, - fisherman, motorcycle enthusiast, 56th Governor of New York","url":"https:\/\/t.co\/Oazy5ayWLE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Oazy5ayWLE","expanded_url":"http:\/\/www.ny.gov\/social-media-policy","display_url":"ny.gov\/social-media-p\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":866715,"friends_count":608,"listed_count":5076,"created_at":"Thu - Dec 30 17:54:04 +0000 2010","favourites_count":2714,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":26524,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0077C8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1135023027668824064\/NkGFOCe6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1135023027668824064\/NkGFOCe6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232268199\/1575121693","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":232,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":53,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518567015665665,"id_str":"1234518567015665665","text":"RT - @Nigel__DSouza: What a gesture!!\n\nAfter Korean group #BTS cancelled Seoul - tour, fans decide to donate concert refunds now totaling over\u2026","truncated":false,"entities":{"hashtags":[{"text":"BTS","indices":[56,60]}],"symbols":[],"user_mentions":[{"screen_name":"Nigel__DSouza","name":"Nigel - D''Souza","id":188994965,"id_str":"188994965","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1026589558111182848,"id_str":"1026589558111182848","name":"\ud638\uc0b4\ub9ac - \u2077","screen_name":"JH0P3_","location":"Catalonia, Spain ","description":"#HOSEOK: - If you aren''t OT7 stan, choke on my dick","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1011,"friends_count":1307,"listed_count":4,"created_at":"Mon - Aug 06 22:03:18 +0000 2018","favourites_count":61321,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234423292880211968\/JO1Ctm1r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234423292880211968\/JO1Ctm1r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1026589558111182848\/1582874156","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 05:47:37 +0000 2020","id":1234354655267680258,"id_str":"1234354655267680258","text":"What - a gesture!!\n\nAfter Korean group #BTS cancelled Seoul tour, fans decide to - donate concert refunds now totaling\u2026 https:\/\/t.co\/a3Eur8fnA2","truncated":true,"entities":{"hashtags":[{"text":"BTS","indices":[37,41]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a3Eur8fnA2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234354655267680258","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188994965,"id_str":"188994965","name":"Nigel - D''Souza","screen_name":"Nigel__DSouza","location":"Mumbai, Maharashtra","description":"Anchor - & Associate Editor-Research At CNBCTV18 Passionate abt stock markets, sports - & bikes. Proud Father. All views expressed r personal","url":"https:\/\/t.co\/xUwkg4weyk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xUwkg4weyk","expanded_url":"https:\/\/www.cnbctv18.com\/anchor-hub\/75\/","display_url":"cnbctv18.com\/anchor-hub\/75\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":48990,"friends_count":1496,"listed_count":291,"created_at":"Fri - Sep 10 02:48:24 +0000 2010","favourites_count":7515,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":12058,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/893697826198216706\/d90n5oUd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/893697826198216706\/d90n5oUd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188994965\/1523623397","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2837,"favorite_count":7639,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2837,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566889762817,"id_str":"1234518566889762817","text":"RT - @melanieboucheny: Les gens: ont peur d''attraper le coronavirus\nMoi: a peur - que mes concerts pr\u00e9vus soient annul\u00e9s","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"melanieboucheny","name":"M\u00e9lanie - BOUCHENY","id":401066824,"id_str":"401066824","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":719673556305649664,"id_str":"719673556305649664","name":"TRINITY","screen_name":"pablokiddd","location":"j","description":"\ud83d\udda4\ud83d\udc9a\ud83e\uddea\ud83d\udce1\ud83e\uddd9\ud83c\udffd\u200d\u2640\ufe0f - \u00af\u00af\u033f\u033f\u00af\u033f\u033f''\u033f\u033f\u033f\u033f\u033f\u033f\u033f''\u033f\u033f''\u033f\u033f\u033f\u033f\u033f''\u033f\u033f\u033f)\u0347\u033f\u033f)\u033f\u033f\u033f\u033f - ''\u033f\u033f\u033f\u033f\u033f\u033f\\\u0335\u0347\u033f\u033f\\ \u2730 - LAYLOW ou rien","url":"https:\/\/t.co\/EIpSVTYVRW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EIpSVTYVRW","expanded_url":"https:\/\/instagram.com\/kympprrxili?igshid=tlhmnvbl2nhz","display_url":"instagram.com\/kympprrxili?ig\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":345,"friends_count":298,"listed_count":0,"created_at":"Mon - Apr 11 23:48:41 +0000 2016","favourites_count":13777,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18788,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234649808805257216\/Dd8oIeJ0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234649808805257216\/Dd8oIeJ0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719673556305649664\/1582162733","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 10:38:23 +0000 2020","id":1234065439229202432,"id_str":"1234065439229202432","text":"Les - gens: ont peur d''attraper le coronavirus\nMoi: a peur que mes concerts pr\u00e9vus - soient annul\u00e9s","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":401066824,"id_str":"401066824","name":"M\u00e9lanie - BOUCHENY","screen_name":"melanieboucheny","location":"","description":"Photographe - professionnelle | Paris \ud83d\udcf7","url":"https:\/\/t.co\/c0qsxnnfhC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c0qsxnnfhC","expanded_url":"http:\/\/mlanie.book.fr","display_url":"mlanie.book.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":579,"friends_count":179,"listed_count":15,"created_at":"Sun - Oct 30 00:36:16 +0000 2011","favourites_count":3349,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30102,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1015695810120568832\/z-KzGEBJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1015695810120568832\/z-KzGEBJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/401066824\/1559086075","profile_link_color":"17AACF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9780,"favorite_count":24920,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":9780,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566831034368,"id_str":"1234518566831034368","text":"@WinamaxSport - vous pouvez cr\u00e9er un Paris pour savoir qui entre @niferlity et moi va - choper le coronavirus en premie\u2026 https:\/\/t.co\/wuZaUsb5UB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WinamaxSport","name":"Winamax - Sport","id":2834176185,"id_str":"2834176185","indices":[0,13]},{"screen_name":"niferlity","name":"lya - \u273f","id":1036839294265122816,"id_str":"1036839294265122816","indices":[63,73]}],"urls":[{"url":"https:\/\/t.co\/wuZaUsb5UB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518566831034368","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2834176185,"in_reply_to_user_id_str":"2834176185","in_reply_to_screen_name":"WinamaxSport","user":{"id":1113117527524216832,"id_str":"1113117527524216832","name":"\ud83d\udd25","screen_name":"Lisa__9","location":"Parc - des princes","description":"18yo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":84,"listed_count":0,"created_at":"Tue - Apr 02 16:34:34 +0000 2019","favourites_count":2284,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":625,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222267378815422464\/--wevIZA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222267378815422464\/--wevIZA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113117527524216832\/1580246284","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566747230216,"id_str":"1234518566747230216","text":"RT - @KylieMcGivern: Florida officials waited for more than 24 hours to tell the - public about confirmed coronavirus cases https:\/\/t.co\/CYWzKa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KylieMcGivern","name":"Kylie - McGivern","id":186658918,"id_str":"186658918","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":328586396,"id_str":"328586396","name":"Sara - G.","screen_name":"SaraGrossbarth","location":"","description":"New York native - living in Florida. 6pm news producer at ABC Action News in Tampa. I''m very - competitive. RTs are not endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":851,"listed_count":9,"created_at":"Sun - Jul 03 17:12:53 +0000 2011","favourites_count":460,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":983,"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\/542414652206891010\/bff97i6v_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542414652206891010\/bff97i6v_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/328586396\/1418156652","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:58 +0000 2020","id":1234517817065713665,"id_str":"1234517817065713665","text":"Florida - officials waited for more than 24 hours to tell the public about confirmed - coronavirus cases https:\/\/t.co\/CYWzKahd3s @abcactionnews","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"abcactionnews","name":"ABC - Action News","id":15138087,"id_str":"15138087","indices":[125,139]}],"urls":[{"url":"https:\/\/t.co\/CYWzKahd3s","expanded_url":"https:\/\/www.abcactionnews.com\/news\/local-news\/i-team-investigates\/florida-officials-waited-for-more-than-24-hours-to-tell-the-public-about-confirmed-coronavirus-cases","display_url":"abcactionnews.com\/news\/local-new\u2026","indices":[101,124]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":186658918,"id_str":"186658918","name":"Kylie - McGivern","screen_name":"KylieMcGivern","location":"Tampa, FL","description":"Investigative - Reporter @abcactionnews Native Floridian. Mizzou Grad. Previously @KXAN_News - Have a story idea? Would love to hear it! kylie.mcgivern@wfts.com","url":"https:\/\/t.co\/HKiowNI2vt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HKiowNI2vt","expanded_url":"http:\/\/kyliemcgivern.com","display_url":"kyliemcgivern.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2334,"friends_count":2356,"listed_count":79,"created_at":"Sat - Sep 04 01:34:53 +0000 2010","favourites_count":2241,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4863,"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\/1054932761859911680\/uoftwYAU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1054932761859911680\/uoftwYAU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/186658918\/1551139294","profile_link_color":"092A7D","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"},"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"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566713647105,"id_str":"1234518566713647105","text":"RT - @nedryun: BREAKING: Over 80,000 Americans contracted the flu yesterday. 170 - expected to die. . . Just to give people a little perspectiv\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nedryun","name":"Ned - Ryun","id":15455253,"id_str":"15455253","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":798225938026786816,"id_str":"798225938026786816","name":"Proud - Deplorable","screen_name":"sdgwest396570","location":"","description":"2 Chronicles - 7:14","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":265,"friends_count":551,"listed_count":1,"created_at":"Mon - Nov 14 18:07:48 +0000 2016","favourites_count":69364,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":64712,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1008753780177952768\/nxyLKq4o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1008753780177952768\/nxyLKq4o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/798225938026786816\/1529340620","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:42:00 +0000 2020","id":1234489137903865856,"id_str":"1234489137903865856","text":"BREAKING: - Over 80,000 Americans contracted the flu yesterday. 170 expected to die. . - . Just to give people a little\u2026 https:\/\/t.co\/b1ovt96GjN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/b1ovt96GjN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234489137903865856","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15455253,"id_str":"15455253","name":"Ned - Ryun","screen_name":"nedryun","location":"Virginia","description":"Conservative - Christian. Love @BeccaRyun. Dad of 4. Jayhawk. CEO @AM_National, @VoterGravity. - For media: becca@ryunmedia.com. @theamgreatness Senior Fellow.","url":"https:\/\/t.co\/fMl949HcAi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fMl949HcAi","expanded_url":"http:\/\/www.nedryun.com","display_url":"nedryun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":137939,"friends_count":25397,"listed_count":1245,"created_at":"Wed - Jul 16 15:04:15 +0000 2008","favourites_count":15693,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":81039,"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\/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\/810280526619832320\/MzTy3-_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/810280526619832320\/MzTy3-_1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15455253\/1505500352","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6987,"favorite_count":19963,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6987,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566541631493,"id_str":"1234518566541631493","text":"RT - @JefinhoMenes: Dr. Drauzio n\u00e3o se preocupe com o coronavirus porque se - ele infectar o senhor eu dou um pulm\u00e3o pro senhor respirar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JefinhoMenes","name":"J\u00e9ferfon - Menezes","id":357200663,"id_str":"357200663","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62974479,"id_str":"62974479","name":"aquilo - em chamas","screen_name":"thatisonfire","location":"Brazil","description":"\ud83e\udd19","url":"https:\/\/t.co\/pf672zd2lm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pf672zd2lm","expanded_url":"http:\/\/helenabeats.com","display_url":"helenabeats.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":398,"friends_count":737,"listed_count":1,"created_at":"Wed - Aug 05 00:15:32 +0000 2009","favourites_count":21234,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20495,"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\/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\/1115429971261042690\/gY7vSSN2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1115429971261042690\/gY7vSSN2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62974479\/1499951750","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"01040A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 02:19:58 +0000 2020","id":1234302396412592133,"id_str":"1234302396412592133","text":"Dr. - Drauzio n\u00e3o se preocupe com o coronavirus porque se ele infectar o senhor - eu dou um pulm\u00e3o pro senhor respirar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357200663,"id_str":"357200663","name":"J\u00e9ferfon - Menezes","screen_name":"JefinhoMenes","location":"","description":"Meu nome - \u00e9 J\u00e9ferfon e eu fa\u00e7o arte com meus amigos no Site dos Menes.\nMinhas - opini\u00f5es aqui n\u00e3o refletem a posi\u00e7\u00e3o do Site dos Menes - ou de outros membros do Site","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20465,"friends_count":200,"listed_count":116,"created_at":"Thu - Aug 18 00:38:07 +0000 2011","favourites_count":36249,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30518,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/958796599362236417\/z29mI7hT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/958796599362236417\/z29mI7hT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357200663\/1517429924","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12791,"favorite_count":55600,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":12791,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566503882752,"id_str":"1234518566503882752","text":"RT - @MrMichaelSpicer: the room next door - President Trump and the Coronavirus - https:\/\/t.co\/LTYYYIYUMi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrMichaelSpicer","name":"Michael - Spicer","id":93222172,"id_str":"93222172","indices":[3,19]}],"urls":[],"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234458301368164352,"source_status_id_str":"1234458301368164352","source_user_id":93222172,"source_user_id_str":"93222172"}]},"extended_entities":{"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234458301368164352,"source_status_id_str":"1234458301368164352","source_user_id":93222172,"source_user_id_str":"93222172","video_info":{"aspect_ratio":[16,9],"duration_millis":137638,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/480x270\/8fmAAK02A6it9wjT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/640x360\/lSnahBMYahnylH8j.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/pl\/tL2aDEJGkHpos0BZ.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/1280x720\/y9-Yn9X6Q-PF7xSz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":237177,"friends_count":1730,"listed_count":713,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29226,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39321454,"id_str":"39321454","name":"Ministry - Magistrate","screen_name":"irishecko","location":"Def not the forbidden forest","description":"Tweets - are not legal advice or official legal opinions,.......because that would - be weird. Board Certified in Wizardry.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":413,"friends_count":4985,"listed_count":2,"created_at":"Mon - May 11 19:32:29 +0000 2009","favourites_count":36045,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832829438710648832\/OAGY7TL9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832829438710648832\/OAGY7TL9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39321454\/1487397162","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:39:28 +0000 2020","id":1234458301368164352,"id_str":"1234458301368164352","text":"the - room next door - President Trump and the Coronavirus https:\/\/t.co\/LTYYYIYUMi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234457531797266432,"id_str":"1234457531797266432","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":137638,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/480x270\/8fmAAK02A6it9wjT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/640x360\/lSnahBMYahnylH8j.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/pl\/tL2aDEJGkHpos0BZ.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/1280x720\/y9-Yn9X6Q-PF7xSz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":237177,"friends_count":1730,"listed_count":713,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29226,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15226,"favorite_count":53870,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15226,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566482960385,"id_str":"1234518566482960385","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":881602036495773696,"id_str":"881602036495773696","name":"whx","screen_name":"Ayateeyar","location":"Islas - Canarias, Espa\u00f1a","description":"\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":464,"friends_count":601,"listed_count":0,"created_at":"Sun - Jul 02 19:54:39 +0000 2017","favourites_count":23352,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22464,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229506888578031618\/radH1Z_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229506888578031618\/radH1Z_3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881602036495773696\/1568634893","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153505,"favorite_count":478696,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566449238018,"id_str":"1234518566449238018","text":"RT - @realJeffreyLord: Fear itself is the biggest coronavirus danger, writes @HolmanJenkins - https:\/\/t.co\/DZYHBc448X via @WSJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realJeffreyLord","name":"Jeffrey - Lord","id":397545273,"id_str":"397545273","indices":[3,19]},{"screen_name":"HolmanJenkins","name":"Holman - Jenkins","id":387088436,"id_str":"387088436","indices":[75,89]},{"screen_name":"WSJ","name":"The - Wall Street Journal","id":3108351,"id_str":"3108351","indices":[118,122]}],"urls":[{"url":"https:\/\/t.co\/DZYHBc448X","expanded_url":"https:\/\/www.wsj.com\/articles\/fear-itself-is-the-biggest-coronavirus-danger-11582934423","display_url":"wsj.com\/articles\/fear-\u2026","indices":[90,113]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1165541469085556737,"id_str":"1165541469085556737","name":"stovr1684@gmail.com","screen_name":"stovr1684","location":"Portland, - OR","description":"In 1966, Ronald Reagan made me a Republican. In 2017, President - Donald Trump made me proud again to be a Republican. Lived in Southern California - for 70 years.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":191,"listed_count":0,"created_at":"Sun - Aug 25 08:28:59 +0000 2019","favourites_count":6341,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2915,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165542147124150273\/3Wv8lWV3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165542147124150273\/3Wv8lWV3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:44:51 +0000 2020","id":1234504952699072513,"id_str":"1234504952699072513","text":"Fear - itself is the biggest coronavirus danger, writes @HolmanJenkins https:\/\/t.co\/DZYHBc448X - via @WSJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HolmanJenkins","name":"Holman - Jenkins","id":387088436,"id_str":"387088436","indices":[54,68]},{"screen_name":"WSJ","name":"The - Wall Street Journal","id":3108351,"id_str":"3108351","indices":[97,101]}],"urls":[{"url":"https:\/\/t.co\/DZYHBc448X","expanded_url":"https:\/\/www.wsj.com\/articles\/fear-itself-is-the-biggest-coronavirus-danger-11582934423","display_url":"wsj.com\/articles\/fear-\u2026","indices":[69,92]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":397545273,"id_str":"397545273","name":"Jeffrey - Lord","screen_name":"realJeffreyLord","location":"Harrisburg, PA","description":"Reagan - White House, American Spectator, NewsBusters, Daily Caller. Penn Live. Author. - Interests: Politics, religion, writing, media.","url":"https:\/\/t.co\/P6wRbenPhL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/P6wRbenPhL","expanded_url":"https:\/\/thejeffreylord.com","display_url":"thejeffreylord.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":49598,"friends_count":300,"listed_count":561,"created_at":"Mon - Oct 24 20:48:38 +0000 2011","favourites_count":91,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24932,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194658750965129216\/Fes8YOpA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194658750965129216\/Fes8YOpA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/397545273\/1573306079","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566340157441,"id_str":"1234518566340157441","text":"RT - @ThePlumLineGS: Trump''s coronavirus response provides a big opening for Democrats - to make the case that his megalomania poses a serious\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThePlumLineGS","name":"Greg - Sargent","id":20508720,"id_str":"20508720","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294830333,"id_str":"294830333","name":"Helen\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83d\ude0b\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83d\udd25\ud83d\udd25","screen_name":"Helen504","location":"California, - USA","description":"News and coffee. resister And \nkettlecorn and beer\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4626,"friends_count":5058,"listed_count":7,"created_at":"Sat - May 07 21:15:50 +0000 2011","favourites_count":94437,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":112242,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1083165224927059968\/Ni7uWxeP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083165224927059968\/Ni7uWxeP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294830333\/1551136289","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:29:55 +0000 2020","id":1234501193931640833,"id_str":"1234501193931640833","text":"Trump''s - coronavirus response provides a big opening for Democrats to make the case - that his megalomania poses a ser\u2026 https:\/\/t.co\/NwhbaVDoSV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NwhbaVDoSV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234501193931640833","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":20508720,"id_str":"20508720","name":"Greg - Sargent","screen_name":"ThePlumLineGS","location":"","description":"A blog - about politics, politics, and politics","url":"https:\/\/t.co\/Bx7pTZ6DYZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Bx7pTZ6DYZ","expanded_url":"https:\/\/www.washingtonpost.com\/blogs\/plum-line\/","display_url":"washingtonpost.com\/blogs\/plum-lin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":259044,"friends_count":4166,"listed_count":6075,"created_at":"Tue - Feb 10 12:04:17 +0000 2009","favourites_count":5457,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":141523,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1027959547997110273\/z8InKK69_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1027959547997110273\/z8InKK69_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20508720\/1533919694","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1869,"favorite_count":4288,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1869,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566243840002,"id_str":"1234518566243840002","text":"RT - @icathi: Porque en el #ICATHI todas y todos somos importantes, cuidemos nuestra - salud evitando saludar de beso y mano, adem\u00e1s de seguir\u2026","truncated":false,"entities":{"hashtags":[{"text":"ICATHI","indices":[25,32]}],"symbols":[],"user_mentions":[{"screen_name":"icathi","name":"ICATHI","id":33926412,"id_str":"33926412","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":841780341895512065,"id_str":"841780341895512065","name":"ICATHI - METZTITLAN","screen_name":"ICATHIMetzti","location":"","description":"Capacitaci\u00f3n - para y en el trabajo del Estado de Hidalgo.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":219,"friends_count":147,"listed_count":0,"created_at":"Tue - Mar 14 22:37:27 +0000 2017","favourites_count":1514,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2819,"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\/1191488401700200448\/fA5Fubh1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191488401700200448\/fA5Fubh1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/841780341895512065\/1582578264","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 00:03:27 +0000 2020","id":1233543267980996608,"id_str":"1233543267980996608","text":"Porque - en el #ICATHI todas y todos somos importantes, cuidemos nuestra salud evitando - saludar de beso y mano, adem\u00e1\u2026 https:\/\/t.co\/uYJzhghOEq","truncated":true,"entities":{"hashtags":[{"text":"ICATHI","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uYJzhghOEq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233543267980996608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33926412,"id_str":"33926412","name":"ICATHI","screen_name":"icathi","location":"Pachuca - de Soto","description":"Somos un organismo de capacitaci\u00f3n p\u00fablico - descentralizado del Gobierno del Estado de Hidalgo sectorizado a la Secretar\u00eda - del Trabajo y Previsi\u00f3n Social","url":"https:\/\/t.co\/yArAd7yNOW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yArAd7yNOW","expanded_url":"http:\/\/www.icathi.edu.mx","display_url":"icathi.edu.mx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4211,"friends_count":503,"listed_count":20,"created_at":"Tue - Apr 21 14:53:21 +0000 2009","favourites_count":905,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10969,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBE4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191486483187810305\/hXaKdOec_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191486483187810305\/hXaKdOec_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33926412\/1582574684","profile_link_color":"19CF86","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":91,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":91,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566201741312,"id_str":"1234518566201741312","text":"RT - @AzharAliLeghari: An excellent speech by Singapore\u2019s Health Minister - Mr. Gan Kim Yong. \n\nAn excellent way of describing #coronavirus #Co\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[123,135]}],"symbols":[],"user_mentions":[{"screen_name":"AzharAliLeghari","name":"Azhar - Laghari","id":448269268,"id_str":"448269268","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1101854830962724864,"id_str":"1101854830962724864","name":"siap - 86","screen_name":"siapplapanenam","location":"","description":"g suka block!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":252,"friends_count":489,"listed_count":1,"created_at":"Sat - Mar 02 14:40:37 +0000 2019","favourites_count":14651,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4482,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222219856444968961\/zdOpkYoo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222219856444968961\/zdOpkYoo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101854830962724864\/1580235263","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 28 04:15:55 +0000 2020","id":1233244413016584192,"id_str":"1233244413016584192","text":"An - excellent speech by Singapore\u2019s Health Minister Mr. Gan Kim Yong. \n\nAn - excellent way of describing #coronavirus\u2026 https:\/\/t.co\/zuGAl7BUA8","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[102,114]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zuGAl7BUA8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233244413016584192","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":448269268,"id_str":"448269268","name":"Azhar - Laghari","screen_name":"AzharAliLeghari","location":"Pakistan","description":"Political - Analyst, I love nature, good music & traveling in mountains.","url":"https:\/\/t.co\/oaTNBgGGKH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oaTNBgGGKH","expanded_url":"https:\/\/www.youtube.com\/channel\/UCLznKaveodCyHj9SL55PLXw","display_url":"youtube.com\/channel\/UCLznK\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24333,"friends_count":80,"listed_count":39,"created_at":"Tue - Dec 27 20:23:35 +0000 2011","favourites_count":20340,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11015,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217144218432479232\/3zk1qOIj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217144218432479232\/3zk1qOIj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/448269268\/1579235577","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32677,"favorite_count":44501,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32677,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518566164140033,"id_str":"1234518566164140033","text":"RT - @SpeakerPelosi: The U.S. Government must do more to address the spread of - #coronavirus in a smart, strategic, and serious way. @SenSchum\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[77,89]}],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":938145907,"id_str":"938145907","name":"Carlene - Garrison Vos","screen_name":"CarleneGarriso6","location":"North Carolina, - USA","description":"NO DM''s!\u2764\ufe0fmy husband @Vosco1959 & our 2 dogs.\u2764\ufe0f#Outlander. - \u2764\ufe0f\ufe0fmy ctry. \u2764\ufe0f\ufe0fDad was a vet. #RightMatters\ud83c\udf0a#Resist - #JusticeIsComing #NotMyPresident","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4643,"friends_count":5103,"listed_count":5,"created_at":"Sat - Nov 10 01:23:15 +0000 2012","favourites_count":340411,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107341,"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\/1175509676781461506\/ynOBWf6W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1175509676781461506\/ynOBWf6W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/938145907\/1581457551","profile_link_color":"FF00FF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 27 16:12:59 +0000 2020","id":1233062480936685568,"id_str":"1233062480936685568","text":"The - U.S. Government must do more to address the spread of #coronavirus in a smart, - strategic, and serious way.\u2026 https:\/\/t.co\/hwnxzprDYL","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[58,70]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hwnxzprDYL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233062480936685568","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15764644,"id_str":"15764644","name":"Nancy - Pelosi","screen_name":"SpeakerPelosi","location":"San Francisco","description":"Speaker - of the House, focused on strengthening America''s middle class and creating - jobs; mother, grandmother, dark chocolate connoisseur.","url":"https:\/\/t.co\/jztVqrP3x5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jztVqrP3x5","expanded_url":"https:\/\/www.speaker.gov\/","display_url":"speaker.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4016036,"friends_count":362,"listed_count":18419,"created_at":"Thu - Aug 07 15:35:02 +0000 2008","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10087,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"385BA3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15764644\/1572273026","profile_link_color":"4B12E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5357,"favorite_count":24711,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5357,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:57 +0000 2020","id":1234518565874782209,"id_str":"1234518565874782209","text":"RT - @MedusaMermelada: con esto del coronavirus ya cada quien su novio eh, ya no - mamen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MedusaMermelada","name":"mermelada - de \ud835\udcf6\ud835\udcee\ud835\udced\ud835\udcfe\ud835\udcfc\ud835\udcea","id":111473655,"id_str":"111473655","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1218018738169155584,"id_str":"1218018738169155584","name":"Sof\u00edCast","screen_name":"SofCast8","location":"Distrito - Federal, M\u00e9xico","description":"\u00a1M\u00c9XICO, PUMAS, UNIVERSIDAD!\ud83c\udf3fU\ud83c\udf3f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":187,"friends_count":125,"listed_count":0,"created_at":"Fri - Jan 17 03:54:41 +0000 2020","favourites_count":783,"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\/1218019132765020167\/GKpl0Qkd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218019132765020167\/GKpl0Qkd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1218018738169155584\/1579234354","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 04:22:40 +0000 2020","id":1233970887453544448,"id_str":"1233970887453544448","text":"con - esto del coronavirus ya cada quien su novio eh, ya no mamen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111473655,"id_str":"111473655","name":"mermelada - de \ud835\udcf6\ud835\udcee\ud835\udced\ud835\udcfe\ud835\udcfc\ud835\udcea","screen_name":"MedusaMermelada","location":"","description":"en - este perfil amamos bob esponja\/\/ insta : jennsgonzalez_","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15805,"friends_count":6294,"listed_count":17,"created_at":"Fri - Feb 05 01:53:52 +0000 2010","favourites_count":26997,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":37163,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D68DB0","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\/1234306502443315201\/r5xSr1bV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234306502443315201\/r5xSr1bV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111473655\/1573692614","profile_link_color":"CC3366","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3979,"favorite_count":21414,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":3979,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518565828558849,"id_str":"1234518565828558849","text":"RT - @CNNSotu: \u201cIt is possible,\u201d Vice President Mike Pence says about - the possibility of more deaths from coronavirus. \u201cWe could have more - sa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNNSotu","name":"State - of the Union","id":17112878,"id_str":"17112878","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851052522924126208,"id_str":"851052522924126208","name":"M.J. - Schwartz","screen_name":"1koolmikey","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":27,"listed_count":0,"created_at":"Sun - Apr 09 12:41:48 +0000 2017","favourites_count":9729,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1754,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/852184684217978880\/BHW5buND_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/852184684217978880\/BHW5buND_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 14:13:41 +0000 2020","id":1234119622489759745,"id_str":"1234119622489759745","text":"\u201cIt - is possible,\u201d Vice President Mike Pence says about the possibility of - more deaths from coronavirus. \u201cWe could h\u2026 https:\/\/t.co\/Q3GrLvtjlI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Q3GrLvtjlI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234119622489759745","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":17112878,"id_str":"17112878","name":"State - of the Union","screen_name":"CNNSotu","location":"Washington, D.C.","description":"From - the staff of State of the Union w\/ @JakeTapper. Watch Sundays at 9a ET on - \ud83d\udcfa @CNN & \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f @CNNi + 12p ET on - @CNN. Always on \ud83d\udcf1\ud83d\udcbb https:\/\/t.co\/klSXjzLI6R! #CNNSOTU","url":"https:\/\/t.co\/eBi9jSp7W6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eBi9jSp7W6","expanded_url":"http:\/\/www.cnn.com\/sotu","display_url":"cnn.com\/sotu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/klSXjzLI6R","expanded_url":"http:\/\/CNN.com\/GO","display_url":"CNN.com\/GO","indices":[129,152]}]}},"protected":false,"followers_count":181619,"friends_count":6330,"listed_count":1898,"created_at":"Sun - Nov 02 10:52:24 +0000 2008","favourites_count":259,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":18970,"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\/878281253585387520\/uwUqAoQe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/878281253585387520\/uwUqAoQe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17112878\/1436480362","profile_link_color":"0F0101","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"9087FD","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":124,"favorite_count":341,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518565799243776,"id_str":"1234518565799243776","text":"2 - people in Tampa Bay area test presumptive positive for coronavirus, DOH monitoring - 184 people https:\/\/t.co\/fIT0FVmUo6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fIT0FVmUo6","expanded_url":"https:\/\/www.abcactionnews.com\/news\/national\/coronavirus\/two-presumptive-cases-of-coronavirus-reported-in-tampa-bay","display_url":"abcactionnews.com\/news\/national\/\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622392155,"id_str":"622392155","name":"johnb","screen_name":"pitdragon77","location":"","description":"I''m - a Power Sport Tech by trade Wyotech graduate enjoy building M\/X tracks and - testing them.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":620,"friends_count":1956,"listed_count":20,"created_at":"Sat - Jun 30 01:26:19 +0000 2012","favourites_count":524,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5646,"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\/662650184556486656\/GpkyV6ar_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662650184556486656\/GpkyV6ar_normal.jpg","profile_link_color":"DD2E44","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518565795115009,"id_str":"1234518565795115009","text":"donde - no ir\u00e9 en fin de curso por el coronavirus https:\/\/t.co\/pUJ7aghHVx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pUJ7aghHVx","expanded_url":"https:\/\/twitter.com\/Locat1ons\/status\/1234160319154606080","display_url":"twitter.com\/Locat1ons\/stat\u2026","indices":[48,71]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1019304345450446849,"id_str":"1019304345450446849","name":"noteputopilles","screen_name":"sspalomeeque_","location":"Madrid, - Comunidad de Madrid","description":"lo bonito no se ve,se conoce\u2728\n\n\n\n\nIg:_ssofiiappalomeeque_","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":135,"listed_count":0,"created_at":"Tue - Jul 17 19:34:28 +0000 2018","favourites_count":4071,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3792,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227257704474955777\/WlRGyo3a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227257704474955777\/WlRGyo3a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1019304345450446849\/1568838546","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234160319154606080,"quoted_status_id_str":"1234160319154606080","quoted_status":{"created_at":"Sun - Mar 01 16:55:24 +0000 2020","id":1234160319154606080,"id_str":"1234160319154606080","text":"Rome, - Italy \ud83c\uddee\ud83c\uddf9\nvia: giuliopugliese https:\/\/t.co\/X05tHchDgS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234160291878965248,"id_str":"1234160291878965248","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCePyFWkAAHjGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCePyFWkAAHjGt.jpg","url":"https:\/\/t.co\/X05tHchDgS","display_url":"pic.twitter.com\/X05tHchDgS","expanded_url":"https:\/\/twitter.com\/Locat1ons\/status\/1234160319154606080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":545,"h":680,"resize":"fit"},"large":{"w":1080,"h":1348,"resize":"fit"},"medium":{"w":961,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234160291878965248,"id_str":"1234160291878965248","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCePyFWkAAHjGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCePyFWkAAHjGt.jpg","url":"https:\/\/t.co\/X05tHchDgS","display_url":"pic.twitter.com\/X05tHchDgS","expanded_url":"https:\/\/twitter.com\/Locat1ons\/status\/1234160319154606080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":545,"h":680,"resize":"fit"},"large":{"w":1080,"h":1348,"resize":"fit"},"medium":{"w":961,"h":1200,"resize":"fit"}}},{"id":1234160291891511302,"id_str":"1234160291891511302","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCePyIWAAYpEw_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCePyIWAAYpEw_.jpg","url":"https:\/\/t.co\/X05tHchDgS","display_url":"pic.twitter.com\/X05tHchDgS","expanded_url":"https:\/\/twitter.com\/Locat1ons\/status\/1234160319154606080\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1347,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":962,"h":1200,"resize":"fit"},"small":{"w":545,"h":680,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1213424291208777734,"id_str":"1213424291208777734","name":"Locations - \ud83d\uddfa","screen_name":"Locat1ons","location":"Earth","description":"\u26f1","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14444,"friends_count":4,"listed_count":45,"created_at":"Sat - Jan 04 11:38:01 +0000 2020","favourites_count":55,"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\/1213439352308715521\/6gDw8tVB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213439352308715521\/6gDw8tVB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213424291208777734\/1579899381","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1042,"favorite_count":5514,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518565744627713,"id_str":"1234518565744627713","text":"@KatAtDisney - Your chances of dying on the roads are significantly higher than the Coronavirus... - stop the Paranoia https:\/\/t.co\/POlBhdJmgs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KatAtDisney","name":"Military - Meowsketeer","id":1044702459971719168,"id_str":"1044702459971719168","indices":[0,12]}],"urls":[],"media":[{"id":1234518560325558273,"id_str":"1234518560325558273","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkFwDU4AE8PdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkFwDU4AE8PdK.jpg","url":"https:\/\/t.co\/POlBhdJmgs","display_url":"pic.twitter.com\/POlBhdJmgs","expanded_url":"https:\/\/twitter.com\/robcschweitzer\/status\/1234518565744627713\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":837,"h":485,"resize":"fit"},"small":{"w":680,"h":394,"resize":"fit"},"large":{"w":837,"h":485,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518560325558273,"id_str":"1234518560325558273","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkFwDU4AE8PdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkFwDU4AE8PdK.jpg","url":"https:\/\/t.co\/POlBhdJmgs","display_url":"pic.twitter.com\/POlBhdJmgs","expanded_url":"https:\/\/twitter.com\/robcschweitzer\/status\/1234518565744627713\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":837,"h":485,"resize":"fit"},"small":{"w":680,"h":394,"resize":"fit"},"large":{"w":837,"h":485,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234280226743635969,"in_reply_to_status_id_str":"1234280226743635969","in_reply_to_user_id":1044702459971719168,"in_reply_to_user_id_str":"1044702459971719168","in_reply_to_screen_name":"KatAtDisney","user":{"id":115561961,"id_str":"115561961","name":"Schweitzer - Falls","screen_name":"robcschweitzer","location":"The Sonoran Desert","description":"An - Enthusiast of Disney and Halloween","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":300,"friends_count":821,"listed_count":5,"created_at":"Fri - Feb 19 02:58:50 +0000 2010","favourites_count":5693,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3389,"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\/711720642\/mickey-ears-10282009-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/711720642\/mickey-ears-10282009-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115561961\/1388528824","profile_link_color":"485A08","profile_sidebar_border_color":"8E8080","profile_sidebar_fill_color":"292D1A","profile_text_color":"8E8080","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518565652443136,"id_str":"1234518565652443136","text":"RT - @FIGHT_2_KAG: NBC''s Chuck Todd is misleading the American people.\n\nDems - & the MSM are politicizing coronavirus, NOT Republicans.\n\nSo @ch\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FIGHT_2_KAG","name":"Nancy\u2019s - Fight 4 Freedom TEXT TRUMP 88022","id":454513795,"id_str":"454513795","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2751254297,"id_str":"2751254297","name":"\u274cChocolate - Chip, NO DIRECT MESSAGING \u274c","screen_name":"YMcglaun","location":"United - States","description":"Christian, Conservative,#MAGA\nSupporter of Israel, God''s - Heart,\nNO DM. TRUMP 2020, 26 years Military Life. Dad, US ARMY, Husband, - US NAVY, #KAG","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15168,"friends_count":14885,"listed_count":117,"created_at":"Mon - Aug 25 22:32:50 +0000 2014","favourites_count":342956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":436521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695368366974902272\/-_i8wpTu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695368366974902272\/-_i8wpTu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2751254297\/1429497703","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:27:17 +0000 2020","id":1234470332347498498,"id_str":"1234470332347498498","text":"NBC''s - Chuck Todd is misleading the American people.\n\nDems & the MSM are politicizing - coronavirus, NOT Republicans.\u2026 https:\/\/t.co\/CxficcxAey","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CxficcxAey","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234470332347498498","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":454513795,"id_str":"454513795","name":"Nancy\u2019s - Fight 4 Freedom TEXT TRUMP 88022","screen_name":"FIGHT_2_KAG","location":"USA","description":"\ud83d\udd04RETWEETS - get SEEN\ud83d\udd04 \u2605 PATRIOT\u2605ProLife\u2605NRA\u26052A\u2605NAVY - MOM\u2605BuildTheWall \u2605MAGA\u2605KAG\u2605Schoolw\/\u00d8bama\ud83d\ude48 - \u2605NOT a BOT\u2605 FB:@DineshDSouza @GenFlynn @PragerU @DailySignal","url":"https:\/\/t.co\/BoWhMn5ex8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BoWhMn5ex8","expanded_url":"https:\/\/www.promiseskept.com","display_url":"promiseskept.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":77996,"friends_count":51653,"listed_count":304,"created_at":"Wed - Jan 04 02:38:05 +0000 2012","favourites_count":67715,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":137246,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230745224495820803\/RpeTIqDa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230745224495820803\/RpeTIqDa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454513795\/1582229353","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":79,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":75,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518565497163776,"id_str":"1234518565497163776","text":"RT - @rabiasquared: Maybe don''t hug the pets because apparently dogs can get coronavirus - but just foot bump them and ladies stock up on sanit\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rabiasquared","name":"rabia - O''chaudry","id":2209742392,"id_str":"2209742392","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":915807101493972992,"id_str":"915807101493972992","name":"Outoutdangspot","screen_name":"Cgoinggal","location":"","description":"Tweet-track - of what happened for my kids to learn from when they are older. Here''s to - hoping it is not a trail of breadcrumbs to find their way back from.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":233,"friends_count":723,"listed_count":2,"created_at":"Thu - Oct 05 05:13:22 +0000 2017","favourites_count":133713,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":162040,"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\/973815116817985536\/C66TG7Tl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/973815116817985536\/C66TG7Tl_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:24:15 +0000 2020","id":1234499769810202626,"id_str":"1234499769810202626","text":"Maybe - don''t hug the pets because apparently dogs can get coronavirus but just foot - bump them and ladies stock up on\u2026 https:\/\/t.co\/MvevicfTd4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MvevicfTd4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234499769810202626","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2209742392,"id_str":"2209742392","name":"rabia - O''chaudry","screen_name":"rabiasquared","location":"Washington DC","description":"Attorney, - Advocate, NYT Bestselling Author.\nHost\/producer of shows\n@Undisclosedpod - & @45thpod \nRepped by @collectivespkrs\ncontact: https:\/\/t.co\/tSGHTNZQB4","url":"https:\/\/t.co\/pyycuGBrdJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pyycuGBrdJ","expanded_url":"http:\/\/www.rabiachaudry.com","display_url":"rabiachaudry.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/tSGHTNZQB4","expanded_url":"http:\/\/rabiachaudry.com","display_url":"rabiachaudry.com","indices":[132,155]}]}},"protected":false,"followers_count":183502,"friends_count":3913,"listed_count":1521,"created_at":"Fri - Dec 06 03:09:44 +0000 2013","favourites_count":256402,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":146687,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CEF5EE","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\/1158610208412884992\/IuS0og8O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158610208412884992\/IuS0og8O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2209742392\/1551894604","profile_link_color":"090A09","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234476765772423169,"quoted_status_id_str":"1234476765772423169","quoted_status":{"created_at":"Mon - Mar 02 13:52:51 +0000 2020","id":1234476765772423169,"id_str":"1234476765772423169","text":"MONDAY. - We''re all worried. It''s okay! Be good to others and yourself. Buy a book. - Hug your pets. Breathe in, breath\u2026 https:\/\/t.co\/HpD2KXPF1S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HpD2KXPF1S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234476765772423169","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":26029878,"id_str":"26029878","name":"Chuck - Wendig","screen_name":"ChuckWendig","location":"Bucks County, PA","description":"NYT-bestselling - applefluencer. Wanderers | Miriam Black | Zer0es | Invasive | Star Wars | - Damn Fine Story | Sundance Lab alum | played by Alyson Hannigan | NSFW","url":"https:\/\/t.co\/9rEGJ0fEe5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9rEGJ0fEe5","expanded_url":"http:\/\/www.terribleminds.com","display_url":"terribleminds.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":167359,"friends_count":3701,"listed_count":4257,"created_at":"Mon - Mar 23 16:10:29 +0000 2009","favourites_count":85090,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":316846,"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\/1132461297864462336\/QY0oLtBl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1132461297864462336\/QY0oLtBl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26029878\/1576103429","profile_link_color":"FF0000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":306,"favorite_count":1993,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":3,"favorite_count":120,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234476765772423169,"quoted_status_id_str":"1234476765772423169","retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518565493055488,"id_str":"1234518565493055488","text":"RT - @DrWaumiau: Coronavirus Pocher vs. Wendler\n \ud83e\udd1d\n Massenverbl\u00f6dung","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrWaumiau","name":"Nicht - Chevy Chase","id":19523873,"id_str":"19523873","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":731509846957297664,"id_str":"731509846957297664","name":"Ruhrtalradler","screen_name":"ruhrtalradler","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":62,"listed_count":1,"created_at":"Sat - May 14 15:41:53 +0000 2016","favourites_count":5752,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":314,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 05:25:08 +0000 2020","id":1234348994857512960,"id_str":"1234348994857512960","text":"Coronavirus Pocher - vs. Wendler\n \ud83e\udd1d\n Massenverbl\u00f6dung","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19523873,"id_str":"19523873","name":"Nicht - Chevy Chase","screen_name":"DrWaumiau","location":"","description":"\u00bbJa, - ich bin''s nicht!\u00ab","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48180,"friends_count":287,"listed_count":825,"created_at":"Mon - Jan 26 07:21:07 +0000 2009","favourites_count":428243,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33671,"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\/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\/1219120415525756928\/FE1AX5dz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219120415525756928\/FE1AX5dz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19523873\/1477975662","profile_link_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":1046,"favorited":false,"retweeted":false,"lang":"de"},"is_quote_status":false,"retweet_count":71,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518565266579459,"id_str":"1234518565266579459","text":"RT - @CorSport: #Coronavirus, cambia il calendario di A: ecco cosa pu\u00f2 succedere - https:\/\/t.co\/wuK2i26iBV","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[14,26]}],"symbols":[],"user_mentions":[{"screen_name":"CorSport","name":"Corriere - dello Sport","id":14932455,"id_str":"14932455","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/wuK2i26iBV","expanded_url":"https:\/\/www.corrieredellosport.it\/news\/calcio\/serie-a\/2020\/03\/02-67356715\/coronavirus_cambia_il_calendario_di_a_ecco_cosa_pu_succedere\/","display_url":"corrieredellosport.it\/news\/calcio\/se\u2026","indices":[79,102]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1710513018,"id_str":"1710513018","name":"Ugo - Baroni","screen_name":"UgoBaroni","location":"Lucca, Toscana - Tuscany - Ita","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2195,"friends_count":4804,"listed_count":78,"created_at":"Thu - Aug 29 17:17:32 +0000 2013","favourites_count":255370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":215015,"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\/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\/1095354743562661888\/M92Seb7A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095354743562661888\/M92Seb7A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1710513018\/1473719115","profile_link_color":"91D2FA","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 10:30:00 +0000 2020","id":1234425720719511552,"id_str":"1234425720719511552","text":"#Coronavirus, - cambia il calendario di A: ecco cosa pu\u00f2 succedere https:\/\/t.co\/wuK2i26iBV","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wuK2i26iBV","expanded_url":"https:\/\/www.corrieredellosport.it\/news\/calcio\/serie-a\/2020\/03\/02-67356715\/coronavirus_cambia_il_calendario_di_a_ecco_cosa_pu_succedere\/","display_url":"corrieredellosport.it\/news\/calcio\/se\u2026","indices":[65,88]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.falcon.io\" rel=\"nofollow\"\u003eFalcon Social Media - Management \u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14932455,"id_str":"14932455","name":"Corriere - dello Sport","screen_name":"CorSport","location":"Roma","description":"Account - ufficiale del Corriere dello Sport. Tutte le notizie di #calcio, #motori, - altri #sport, dirette e risultati!","url":"https:\/\/t.co\/Lz1C8y7ciK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Lz1C8y7ciK","expanded_url":"http:\/\/www.corrieredellosport.it","display_url":"corrieredellosport.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700826,"friends_count":1319,"listed_count":3439,"created_at":"Wed - May 28 10:38:00 +0000 2008","favourites_count":186,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":144336,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F1F1F1","profile_background_image_url":"http:\/\/abs.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\/525218564983099392\/_FlAP0i2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/525218564983099392\/_FlAP0i2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14932455\/1516802752","profile_link_color":"0022F1","profile_sidebar_border_color":"FF164D","profile_sidebar_fill_color":"FEFFF2","profile_text_color":"020015","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"it"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564910043137,"id_str":"1234518564910043137","text":"The - geography of #Coronavirus: Tracking the Spread of the Outbreak https:\/\/t.co\/fYO0LlWKh1","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[17,29]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fYO0LlWKh1","expanded_url":"https:\/\/nyti.ms\/2t6WE75","display_url":"nyti.ms\/2t6WE75","indices":[67,90]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3341198241,"id_str":"3341198241","name":"HELECON","screen_name":"Spiros209","location":"EUROPE","description":"I - am interested in economics, project Europe, public discourse art and history. - I tweet about Europe (including Greece and UK) and USA.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6809,"friends_count":2928,"listed_count":186,"created_at":"Mon - Jun 22 12:45:25 +0000 2015","favourites_count":81621,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":79760,"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\/696240645917253632\/9EE-CQ-M_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/696240645917253632\/9EE-CQ-M_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3341198241\/1464894556","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"},"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564687663110,"id_str":"1234518564687663110","text":"RT - @Mmarty1230: Coronavirus fears rise after two deaths in Washington state: - \"You just don''t know who you''re next to\" https:\/\/t.co\/c1Qmst4P\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mmarty1230","name":"Marty","id":831651493329580032,"id_str":"831651493329580032","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1178431670396997632,"id_str":"1178431670396997632","name":"Lisa - SkyArt","screen_name":"LisaSkyart","location":"","description":"Former Democrat - who #WalkAway from lyes and deception. I can\u2019t stand and support anymore - how #liberals are destroying our Country! #WWG1WGA \ud83d\udc4a\ud83c\udffb\ud83c\uddfa\ud83c\uddf8 - #TRUMP2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5187,"friends_count":5480,"listed_count":1,"created_at":"Sun - Sep 29 22:09:57 +0000 2019","favourites_count":492,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12988,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219856870485024768\/1K1pIZlK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219856870485024768\/1K1pIZlK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1178431670396997632\/1579671517","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:17:11 +0000 2020","id":1234513089933889537,"id_str":"1234513089933889537","text":"Coronavirus - fears rise after two deaths in Washington state: \"You just don''t know who - you''re next to\" https:\/\/t.co\/c1Qmst4Puc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/c1Qmst4Puc","expanded_url":"https:\/\/www.cbsnews.com\/news\/coronavirus-washington-state-seattle-death-nursing-home-fears-rise\/","display_url":"cbsnews.com\/news\/coronavir\u2026","indices":[102,125]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":831651493329580032,"id_str":"831651493329580032","name":"Marty","screen_name":"Mmarty1230","location":"California, - USA","description":"PRESIDENT TRUMP SUPPORTER","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30679,"friends_count":33739,"listed_count":53,"created_at":"Tue - Feb 14 23:49:02 +0000 2017","favourites_count":488283,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":586017,"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\/869011593874423808\/4l4RM1fl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/869011593874423808\/4l4RM1fl_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564666736640,"id_str":"1234518564666736640","text":"RT - @ewarren: My new plan for coronavirus response:\n1. Ensure every American - can get all recommended care for coronavirus for free.\n2. Creat\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821772074020700169,"id_str":"821772074020700169","name":"Persephone","screen_name":"liliesareweeds","location":"New - Orleans, LA","description":"Lily, Writer, Bipolar, Chaotic opinionated whirlwind - of a woman who the local children think is a witch or a faerie. The local - children are, as always, correct.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":395,"listed_count":0,"created_at":"Wed - Jan 18 17:31:45 +0000 2017","favourites_count":9887,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13798,"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\/1039402951104778240\/YQWZPyF3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039402951104778240\/YQWZPyF3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821772074020700169\/1549066235","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:05:17 +0000 2020","id":1234510093963624448,"id_str":"1234510093963624448","text":"My - new plan for coronavirus response:\n1. Ensure every American can get all recommended - care for coronavirus for fre\u2026 https:\/\/t.co\/6Afxl67CH4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6Afxl67CH4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510093963624448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357606935,"id_str":"357606935","name":"Elizabeth - Warren","screen_name":"ewarren","location":"Massachusetts","description":"U.S. - Senator, former teacher, and candidate for president. Wife, mom (Amelia, Alex, - Bailey, @CFPB), grandmother, and Okie. She\/her. Official campaign account.","url":"https:\/\/t.co\/5jpXuSnwli","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5jpXuSnwli","expanded_url":"http:\/\/ewar.ren\/chip-in","display_url":"ewar.ren\/chip-in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3831315,"friends_count":521,"listed_count":15758,"created_at":"Thu - Aug 18 16:43:48 +0000 2011","favourites_count":116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9199,"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\/1215406626049413121\/LiVKh64l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215406626049413121\/LiVKh64l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357606935\/1578610497","profile_link_color":"232444","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"7DA6D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5538,"favorite_count":22071,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5538,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564603908096,"id_str":"1234518564603908096","text":"@FlakfireGaming - And peeps would be safe against the coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FlakfireGaming","name":"Flakfire","id":698286674132889600,"id_str":"698286674132889600","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234517062896226304,"in_reply_to_status_id_str":"1234517062896226304","in_reply_to_user_id":698286674132889600,"in_reply_to_user_id_str":"698286674132889600","in_reply_to_screen_name":"FlakfireGaming","user":{"id":994108799844782080,"id_str":"994108799844782080","name":"KonteDraco","screen_name":"KonteDraco","location":"Austria","description":"Battlefield - player by night \ud83d\udd2b Tramway turnout engineer by day \ud83d\ude87\ud83d\ude8b\ud83d\udd27 - Car enthusiast all the way\ud83d\ude98https:\/\/t.co\/F9PeYtFlux XBOX\/PSN\/ORIGIN\/EA-ID: - KonteD","url":"https:\/\/t.co\/ySHE52yFzc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ySHE52yFzc","expanded_url":"https:\/\/www.flickr.com\/people\/kontedrac0\/","display_url":"flickr.com\/people\/kontedr\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/F9PeYtFlux","expanded_url":"http:\/\/youtube.com\/user\/Alin2002","display_url":"youtube.com\/user\/Alin2002","indices":[93,116]}]}},"protected":false,"followers_count":1560,"friends_count":1842,"listed_count":5,"created_at":"Wed - May 09 06:56:22 +0000 2018","favourites_count":27352,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17833,"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\/1173509359319638016\/RhO9bEOs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1173509359319638016\/RhO9bEOs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/994108799844782080\/1580516546","profile_link_color":"00FF7F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564582850561,"id_str":"1234518564582850561","text":"RT - @almuariza: Los turistas no se resignan y siguen concentrados ante el #Louvre. - \nEl museo m\u00e1s visitado del mundo sigue hoy cerrado -segu\u2026","truncated":false,"entities":{"hashtags":[{"text":"Louvre","indices":[74,81]}],"symbols":[],"user_mentions":[{"screen_name":"almuariza","name":"Almudena - Ariza","id":248104475,"id_str":"248104475","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":555793892,"id_str":"555793892","name":"RR - NEWS","screen_name":"RosaRodaNews","location":"Murcia-Spain","description":"Periodista. - Cuenta personal. Art. 20 Constituci\u00f3n. No tolero insultos.\ud83c\uddea\ud83c\uddf8\ud83c\udf0d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8408,"friends_count":2001,"listed_count":148,"created_at":"Tue - Apr 17 08:27:54 +0000 2012","favourites_count":1671,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":61697,"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\/2167319067\/images_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2167319067\/images_normal.jpeg","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 11:55:18 +0000 2020","id":1234447183535058946,"id_str":"1234447183535058946","text":"Los - turistas no se resignan y siguen concentrados ante el #Louvre. \nEl museo - m\u00e1s visitado del mundo sigue hoy cerr\u2026 https:\/\/t.co\/66xUVfYUlo","truncated":true,"entities":{"hashtags":[{"text":"Louvre","indices":[59,66]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/66xUVfYUlo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234447183535058946","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248104475,"id_str":"248104475","name":"Almudena - Ariza","screen_name":"almuariza","location":"Par\u00eds, Francia","description":"Reportera - de TVE y Corresponsal. Maratoniana y salsera. Desenganch\u00e1ndome de Nueva - York -todav\u00eda, s\u00ed- y descubriendo Par\u00eds. Aqu\u00ed, hablo solo - en mi nombre.","url":"https:\/\/t.co\/GX2MqHUAbi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GX2MqHUAbi","expanded_url":"https:\/\/www.instagram.com\/almudena.ariza","display_url":"instagram.com\/almudena.ariza","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":109217,"friends_count":1176,"listed_count":2143,"created_at":"Sun - Feb 06 07:40:52 +0000 2011","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12021,"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\/1042143938872860674\/rroD5sVZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1042143938872860674\/rroD5sVZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248104475\/1369515264","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":68,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564557721605,"id_str":"1234518564557721605","text":"RT - @EmsieJeaine: wow... not much media coverage on this story re: #nazaninzaghariratcliffe - ... negotiations for Nazanin\u2019s release from an I\u2026","truncated":false,"entities":{"hashtags":[{"text":"nazaninzaghariratcliffe","indices":[66,90]}],"symbols":[],"user_mentions":[{"screen_name":"EmsieJeaine","name":"Emma - Jean \ud83c\udfad\ud83c\udfa5\ud83c\udfac\ud83c\uddea\ud83c\uddfa","id":1390088702,"id_str":"1390088702","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2654704009,"id_str":"2654704009","name":"Kathleen - \ud83c\uddea\ud83c\uddfa","screen_name":"kthslvn","location":"Scotland, United - Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":603,"friends_count":785,"listed_count":0,"created_at":"Thu - Jul 17 19:29:02 +0000 2014","favourites_count":24397,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16521,"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\/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\/1223169967476150272\/LVMPtfd8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223169967476150272\/LVMPtfd8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2654704009\/1575291379","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:00:44 +0000 2020","id":1234508951384993792,"id_str":"1234508951384993792","text":"wow... - not much media coverage on this story re: #nazaninzaghariratcliffe ... negotiations - for Nazanin\u2019s release fr\u2026 https:\/\/t.co\/QnOLoAHxYu","truncated":true,"entities":{"hashtags":[{"text":"nazaninzaghariratcliffe","indices":[49,73]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QnOLoAHxYu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234508951384993792","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1390088702,"id_str":"1390088702","name":"Emma - Jean \ud83c\udfad\ud83c\udfa5\ud83c\udfac\ud83c\uddea\ud83c\uddfa","screen_name":"EmsieJeaine","location":"LONDON\u2022LA\u2022NYC","description":"Actress - \u2022 Voiceover \u2022 Writer \u2022 The Method Studio \u2022 Royal Central - School of Speech & Drama \u2022 https:\/\/t.co\/riBhBdrkDC \u2022 Capricorn - \u2651\ufe0f \u2022 Vegan\ud83c\udf31\u2022","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/riBhBdrkDC","expanded_url":"http:\/\/SPOTLIGHT.COM","display_url":"SPOTLIGHT.COM","indices":[92,115]}]}},"protected":false,"followers_count":1885,"friends_count":1838,"listed_count":43,"created_at":"Mon - Apr 29 17:57:12 +0000 2013","favourites_count":2955,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7381,"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\/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\/3592266816\/3d4d297447fee38b669a4a7620c12137_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3592266816\/3d4d297447fee38b669a4a7620c12137_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1390088702\/1400001235","profile_link_color":"00B8AF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233842000811757568,"quoted_status_id_str":"1233842000811757568","quoted_status":{"created_at":"Sat - Feb 29 19:50:31 +0000 2020","id":1233842000811757568,"id_str":"1233842000811757568","text":"This - is why they announced the baby *and* the engagement. #PritiPatel #NazaninZaghariRatcliffe - https:\/\/t.co\/AiBN8njx0T","truncated":false,"entities":{"hashtags":[{"text":"PritiPatel","indices":[58,69]},{"text":"NazaninZaghariRatcliffe","indices":[70,94]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AiBN8njx0T","expanded_url":"https:\/\/www.theguardian.com\/news\/2020\/feb\/29\/nazanin-zaghari-ratcliffe-family-believe-she-has-coronavirus?CMP=Share_iOSApp_Other","display_url":"theguardian.com\/news\/2020\/feb\/\u2026","indices":[95,118]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20098015,"id_str":"20098015","name":"David - Schneider","screen_name":"davidschneider","location":"London","description":"Actor, - writer, director, fool. Less ranty version at https:\/\/t.co\/BYepJwQHP7\u2026","url":"https:\/\/t.co\/X200PvU1Tu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/X200PvU1Tu","expanded_url":"http:\/\/thatlot.co.uk","display_url":"thatlot.co.uk","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/BYepJwQHP7","expanded_url":"http:\/\/instagram.com\/davidschneider","display_url":"instagram.com\/davidschneider","indices":[53,76]}]}},"protected":false,"followers_count":443731,"friends_count":1569,"listed_count":4420,"created_at":"Wed - Feb 04 21:47:34 +0000 2009","favourites_count":14200,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":39510,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/937241076116672513\/E31_C1th_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/937241076116672513\/E31_C1th_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20098015\/1558880930","profile_link_color":"263D45","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2321,"favorite_count":5009,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":16,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233842000811757568,"quoted_status_id_str":"1233842000811757568","retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.094,"max_id":1234518572921237508,"max_id_str":"1234518572921237508","next_results":"?max_id=1234518564557721604&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1234518572921237508&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:41 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=the%20marshes%20in%20the%20valley.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:41 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1224014423423168516/yJeT8pys_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '343772' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:41 GMT - Last-Modified: - - Sun, 02 Feb 2020 16:57:14 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1224014423423168516 - X-Cache: - - HIT - X-Connection-Hash: - - 460ba4bcde30e0c2b2fa7dfd0e7eccbe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:41 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=the%20marshes%20in%20the%20valley.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:41 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Schweiz&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:41 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:41 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1069533375323611136/nPPI37tI_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1608' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Last-Modified: - - Mon, 03 Dec 2018 10:04:42 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1069533375323611136 - X-Cache: - - HIT - X-Connection-Hash: - - febd6bf42722d2323d21086c2a9b82d4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Schweiz&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Boston,%20MA,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1189970295802732545/oCbwHshN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '324121' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Last-Modified: - - Thu, 31 Oct 2019 18:18:01 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1189970295802732545 - X-Cache: - - HIT - X-Connection-Hash: - - 26139320cf80a899cf47dbdf05fe7b88 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '165' - Content-Length: - - '1905' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Boston,%20MA,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Snapchat:%20Actufoot&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1079542234465341442/uNUlKEw__bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '163062' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Last-Modified: - - Mon, 31 Dec 2018 00:56:20 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1079542234465341442 - X-Cache: - - HIT - X-Connection-Hash: - - 43687016a690bb72ef8079d4fe1dc8b0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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AAAAAAAAAAAAAABA/9oACAECAQE/EE//xAAjEAEBAAICAgEEAwAAAAAAAAABEQAhMUEgUYEQQFBhcZGh/9oACAEBAAE/EPto8qkm9lRJ6FchnVH3xp+LlL2MeuTY/wA+Y7BSpU7DgoZuI1RzhGD7qEk2EVqiAy4i6aOAKBDvun6zs5r8XQsaPVc6ufblYW2h261lJgReNITQ6N5c6JYLKAKXwovCYLRj+1xebKFVeV+pSVegSYuQGiCxlhlxFt3mz5QEb0Ysve4Tg8ChO1fDW68C0M6BJ6adDh+DChqgqDKoGyyIXOCkxaVbN44C443epcA7BOeSYKtHWpAVpmyOcOEMpE++qKJg4OYQ4WtACAfHiVZhafUaF6Kh0YUbJP7AP9g5oSDTQOA4DoAD8J//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Snapchat:%20Actufoot&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Nairobi&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:42 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/991009962506838017/wHHBPmAo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '139037' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:42 GMT - Last-Modified: - - Mon, 30 Apr 2018 17:40:41 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/991009962506838017 - X-Cache: - - HIT - X-Connection-Hash: - - bd2f926ee240e5104ef49cc353ad8502 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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T7hjNKYghDKYC3wyWLtwO1SLPmW2R0PyN3nhRR1U9iipOXhQhpglMWhKehQpYlSLgVtqhTgUlKaZCKEh1Y28xYjS/wDQheBSR9WaqSczJ2SnkR+TtE8Ve2pOQdGkfvY52Ya74VUQ0ooZNpdRFFparSt/6MVo+xdoltGLSM42co5Q3mIerxhF1COWRQ1udiGjYEmQqIPbUQ8LhQ09mNZ1X5FsUn3Ijwm7CV+TIkydgjzYr9lnli+F3TMj5EivpoLzgdf001VNOtlTGsgQlrFyx1g2zgqyotpGY284QPGtI7JtbSQaYCOkOkz6IL33hPeGd0M7wr1kZHQfjvh//9oADAMBAAIAAwAAABBICisuKq/u2GTuChPSuQFy6Vaj/8QAHREBAQACAwADAAAAAAAAAAAAAQARMRAhQVFhkf/aAAgBAwEBPxAqAe+GDTfI2XyF8jzL6pzakPH5CdJAYZolshwG1eSYHqW7gOCQGbwuihdt/8QAHBEBAQACAwEBAAAAAAAAAAAAAQARMSFBURCh/9oACAECAQE/EKu18Sdk9BYO59p9pHselhbSjaAYzcjltVf2XnQnaiplVz8tksWBLkndkjxf/8QAJhABAAICAQQBBAMBAAAAAAAAAQARITFRQWFxgfAQkaGxwdHh8f/aAAgBAQABPxAyoeumHtflsJgQZzGXJOq2Sq4TzC0SjswTZO9x5D3B6Pc/RjBQbsH6JVrylooc6s3R6jAamwzL6tW3OH1EABi6RxQgbar1LAzjShL/AO+HbMU9J252Ze1HZcrYrkH6iOgnmCf8hZs+Se0cImcT4CsK8MSy3C8yiuDWUOhC0TUd0mzzKoQ6RuDEKrTDO5DG15Soxirq/UtU1cRRuxW8Z7al3IAQoFZYLsOtb1G9ol2McYDIC83cu7XVipyZIogOrGbipcBQhZZkybzy3eYgIFlhyUKMHefEaVAHgnA4L1y5z6gyrJZ4CgaO38z/AIUQFUHuPzsrcbBrEKtqTCR68RdV34gGiz2lSiXAVn0LFr9EvFn6TaQ8scps4Lf1FtF03YBLNgBbDPqG6ybblXWoz1d3sbMfMwpdCwg6M7H3f6ibedJWfsxG5mqLfiBS/oLH4gEEbMg+7Utfyh7qHntaWsKm88BuZNwk68lnDY2G5TNiosGUpRTfe4x0AUrSmkvL0+llupkICrYXqpBNXsiIj0a00OeWW8OzaWjklaOktCAK476N4O+ZhmL0FYUsfId4xosUg+d17qMQicQwp4L01cAb2VudxWzfXvA3bCpZSpT/AEP6nzfJPxf4nzXE+D5n4M+T2nxHE+B4n6X6P//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:43 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Nairobi&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:43 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:43 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toda%20Venezuela&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:43 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:43 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1170461310578020352/QR94w9v__bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1609' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:43 GMT - Last-Modified: - - Sat, 07 Sep 2019 22:16:17 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1170461310578020352 - X-Cache: - - HIT - X-Connection-Hash: - - f1ee58c101503ea88696a27eab3a1000 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:43 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toda%20Venezuela&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:43 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:43 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal%20%F0%9F%87%B5%F0%9F%87%B9&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:43 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:43 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1170278499933986817/RZPmssZM_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '49988' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:43 GMT - Last-Modified: - - Sat, 07 Sep 2019 10:09:51 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1170278499933986817 - X-Cache: - - HIT - X-Connection-Hash: - - 0c99b1779971e521f2a30aa81033dae7 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:43 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal%20%F0%9F%87%B5%F0%9F%87%B9&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:43 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:43 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234517925341663232.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="66764f024073652e0d1a16fed28aef2a", - oauth_signature="qTDs7cegOMSQPdRUPqGK1uZ0QXs%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257063", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2188' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:44 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:44 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325706440605761; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:44 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_HUwL0G/Eryo3B3MaCTPzwg=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:44 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 32234dba8c14a9eb3878347271d472a2 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '870' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '134' - X-Transaction: - - 00e385fa00e962ba - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:36:24 +0000 2020","id":1234517925341663232,"id_str":"1234517925341663232","text":"@jr_ferreira_ - Tem \"vacina\" especial.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jr_ferreira_","name":"jr - ferreira","id":4310025034,"id_str":"4310025034","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234510881519697920,"in_reply_to_status_id_str":"1234510881519697920","in_reply_to_user_id":4310025034,"in_reply_to_user_id_str":"4310025034","in_reply_to_screen_name":"jr_ferreira_","user":{"id":1158282059363868672,"id_str":"1158282059363868672","name":"Tjota","screen_name":"tjota007","location":"Portugal","description":"Figura - d''urso muitas.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":194,"friends_count":347,"listed_count":0,"created_at":"Mon - Aug 05 07:42:17 +0000 2019","favourites_count":5074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3380,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158289477451825152\/bRToY3AN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158289477451825152\/bRToY3AN_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1158282059363868672\/1565509956","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:44 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:44 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:44 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1158289477451825152/bRToY3AN_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '90049' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:44 GMT - Last-Modified: - - Mon, 05 Aug 2019 08:09:46 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1158289477451825152 - X-Cache: - - HIT - X-Connection-Hash: - - 3c2b57da637276f86db75b2fff882b2f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '7957' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:44 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:44 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:44 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234510881519697920.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="c07fd8e09675c785ff8d3f3f08aefe8a", - oauth_signature="wPl%2FMloMNFU%2B23iM8af%2BuEJGLiQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257064", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2484' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:45 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:45 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325706536774320; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:45 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_8mQQQx2rw9Ae/rpiTJVbzA=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:45 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 01c6a157dfee84f8fd0de010b8735232 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '869' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '125' - X-Transaction: - - 00d2240d00ecc503 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:08:24 +0000 2020","id":1234510881519697920,"id_str":"1234510881519697920","text":"@tjota007 - Se isto for verdade era mand\u00e1-los todoa para a Coreia do Norte.\nO Kim - tem um tratamento especial para isto :)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tjota007","name":"Tjota","id":1158282059363868672,"id_str":"1158282059363868672","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":1234507568745263104,"in_reply_to_status_id_str":"1234507568745263104","in_reply_to_user_id":1158282059363868672,"in_reply_to_user_id_str":"1158282059363868672","in_reply_to_screen_name":"tjota007","user":{"id":4310025034,"id_str":"4310025034","name":"jr - ferreira","screen_name":"jr_ferreira_","location":"Portugal \ud83c\uddf5\ud83c\uddf9","description":"\u26a0\ufe0f - n\u00e3o \u00e9 preciso ser doido para andar nisto, mas ajuda muito","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1274,"friends_count":329,"listed_count":6,"created_at":"Sat - Nov 28 18:55:38 +0000 2015","favourites_count":25478,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21843,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170278499933986817\/RZPmssZM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170278499933986817\/RZPmssZM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4310025034\/1549038652","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"pt"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:45 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal%20%F0%9F%87%B5%F0%9F%87%B9&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:45 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:45 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1170278499933986817/RZPmssZM_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '49990' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:45 GMT - Last-Modified: - - Sat, 07 Sep 2019 10:09:51 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1170278499933986817 - X-Cache: - - HIT - X-Connection-Hash: - - 0c99b1779971e521f2a30aa81033dae7 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:45 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234507568745263104.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="5e5d4d429d5372a05f67459d1e0898d6", - oauth_signature="TcbO%2FLQAyNdpQrLfnlQNODeVsl8%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257065", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '5225' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:46 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:46 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325706624585815; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:46 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_DiijHFY2+MdFcTcXPmL/+g=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:46 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - '09aa2670e8d2f06f08a036ea431a3082' - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '868' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '135' - X-Transaction: - - 001bcb6e009f2396 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 15:55:15 +0000 2020","id":1234507568745263104,"id_str":"1234507568745263104","text":"Tinha - que meter uma seita. https:\/\/t.co\/kvBxWSxnEZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kvBxWSxnEZ","expanded_url":"https:\/\/twitter.com\/SICNoticias\/status\/1234506522396364800","display_url":"twitter.com\/SICNoticias\/st\u2026","indices":[27,50]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1158282059363868672,"id_str":"1158282059363868672","name":"Tjota","screen_name":"tjota007","location":"Portugal","description":"Figura - d''urso muitas.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":194,"friends_count":347,"listed_count":0,"created_at":"Mon - Aug 05 07:42:17 +0000 2019","favourites_count":5074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3380,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158289477451825152\/bRToY3AN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158289477451825152\/bRToY3AN_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1158282059363868672\/1565509956","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234506522396364800,"quoted_status_id_str":"1234506522396364800","quoted_status":{"created_at":"Mon - Mar 02 15:51:05 +0000 2020","id":1234506522396364800,"id_str":"1234506522396364800","text":"L\u00edder - de seita crist\u00e3 sul-coreana pede desculpas por casos de novo coronav\u00edrus - https:\/\/t.co\/Hv736hyIQh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Hv736hyIQh","expanded_url":"http:\/\/sicnoticias.pt\/especiais\/coronavirus\/2020-03-02-Lider-de-seita-crista-sul-coreana-pede-desculpas-por-casos-de-novo-coronavirus","display_url":"sicnoticias.pt\/especiais\/coro\u2026","indices":[79,102]}]},"source":"\u003ca - href=\"https:\/\/swonkie.com\" rel=\"nofollow\"\u003eswonkie\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17163446,"id_str":"17163446","name":"SIC - Not\u00edcias","screen_name":"SICNoticias","location":"Carnaxide, Portugal","description":"O - como e o porqu\u00ea das not\u00edcias de #\u00faltimahora, a an\u00e1lise - e a #opini\u00e3o que interessa. Siga #portugal e o mundo com a #SICNoticias","url":"http:\/\/t.co\/LrhDRWijxq","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/LrhDRWijxq","expanded_url":"http:\/\/sicnoticias.sapo.pt","display_url":"sicnoticias.sapo.pt","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":680198,"friends_count":58,"listed_count":1633,"created_at":"Tue - Nov 04 18:22:40 +0000 2008","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":280602,"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\/459246575441543170\/VhmZtJDb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459246575441543170\/VhmZtJDb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17163446\/1396981747","profile_link_color":"610000","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"},"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,"possibly_sensitive_appealable":false,"lang":"pt"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"pt"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:46 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:46 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:46 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1158289477451825152/bRToY3AN_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '90051' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:46 GMT - Last-Modified: - - Mon, 05 Aug 2019 08:09:46 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1158289477451825152 - X-Cache: - - HIT - X-Connection-Hash: - - 3c2b57da637276f86db75b2fff882b2f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '7957' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:46 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:46 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:46 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1124395512155856898/_BanuVo2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '90867' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:46 GMT - Last-Modified: - - Fri, 03 May 2019 19:27:15 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1124395512155856898 - X-Cache: - - HIT - X-Connection-Hash: - - 0c3a7bb143e40c41846286473702f4fa - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:46 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232274181523464193/nkpd2zvI_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '18403' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Last-Modified: - - Tue, 25 Feb 2020 11:58:34 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1232274181523464193 - X-Cache: - - HIT - X-Connection-Hash: - - 4511e31c03bd43aca67f65641abc2783 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portugal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Maiduguri,%20Northern%20Nigeria.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1172258576129306626/cp7IhwhM_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1607' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Last-Modified: - - Thu, 12 Sep 2019 21:17:58 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1172258576129306626 - X-Cache: - - HIT - X-Connection-Hash: - - bdd85885c2ce3c052cbbce3185d15f6a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Maiduguri,%20Northern%20Nigeria.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=S%C3%A3o%20Paulo&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234461060800876544/hFMIuGBE_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '95506' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:47 GMT - Last-Modified: - - Mon, 02 Mar 2020 12:48:26 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1234461060800876544 - X-Cache: - - HIT - X-Connection-Hash: - - 6c4964368097de4984a5d453cd824719 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:47 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=S%C3%A3o%20Paulo&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hermosillo,%20Sonora&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232035012872146957/8mUdkxht_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '42091' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Last-Modified: - - Mon, 24 Feb 2020 20:08:11 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1232035012872146957 - X-Cache: - - HIT - X-Connection-Hash: - - a072722362257370a13ad3588046f474 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '4219' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Hermosillo,%20Sonora&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=texas&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1057463467286773760/wKFC-Ixa_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '591056' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Last-Modified: - - Wed, 31 Oct 2018 02:43:11 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1057463467286773760 - X-Cache: - - HIT - X-Connection-Hash: - - b902384f4ccaf40e99043f029dee3239 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=texas&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Paris,%20France&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1229526035655356416/udGuVYDe_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1922' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:48 GMT - Last-Modified: - - Mon, 17 Feb 2020 21:58:25 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1229526035655356416 - X-Cache: - - HIT - X-Connection-Hash: - - 215669b6384bf606e1c9a28b76d4d91f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:48 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Paris,%20France&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:49 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:49 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=At%20the%20Gates&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:49 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:49 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1229730569065504768/gE0zVqI__bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '6670' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:49 GMT - Last-Modified: - - Tue, 18 Feb 2020 11:31:09 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1229730569065504768 - X-Cache: - - HIT - X-Connection-Hash: - - a41a0296151daba8039dfe20e80c42a8 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:49 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=At%20the%20Gates&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:49 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:49 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1181817689800663040/Bm7u34Ka_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1605' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:49 GMT - Last-Modified: - - Wed, 09 Oct 2019 06:22:29 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1181817689800663040 - X-Cache: - - HIT - X-Connection-Hash: - - 1347e9d29ae4dca9628792e6c8017646 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:49 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Parc%20des%20princes&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:49 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:49 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1222267378815422464/--wevIZA_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1606' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:50 GMT - Last-Modified: - - Tue, 28 Jan 2020 21:15:06 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1222267378815422464 - X-Cache: - - HIT - X-Connection-Hash: - - d81e5ac2061c7ab285ae49ccc54b75cc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:50 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Parc%20des%20princes&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:50 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:50 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/662650184556486656/GpkyV6ar_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '272074' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:50 GMT - Last-Modified: - - Fri, 06 Nov 2015 15:16:10 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/662650184556486656 - X-Cache: - - HIT - X-Connection-Hash: - - 681469ddc5e7d90d5b39741d64bf160e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '1387' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH3wALAAYADwASAAphY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/AABEIAEkASQMBIgACEQEDEQH/xAAbAAEBAAMBAQEAAAAAAAAAAAAAAQIEBQMGCP/EACUQAAICAQQCAQUBAAAAAAAAAAABAgMRBCExQQUSEyJCUWGB0f/EABkBAQEAAwEAAAAAAAAAAAAAAAABAgMEBf/EAB4RAQACAgMAAwAAAAAAAAAAAAABAhESAwQhEzFB/9oADAMBAAIRAxEAPwD8bgECHQIAihgACogCqXJiigQhQBADJAMPAaxyesEuc7GWISWFgmWcUzDXH5yGsPAKwUERQIwAtshEKCrfYK9FCToU45aT3MEsbpnX8VTVCCl8qbsWMP8ARvy0FcaZ2zqq9Y4lnHXZqnkxOHfTpWvWLRL5yUdstGEljs3NXCTccRcU03jBqzjx+zOsuXlprOHmigGTUEKAIZ1VytmoRWWzA9KJyrsUlyuGSVrjProUeJ1MmvqjBdyR3NFVZ8M6bn7Rylnt7/4c3ReWSj62Vvb8G29dbqa3CqHxp/c+Wc99p+3s9b4a+0lzvOWRWsjGtL1inwctv6cGxbNznY7HvE15NY2W5urGIed2L73mzAbBclwZuYAHQRAGEFb2kUNtkbN2ujTFwrSlPH8Rpabj+M13ya9YtPrrjntx0jX9Hvv2wH2HwbHKYGCrkyA//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:50 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Madrid,%20Comunidad%20de%20Madrid&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:50 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:51 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1227257704474955777/WlRGyo3a_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1191' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:51 GMT - Last-Modified: - - Tue, 11 Feb 2020 15:44:52 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1227257704474955777 - X-Cache: - - HIT - X-Connection-Hash: - - bab5f4a9a4a42d156f7f908f9c4358a5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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jt0vnYAwj19pdMJUWVla9IACrMWU6PS3iXWqhr3D609RoY7Fl6X0lT3L+Cpl4dwSNVovu1mpmavbQOvLU1l5swFoNovWMIIA7CzWyiEnjT7ICpbzDcBghzgRYNVfSG0VhrvMMrAIctMj5lbHatXFTIJhQ4c6PabkhYBIrqiL1lI3p7EyklgHk04bqq6z+g/cbpNcc3JdHHglyYVhwhoe8C9QscHXrGocIu0c9QA15grMam4mHaVJoschLeqx03H4kugmQKIGdTOtToPWXUkEu25eSGmx3mo7S7UpkiYGIjom4x4ZDUsuDihg5eZYEhPIorfBRr1gxiFSgAoPSZDgZpyLAvOMSn+EFoAioaO5n71xGqqFKu+0yjFtpV6kZeUPMt+EFgjCWQltrJ4wb8McA4vPMHZKGeFLUFngoKN5/f8A6ml3/KbI+T1n2rPi+M1O81ePafLdZ8Pr9P/ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:51 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Madrid,%20Comunidad%20de%20Madrid&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:51 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:51 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=The%20Sonoran%20Desert&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:51 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:51 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/711720642/mickey-ears-10282009-3_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1191' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:51 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/711720642 - X-Cache: - - HIT - X-Connection-Hash: - - 7b44756e1a852b6f889a6edc3a0281a7 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAICAgICAQICAgIDAgIDAwYEAwMDAwcFBQQGCAcJCAgHCAgJCg0LCQoMCggICw8LDA0ODg8OCQsQERAOEQ0ODg7/2wBDAQIDAwMDAwcEBAcOCQgJDg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg7/wAARCABJAEkDASIAAhEBAxEB/8QAHQAAAgIDAQEBAAAAAAAAAAAAAAoICQUGBwIBA//EADkQAAEDAgUCAwYEAwkAAAAAAAECAwQFBgAHCBESCSETIjEUFUFRYXEyQoGRCiNVFhcYJVJTcoKx/8QAGQEAAgMBAAAAAAAAAAAAAAAAAAMBAgQF/8QAJhEAAgIBAwMDBQAAAAAAAAAAAAECAxEEEkEhMWEFE1FxobHB4f/aAAwDAQACEQMRAD8Av8xgrlue3bNsWp3Pdlcg23btOYL8+pVKUiPHjNj1UtayAkfDufXtjXszczLQyiyZrN93vUxTaHTmVLVxAU6+oJKg00jcc1kJVsNwAASSEgkKOavdbWYeq7NeQ9V3ZFAy5gyFG3bSYkn2eMnuEvv7dn5JHqs9k7kIAG5LYQ3Pq8L5ZVyWcclwedPWbyhtGuzKNk9YtUzUfZUUe+J0n3TTlnf8TQUhb7if+SG9/gdu+OraIOpNR9U+cFRyzu+0Y1g34Yi5tETCqC5MaptNjd5oc0JUh5CfPt5gpAUQRxIKph7qJxLDQ5VJlH6s2neZAcU1Jcv6BEUpJ2JafWWHR9ihxQP0OIjHdlEjpeK0dafUhsnSrfCcu6DbC8xM0VQ0SZcIzfZYVJbcG7RkOBKlKcUPOGkJ34kEqTyTvZYezYHqOwwkHqqueqXh1KM97grDi1zpF91RHFZO7bbUpbLbff4JbbQkfRIwskndVesfqoqFbcfgUmw6LEKv5cZi3n3gkfIrckkk/XtiUmnfrFTKpekSh6hLXpkSlvqDZr9sRHmnIpJ/G5FW454qPn4agsAdkL9ML5/DH6IcUhQIO23xGOvQ9N2shlPy015X9TXgTJT4eB9u3rhod2WRSrltqqxa5QKnFRKp9QhPB1iS0sckrQodiCD64zOFqulhrSn2BnPS9O1/VEv2FdM/w7akyHN/c9TdPlaST6MyFHiU+iXilQ28RZwynyHyP7YwXVe1ZtTyuH4GReULJ9TvUrVr0zyzAsCFUVs0mhXIq1oUNtRAbajR2X57yh/uPyX2muXwaicR2cc5U4/HE5uo7aNRsnrA5z0uWhSYVSrfv+Cs/hdROYadUofZYWj7oOIM+uFzkpYS4QuuvY5PlvP6X2wGJQ6NbktKyupRk5el+1H3NZ1CuNFQqc/wFuiMlptSkLKUAqIDnDfiCe/piP1y2pcVn3Iqj3NSJFFqaY8eQqNJRxWluQyh9kkfDk04hYB77KHbHmhyn2ZnhMgpDu6Srb1+mNuhqqv1Ma7G0n8BbKUK2490NMVPq86QqddDlLYmXhV46FcRU4dsERlfUB11Dm3/AEGFr9RN92vmfrozZzEsynSaVbFyXTMqdPjzEJQ8lDzpXutKSQlSiSopBO3Lbc7b45dU46mZqwoHffGOCFclAjYj1B7YpqtO9PqHU+C0JqcFI8AkY9bjAlsknfy7JKu+Nwv+yqll9mpULVqqX0zIrTDp9phORXCh5ht9BLbgCk7odSRv6juOxxkUmhhhaLVJtFuaDV6a+qLUYEhEqK8g7FtxpQcQofUKSDhwj/FLVv6Ej9sKNZX2dMzE1F2LYNPQpybcdfh0plKBud5D6Gt/0CifsMO9/wB1Ni/0RrFpy3YISwVzdSLQTcmqKbaGYuVT9Mj5j0aIaZUYdTkezt1KEVlxopd4kJcaWtzYK2CkuHzApAPE8kekDZrNZtyqZtuVD3ZDQl2q0k1Vtcmrv7Dk0VRwERIoIPlQ4684D3cZG6DeVgwnBIob1M6LSbP6tmZ9o25T2aPbqRSZjMGKgIaaUqkx0Hin0A2T6fXGLz90v1bT9o70/X6uZJqdEzFt+FW5C30I/wAtqZaK3IqeIGyFRpDKk8u5LDnfsNujdXClLp/WQuKYtPEVS16VLQT+YBhTG/7skfpi+bOTTXTdQ/RypOTrxZhVti06a/bU10eWFUY0RHgKPyQrzNLI38jitu+2NVN86bY2LvEVOuM4uL5FIKs/S1hMlGweCd1Anv8Ap8ziZXT/ANHc3VVqsE65oj7GUFtPIl3RJTugTlE7tU9tY78nNt1kd0thR3BUjfm2WWjLO3MzVxEyfbt56mXLFkqbuRqUy6kW+hDnBa5aikJQkjzoKSoOJKS2VchhtfIjJOzNPmme3ssbHihql05rlJlKbCXZ8lQHiyHdvzLIHb8qQlI7JGNvqOtWt1LsisZKU1+1Woi7GvTILL/Lnrm5cW7aFrwbftS8HLfmO0OnxksQ0qenLiPpaaSOKEq9nSSlI23Wo/HFw2rnQNltqdvu3b8lRvd94UuMqBOTHkmImsQvNwQp5KF+E8yVcmnS24nbdC0LSRwj/rCyYq2an8Qpoz9jiF6nRqcqqVR/bsxFpNQExwqPyUXG2xv8XR88XAj8PyOOS+qwaF0ZR7oq6YV35NdQE5v5mzqb/Zu2n5DlnUlmaJcuQ8sKbafkqQhLaPDbWVAJ3Jc2OyQnveB4SP8ATj3gwAGDBgwAL09aHKGvVHP/ACXzKt+hyqv70osq35IgxlOrDsZS5bQKUgkktOyFfZlR9Bi+PLmaio6f7HqDY2bk2/CeSPoqO2of+459qRytZzf0cXtaLcqXS697vdl27Vac6pqXTqi02pTD7K0kKSrfdB2I5IcWn0Uca3pBzdoGdPT4y3uyhqS1JjUlilVmCAQqDOjMobeaKT3A7JcTv6tuIPxwY5DKJLhICt9u+A78TsNzir/XD1AZem/MhzLTL+mW9Ov9m3m61IfulcoxlJddLTMSMzHTyekL4qcJWtttCQPMoq4jmmiLqaXJn5qpp+SmbdmUijXVVoz7lGq1tpfaYU8w0p5yPIYfUpSFcELIWle26eJT33wzZLbu4+q/HcopJya+Dv8AYFO1A3L/ABAmZV8XhaM+38mrcsV62rYlSkpEWUHZESQH2FA/zXHlNvKWQPIlptCjuBvYbj4AN9wB3x9wsuGDBgwAGDBgwAGNSs+w7My+olRptk2zTrVp8+pv1OZGpkVLDb0p9XJ14pT25KPr9vljbcGACHWo7Rdl1qFzQtHMldZq2XmbVr8BRbtoHgqfSltwuNodaeSpDgQtSlIPlUkqOytu2MVkDodsHJXUdcWdVcuuvZt5z1nmJN13MWQ4wFpCXCy00kBClJHFSiVHj5RsCQZtYMRhZyAYMGDEgGDBgwAf/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:51 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=The%20Sonoran%20Desert&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:52 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:52 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234280226743635969.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="c697ba6aea94b6f78ff2fe7f8d5ea372", - oauth_signature="P28NGXwrlJfigl7NA6RnY%2FTn9Lg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257072", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '5835' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:53 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:53 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325707311574554; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:53 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_P071OmVl8oxhitgkBZFITw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:53 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - cfc32c391680bbb387b57107c2072632 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '867' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '136' - X-Transaction: - - '00174844003f1042' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 00:51:52 +0000 2020","id":1234280226743635969,"id_str":"1234280226743635969","text":"Fear\nPanic\nHoarding - \nMisinformation \nGovernment coverups \nWidespread Coronavirus https:\/\/t.co\/uQCKDA4Tu8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uQCKDA4Tu8","expanded_url":"https:\/\/twitter.com\/jarajene\/status\/1234021011840028672","display_url":"twitter.com\/jarajene\/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,"user":{"id":1044702459971719168,"id_str":"1044702459971719168","name":"Military - Meowsketeer","screen_name":"KatAtDisney","location":"","description":"Air - Force Spouse | Find me on a carousel | Military Spouse of the Year Hurlburt - \u201818\/\u201820 | Bathroom lines are for amateurs | HQTrivia Champion x13","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2116,"friends_count":917,"listed_count":8,"created_at":"Tue - Sep 25 21:37:30 +0000 2018","favourites_count":54164,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21126,"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\/1196004866121973762\/hi0w_8oz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196004866121973762\/hi0w_8oz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1044702459971719168\/1582516472","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"},"geo":null,"coordinates":null,"place":{"id":"9a974dfc8efb32a0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/9a974dfc8efb32a0.json","place_type":"city","name":"Kansas - City","full_name":"Kansas City, MO","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-94.733122,38.868002],[-94.3854414,38.868002],[-94.3854414,39.332095],[-94.733122,39.332095]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1234021011840028672,"quoted_status_id_str":"1234021011840028672","quoted_status":{"created_at":"Sun - Mar 01 07:41:50 +0000 2020","id":1234021011840028672,"id_str":"1234021011840028672","text":"March - will be filled with happiness. \nMarch will be filled with positivity.\nMarch - will be filled with progress.\nMar\u2026 https:\/\/t.co\/ovYHcwXXLD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ovYHcwXXLD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234021011840028672","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":852300808712581125,"id_str":"852300808712581125","name":"\ud835\udc09.","screen_name":"jarajene","location":"Tennessee, - USA","description":"Plant-Based Vegan. Content Creator. (Realistic) Self-Care - Enthusiast. \u2022 Sc: ar.aj","url":"https:\/\/t.co\/Y7DDyh0Bxa","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Y7DDyh0Bxa","expanded_url":"http:\/\/www.instagram.com\/withjarajene","display_url":"instagram.com\/withjarajene","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3377,"friends_count":464,"listed_count":5,"created_at":"Wed - Apr 12 23:22:02 +0000 2017","favourites_count":18130,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6436,"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\/1228392454199615490\/AJGIjEtd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228392454199615490\/AJGIjEtd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/852300808712581125\/1573487486","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":154800,"favorite_count":313062,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":3,"favorite_count":40,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:53 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1196004866121973762/hi0w_8oz_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '25594' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:53 GMT - Last-Modified: - - Sun, 17 Nov 2019 09:57:15 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1196004866121973762 - X-Cache: - - HIT - X-Connection-Hash: - - 95d481b9212869906d90758292bcf2ab - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALABEACQA7AA9hY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAACAwEBAQEAAAAAAAAAAAAGBwMEBQECCAD/xAAZAQEBAQEBAQAAAAAAAAAAAAADBAIAAQX/2gAMAwEAAhADEAAAAWp82OhDAlqtFZbjcj5f+Z9BdP75cfdsG8om0K9kdVrDXniRXqBMnGeCVaEV6YPAXQplddJcfhX2FkOA01ZkADF8e7DKvSp0TwXs6m3Vhq2+1QyovCz2GSsmLhPC8fWMewMp5sY0GbpHLXAm6XLflPk7BmIWjeOWIFipWuPEVZmzAo//xAArEAABBAEDAwMCBwAAAAAAAAACAQMEBQAGERITFBUhMTIQNBYiIyQzNUL/2gAIAQEAAQUCfcRlh94pc8z5Eicj09EEmpsdDZ09Ydla477bFmrpPSpm12XfG/aob6cB91pvJ5J5LTsxZNe8v5e4azWbn6X+VXGU3Kq5IwQTHJlqBN2OkpwN4VlGzua3NYkpSC9hyhY6suAqG6vDLQ+vY1yEwizM7pM1Ov7lz4p65VsrGhR3IorayujEp6x2aX4eiC5eLXxq7g5moTVZ5JjQZB7pGpMiJESXJcmydOSTbeuzdCSnN0ullmYkSbII+o6dcVyDqeGbzMddjrfW4u20IYscyLxk3DUiVN1UfRzSiqUARLjJp4T+LXhAcb2lq7KOujediY+jezYbuyh4po4dombZsi5Ssg1YONNuD4+Lh/KN/NM+20l/W/Rft675/T//xAAgEQADAAICAwADAAAAAAAAAAAAAQIDERIhBCIxEDJR/9oACAEDAQE/AUfWTKU6HJzUl/THPJlY+WkY17seHEV2zxumZ8sSvX6TilrbNfwp7ZifZePb2iHxTMnnVL0pK7ZP7fjbdM1s/8QAIBEAAgICAgIDAAAAAAAAAAAAAAECEQMhEBIiQTEyUf/aAAgBAgEBPwGH6fCJSbnon6ZF0YfqTdKxZOreie4IXcxaijO9EMfZ2Sm+9IWhKkZl4kMtKmZHck0QwqSuz0Tfhw9Vx//EAC4QAAIBAgQEBAUFAAAAAAAAAAECAAMREBIhMUFRYXEEIjJCEzRigaIjcoKTof/aAAgBAQAGPwJ6rbILw1X97XjHrg1dhxssKgawLU0VmytjvHVTrUOWE4MZTXpP1Kir3MrWPlzxA/rTymGbfjKNMbYqnMxhYi3AmVaisKR9ml7yqrtma+pnw3zbTWmx+8+TWUzw2wvM7elNY+Ta0zW1laoOLaT4ljrLYUl4AYh8t76m0zJUdfp1jOmhbRZdCt78YT4jxtVuQWwtFoUvDU3cjKhO463wbppLQnlApX4icxAa11Y8JmOi8ByEqUV0DCL52sUgLknAj3LUY95ruYwikjbSCum9PcdIO8zqvlJO20R24TLTUv2nyzy7G5wt9UqqOFTSeYCXNEI3NNJnTO4tfqIgyh+YvvDWFGotINlKkD/Jt4n+qNaZRxEp1R7klQ83xLHtCV9Dg6cjLMNJ6Pyn3lL90pT+Zx+0pdsf/8QAJBABAAIBBAICAgMAAAAAAAAAAQARITFBUXFhkRCBobHR8PH/2gAIAQEAAT8heCmv6juLldTjdhAILdXM4IWEpiM7+kLxMJcGc8+FgifTec+hiaAjOjRC3/J+4EZDTchEsspOIpdnZzUp6J5HpF3Kqcy6Xm5wSt+CLevthgUtV8745JWcA01bRB1LXuvGkeUc8x/kw08x9TFepqv9dwqvH7Rb1aaawWQAazbNV0MQS9idTJaeaX+DfeZ+TMyUbYIoG+aY6qJWFPUO/Y+6q7xIHgBe3wHMDdyjGXlmuvEI+y/js6qOjS+JZXEj0lliEU7CUnZBpIszt+ppYt/H805m53UYagWMOrbFQF0v4P01dxWyXSrhiu8UI6r1AfsHyRQnFjPULbm4dC5jwojCy10Db8IxZvLGuX6SaxrewRALlZrSJKA3rIezFa9Hd8QV/reACB1PbSPx6ZNW1RS4A7qHyGe9I2zfpCUVHKXKjZTqAvixaA6nhneIJ5Ma3wT8p/bNP+uY6Tb4v5+Px//aAAwDAQACAAMAAAAQEFGAszPMKeqT0WTBB3DfgQnmk//EAB0RAQEAAwACAwAAAAAAAAAAAAEAESExQWFRgfD/2gAIAQMBAT8QODcQAVoU8MdjDGE4l2HPiJBNOZPS3cREWwjPL2WZmoPBq4Jc9jm3bF43aiP31I4R3fUTuHcyVu//xAAfEQADAAICAgMAAAAAAAAAAAAAAREhMRBhQXFRgbH/2gAIAQIBAT8QTfCfGN/kQ+oqPV7EvYpsqWo94IeRImUhMRiOdiugM0jdfE0v0LlYPoBx5ajjMe4N0RInr9HjR//EACYQAQACAQMDBAMBAQAAAAAAAAEAESExQVFhcZGBobHwwdHxEOH/2gAIAQEAAT8QDcjV2FxgetjkvdeJvEig06TlS3ECHcXWo+fiW8huGjUfFcd0WZJ0jQDY6QPRfifVZh8hrln2EYGrYuF1g8jQtiA4bfF+ZYoBR65fmcPeAPYasDlZtxZuzzKPM2drD4qC60pNms+wfiOxwc2aKbvtLc+z8RGjUpiJWVBX5ZfxHFizZh6zsi0DVgq1cBW8wzBDaZaNMrE3LW3ln4U9CKSpToJ6T++/cRgbtvWhfi5XZUAPeaW0V9OIizKl0dIQClqnAQ6nSWjlQTcltRaxvQH2lUUWg8u1wG9p1zPuYhDn6ttbupEtnVPs/wCxIlgAdWMhfgHQ7cZmmhuOnAjmUkTpJGzXBbnpCL0Wp2tDROrVoLXAxGu6JpSrm6oKJodqHmValnFurOz5lIiIjsA3b1ZburEYZrGYzDFNTNXNa0jujR+IprBxKa0MecRljHITg6rFu/aHOZKtYxb0FKg6mO3kpUhNJ3Uv0l+akTGCO2/aUiKtishba5sLqNwUpbvZcrOkIyjlO3xEcUT0KHMKuje9ONU5hgZaNS0YkCMj4CfxT9y1qLRrCxbqscEN3iga6ufaMNnbafxTZ/pkvPSXEhGb+cY9orKXXOFiMIU239Y5tBKEtzsJC0PQaIrVOLsXHWf0kqWEUOU3QqjuSqy8FxKfPtGsZ4Y4T8+0uum0wElJgzWldfL8EX6Z+iPoC45IkqooKpOERKn99+p7B8z7XQ/wB9Twmj2jonzZ9NzN3Z/z/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=EUROPE&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:53 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/696240645917253632/9EE-CQ-M_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '123032' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:53 GMT - Last-Modified: - - Sun, 07 Feb 2016 07:52:40 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/696240645917253632 - X-Cache: - - HIT - X-Connection-Hash: - - c9c8389a1e3b0982320f7c5c2be175b1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '121' - Content-Length: - - '13653' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=EUROPE&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Austria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:54 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1173509359319638016/RhO9bEOs_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '357442' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:54 GMT - Last-Modified: - - Mon, 16 Sep 2019 08:08:08 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1173509359319638016 - X-Cache: - - HIT - X-Connection-Hash: - - d1f32bab00ff6139889efba9aca1ed1e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Austria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:54 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234517062896226304.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b30cda9ae06f8fb6e48b4cd009a16750", - oauth_signature="lMwav2kilG7%2BHa4%2B8s%2FxNsyZsao%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257074", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2576' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:54 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:54 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325707474126909; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:54 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_PxFJUJG9rss/ZU3rVaMZ4w=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:54 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 54ef57428e2083084fcb25a66ef028cd - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '866' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '125' - X-Transaction: - - '00837d78001cf170' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:32:58 +0000 2020","id":1234517062896226304,"id_str":"1234517062896226304","text":"If - EA bundled IRL gas masks with those in #BattlefieldV they''d be making bank - right now.","truncated":false,"entities":{"hashtags":[{"text":"BattlefieldV","indices":[42,55]}],"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,"user":{"id":698286674132889600,"id_str":"698286674132889600","name":"Flakfire","screen_name":"FlakfireGaming","location":"United - States","description":"Your #Battlefield GPS voice since ''42. Partner: @NeatMics - @ElgatoGaming | @GamerAdvantage code \"FLAK\" for 10% off. Business: twinbridgessocial@gmail.com","url":"https:\/\/t.co\/54EiLDHIq0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/54EiLDHIq0","expanded_url":"https:\/\/www.youtube.com\/FlakfireGaming","display_url":"youtube.com\/FlakfireGaming","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16770,"friends_count":1606,"listed_count":65,"created_at":"Fri - Feb 12 23:24:51 +0000 2016","favourites_count":36453,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24731,"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\/1042972204848373760\/iPpBT_kw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1042972204848373760\/iPpBT_kw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/698286674132889600\/1582242199","profile_link_color":"E67E22","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":131,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=United%20States&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:55 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1042972204848373760/iPpBT_kw_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '132045' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:55 GMT - Last-Modified: - - Fri, 21 Sep 2018 03:00:05 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1042972204848373760 - X-Cache: - - HIT - X-Connection-Hash: - - 370cdb07ca786022317f763e26b0a640 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=United%20States&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:55 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1234518564557721604&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ed3f9b930f3b3bab962ae3b3f65d8565", - oauth_signature="kymH5Eoto%2BxG5RxccTB3T33d52Y%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257075", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '573044' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:56 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:55 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325707582937274; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:55 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_R8Cop+ndWyS5SOf4R8wG2w=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:55 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - d2addcedf35fc8e8aa6436eb2990c4e1 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '171' - X-Rate-Limit-Reset: - - '1583257471' - X-Response-Time: - - '268' - X-Transaction: - - 00b1083000edb80b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Mar 02 16:38:56 +0000 2020","id":1234518564440285184,"id_str":"1234518564440285184","text":"RT - @MrMichaelSpicer: the room next door - President Trump and the Coronavirus - https:\/\/t.co\/LTYYYIYUMi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrMichaelSpicer","name":"Michael - Spicer","id":93222172,"id_str":"93222172","indices":[3,19]}],"urls":[],"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234458301368164352,"source_status_id_str":"1234458301368164352","source_user_id":93222172,"source_user_id_str":"93222172"}]},"extended_entities":{"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234458301368164352,"source_status_id_str":"1234458301368164352","source_user_id":93222172,"source_user_id_str":"93222172","video_info":{"aspect_ratio":[16,9],"duration_millis":137638,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/480x270\/8fmAAK02A6it9wjT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/640x360\/lSnahBMYahnylH8j.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/pl\/tL2aDEJGkHpos0BZ.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/1280x720\/y9-Yn9X6Q-PF7xSz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":237178,"friends_count":1730,"listed_count":713,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29226,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1198916045030993920,"id_str":"1198916045030993920","name":"Havering4EU","screen_name":"Havering4EU","location":"","description":"At - Havering4EU we think we already have the best deal being part of the European - Union. No deal is still a threat to this country. Find us on Facebook too.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":181,"friends_count":391,"listed_count":2,"created_at":"Mon - Nov 25 10:47:35 +0000 2019","favourites_count":422,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2603,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198916859250249729\/cFvQCV0a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198916859250249729\/cFvQCV0a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198916045030993920\/1574679171","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:39:28 +0000 2020","id":1234458301368164352,"id_str":"1234458301368164352","text":"the - room next door - President Trump and the Coronavirus https:\/\/t.co\/LTYYYIYUMi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234457531797266432,"id_str":"1234457531797266432","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":137638,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/480x270\/8fmAAK02A6it9wjT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/640x360\/lSnahBMYahnylH8j.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/pl\/tL2aDEJGkHpos0BZ.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/1280x720\/y9-Yn9X6Q-PF7xSz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":237178,"friends_count":1730,"listed_count":713,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29226,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15227,"favorite_count":53874,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15227,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564423524352,"id_str":"1234518564423524352","text":"RT - @DeItaOne: SENEGAL CONFIRMS FIRST CORONAVIRUS CASE - HEALTH MINISTRY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeItaOne","name":"*Walter - Bloomberg","id":2704294333,"id_str":"2704294333","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":733341456308555777,"id_str":"733341456308555777","name":"FiorenZo","screen_name":"zorrotrading","location":"Italy","description":"Proud - Father of Three, #Commodity #Trader & Analyst, IT Pro. Tweets NOT Trading - Advice\/Recom RT\/follow\u2260 en Opinion. \ud83c\udfe0For traders home is - their desk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":450,"friends_count":207,"listed_count":28,"created_at":"Thu - May 19 17:00:02 +0000 2016","favourites_count":2278,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3010,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/933010074800410624\/YowwUgl__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/933010074800410624\/YowwUgl__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/733341456308555777\/1580342088","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:08 +0000 2020","id":1234518363507974145,"id_str":"1234518363507974145","text":"SENEGAL - CONFIRMS FIRST CORONAVIRUS CASE - HEALTH MINISTRY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2704294333,"id_str":"2704294333","name":"*Walter - Bloomberg","screen_name":"DeItaOne","location":"twitter","description":"Real-time - financial markets News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44715,"friends_count":31,"listed_count":1501,"created_at":"Sun - Aug 03 14:34:52 +0000 2014","favourites_count":3584,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69546,"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\/1147773866242129921\/v_HeM0Fm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1147773866242129921\/v_HeM0Fm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2704294333\/1557143876","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":51,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564306063363,"id_str":"1234518564306063363","text":"RT - @LaStampa: Coronavirus, l\u2019ospedale di Crema: \u201cSituazione complicata, - abbiamo bisogno di rinforzi\u201d https:\/\/t.co\/U8DJ2toqCH https:\/\/t.co\/c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LaStampa","name":"La - Stampa","id":29416653,"id_str":"29416653","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/U8DJ2toqCH","expanded_url":"http:\/\/dlvr.it\/RR5jb6","display_url":"dlvr.it\/RR5jb6","indices":[101,124]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":410904136,"id_str":"410904136","name":"Michele - Troisi","screen_name":"Miktroisi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127,"friends_count":1224,"listed_count":2,"created_at":"Sat - Nov 12 18:43:25 +0000 2011","favourites_count":4987,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6673,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1903601577\/ut4k2KN2_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1903601577\/ut4k2KN2_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/410904136\/1381517175","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:06 +0000 2020","id":1234518354917875713,"id_str":"1234518354917875713","text":"Coronavirus, - l\u2019ospedale di Crema: \u201cSituazione complicata, abbiamo bisogno di - rinforzi\u201d https:\/\/t.co\/U8DJ2toqCH https:\/\/t.co\/ca0ASNc4Mu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U8DJ2toqCH","expanded_url":"http:\/\/dlvr.it\/RR5jb6","display_url":"dlvr.it\/RR5jb6","indices":[87,110]}],"media":[{"id":1234518353487642624,"id_str":"1234518353487642624","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHj5thUwAAIHdz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHj5thUwAAIHdz.jpg","url":"https:\/\/t.co\/ca0ASNc4Mu","display_url":"pic.twitter.com\/ca0ASNc4Mu","expanded_url":"https:\/\/twitter.com\/LaStampa\/status\/1234518354917875713\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":338,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"},"medium":{"w":600,"h":338,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518353487642624,"id_str":"1234518353487642624","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHj5thUwAAIHdz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHj5thUwAAIHdz.jpg","url":"https:\/\/t.co\/ca0ASNc4Mu","display_url":"pic.twitter.com\/ca0ASNc4Mu","expanded_url":"https:\/\/twitter.com\/LaStampa\/status\/1234518354917875713\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":338,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"},"medium":{"w":600,"h":338,"resize":"fit"}}}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":29416653,"id_str":"29416653","name":"La - Stampa","screen_name":"LaStampa","location":"Torino, Piemonte","description":"Notizie, - inchieste, analisi e breaking news. RT dei nostri giornalisti e lettori","url":"https:\/\/t.co\/DqTQs84xqS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DqTQs84xqS","expanded_url":"http:\/\/www.lastampa.it","display_url":"lastampa.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1083548,"friends_count":389,"listed_count":6420,"created_at":"Tue - Apr 07 09:31:23 +0000 2009","favourites_count":1621,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":415617,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1145280231089037314\/G6vSIv1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145280231089037314\/G6vSIv1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29416653\/1516478172","profile_link_color":"738EBE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7FCFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564201099265,"id_str":"1234518564201099265","text":"RT - @NorbertElekes: BREAKING: First case of coronavirus confirmed in Saudi Arabia.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NorbertElekes","name":"Norbert - Elekes","id":292558545,"id_str":"292558545","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2247667190,"id_str":"2247667190","name":"Elmer - Adrenaline Chile","screen_name":"elmer_a_chile","location":"CA, AL, KY, TN, - OH, MO, WY, OR","description":"I apologize in advance for scowling. Truth - lovin\u2019, evidence-based mostly friendly #atheist and former fetus. #FuckTrump - #TheResistance #TrumpRussia #science","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2674,"friends_count":4999,"listed_count":38,"created_at":"Sun - Dec 15 19:37:13 +0000 2013","favourites_count":215711,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":243809,"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\/1190667630203539457\/a25YZHAO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190667630203539457\/a25YZHAO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2247667190\/1543645645","profile_link_color":"424242","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:30:58 +0000 2020","id":1234516557184806914,"id_str":"1234516557184806914","text":"BREAKING: - First case of coronavirus confirmed in Saudi Arabia.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292558545,"id_str":"292558545","name":"Norbert - Elekes","screen_name":"NorbertElekes","location":"LinkedIn:","description":"Data - storyteller, minimalist, compulsive list-maker. Focused on business, tech, - science, & pop culture. Latest updates on the coronavirus.","url":"https:\/\/t.co\/ZQCBWVhDQj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZQCBWVhDQj","expanded_url":"https:\/\/bit.ly\/NorbertElekes","display_url":"bit.ly\/NorbertElekes","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":72858,"friends_count":8585,"listed_count":709,"created_at":"Tue - May 03 21:06:47 +0000 2011","favourites_count":810,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5832,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"84A894","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\/1148447760464646144\/WJbazf0m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148447760464646144\/WJbazf0m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292558545\/1561826126","profile_link_color":"3399CC","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":175,"favorite_count":130,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":175,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564121411589,"id_str":"1234518564121411589","text":"RT - @CNBC: WHO says 9 times more coronavirus cases outside China than inside in - last 24 hours https:\/\/t.co\/FTpykjyr8r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNBC","name":"CNBC","id":20402945,"id_str":"20402945","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/FTpykjyr8r","expanded_url":"https:\/\/cnb.cx\/3cnW2vn","display_url":"cnb.cx\/3cnW2vn","indices":[93,116]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":959801674360528898,"id_str":"959801674360528898","name":"Lumongga - Bintang Justisia","screen_name":"jussyasha","location":"Batam, Indonesia","description":"Dahulukan - akhiratmu, maka dunia akan mengikutimu. | Yuk, gunakan gawaimu untuk menyebarkan - hal-hal positif!","url":"https:\/\/t.co\/qO7DCXIsX3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qO7DCXIsX3","expanded_url":"http:\/\/sweetiveus.tumblr.com","display_url":"sweetiveus.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":374,"listed_count":0,"created_at":"Sat - Feb 03 14:52:06 +0000 2018","favourites_count":44,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4151,"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\/1231722962639679488\/3xUdVtwA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231722962639679488\/3xUdVtwA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/959801674360528898\/1567681425","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:17 +0000 2020","id":1234517645946445824,"id_str":"1234517645946445824","text":"WHO - says 9 times more coronavirus cases outside China than inside in last 24 hours - https:\/\/t.co\/FTpykjyr8r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FTpykjyr8r","expanded_url":"https:\/\/cnb.cx\/3cnW2vn","display_url":"cnb.cx\/3cnW2vn","indices":[83,106]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":20402945,"id_str":"20402945","name":"CNBC","screen_name":"CNBC","location":"Englewood - Cliffs, NJ","description":"First in business worldwide.","url":"https:\/\/t.co\/fdcFKDtOzb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fdcFKDtOzb","expanded_url":"https:\/\/www.cnbc.com\/","display_url":"cnbc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3427918,"friends_count":801,"listed_count":29230,"created_at":"Mon - Feb 09 00:03:41 +0000 2009","favourites_count":562,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":338708,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D181F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185182366156894208\/pKRddT3o_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185182366156894208\/pKRddT3o_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20402945\/1533568341","profile_link_color":"2D648A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EAEBEA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":70,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564096208896,"id_str":"1234518564096208896","text":"RT - @FMoniteau: The stock market dropping is not because of the #coronavirus\n\nThe - stock market dropping is because investors have no confide\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[63,75]}],"symbols":[],"user_mentions":[{"screen_name":"FMoniteau","name":"Fredon - Moniteau","id":788417346092183552,"id_str":"788417346092183552","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3256066170,"id_str":"3256066170","name":"Irene - Ashker","screen_name":"irene_ashker","location":"","description":"Retired - (Maj) USAF Flight Nurse. Loving life and living the dream! AZ Cardinals Fan - 4-EVER! No DMs PLZ","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5086,"friends_count":5465,"listed_count":30,"created_at":"Fri - Jun 26 01:30:23 +0000 2015","favourites_count":82481,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":44160,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614260615553495040\/V6mOy6pY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614260615553495040\/V6mOy6pY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:27:01 +0000 2020","id":1234500465313886210,"id_str":"1234500465313886210","text":"The - stock market dropping is not because of the #coronavirus\n\nThe stock market - dropping is because investors have n\u2026 https:\/\/t.co\/T9BklTRqYu","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[48,60]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T9BklTRqYu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234500465313886210","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":788417346092183552,"id_str":"788417346092183552","name":"Fredon - Moniteau","screen_name":"FMoniteau","location":"United States","description":"Diluted - Droplets of Drollery #TheResistance #Resist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26057,"friends_count":21801,"listed_count":111,"created_at":"Tue - Oct 18 16:31:58 +0000 2016","favourites_count":6150,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9814,"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\/953264417063383040\/-PxQ8q5Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/953264417063383040\/-PxQ8q5Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/788417346092183552\/1582294533","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":442,"favorite_count":1240,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":442,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564041842688,"id_str":"1234518564041842688","text":"RT - @BNFAYE: Premier cas suspect au S\u00e9n\u00e9gal. En attente des r\u00e9sultats - de l''IPD. \u00c7a fait flipper mais faut surtout pas c\u00e9der \u00e0 la - panique (\ud83d\ude2d)\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BNFAYE","name":"BNF - \ud83c\uddf8\ud83c\uddf3","id":397330951,"id_str":"397330951","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1120997283594743809,"id_str":"1120997283594743809","name":"Sololess - \ud83d\udc99","screen_name":"MaamXouja","location":"","description":"Knowledge, - Love and Sweetness.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":448,"listed_count":1,"created_at":"Wed - Apr 24 10:25:54 +0000 2019","favourites_count":7963,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1605,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185657014791426049\/NYbcrEag_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185657014791426049\/NYbcrEag_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1120997283594743809\/1579880479","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:49:01 +0000 2020","id":1234475801023832064,"id_str":"1234475801023832064","text":"Premier - cas suspect au S\u00e9n\u00e9gal. En attente des r\u00e9sultats de l''IPD. - \u00c7a fait flipper mais faut surtout pas c\u00e9der \u00e0 la\u2026 https:\/\/t.co\/k41P3R8i0h","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k41P3R8i0h","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234475801023832064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":397330951,"id_str":"397330951","name":"BNF - \ud83c\uddf8\ud83c\uddf3","screen_name":"BNFAYE","location":"Senegal","description":"Journaliste, - R\u00e9dacteur en chef de https:\/\/t.co\/MSnpsVY1Qf Groupe Emedia Invest. Famile-Football-Fun - Sun-Sea-Sport #221 #225 Mbour Marseille London Madrid","url":"https:\/\/t.co\/MujvSYQuEP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MujvSYQuEP","expanded_url":"http:\/\/www.emedia.sn","display_url":"emedia.sn","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/MSnpsVY1Qf","expanded_url":"http:\/\/Emedia.sn","display_url":"Emedia.sn","indices":[34,57]}]}},"protected":false,"followers_count":12327,"friends_count":1897,"listed_count":36,"created_at":"Mon - Oct 24 15:02:58 +0000 2011","favourites_count":71662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33129,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1225694878622838784\/xs3mq4WP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225694878622838784\/xs3mq4WP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/397330951\/1539834717","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":94,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":42,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518564020854784,"id_str":"1234518564020854784","text":"RT - @grynbaum: CNN is severely restricting all employee travel, including domestic, - due to coronavirus, per memo that just went out. Interco\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"grynbaum","name":"Michael - M. Grynbaum","id":19570075,"id_str":"19570075","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":22168259,"id_str":"22168259","name":"Susan..","screen_name":"susantweetsNY","location":"USA","description":"Life - observer.\ud83e\uddd0Tyranny resistor.\ud83d\udca5Humanity respecter.\u2764\ufe0fBarney - lover\ud83d\udc36 #LightsForLiberty #ReSister #Humanity #StrongerTogether","url":"https:\/\/t.co\/SQvJPs4eQu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SQvJPs4eQu","expanded_url":"http:\/\/www.pointshootshare.com","display_url":"pointshootshare.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3091,"friends_count":3437,"listed_count":48,"created_at":"Fri - Feb 27 18:05:23 +0000 2009","favourites_count":24262,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13685,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/108962401\/sls_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/108962401\/sls_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22168259\/1563048193","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:11:01 +0000 2020","id":1234496440757637126,"id_str":"1234496440757637126","text":"CNN - is severely restricting all employee travel, including domestic, due to coronavirus, - per memo that just went ou\u2026 https:\/\/t.co\/wPrXV1Da4K","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wPrXV1Da4K","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234496440757637126","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":19570075,"id_str":"19570075","name":"Michael - M. Grynbaum","screen_name":"grynbaum","location":"New York, NY","description":"I - write for The New York Times about media, TV, and politics. I recently acquired - a cat.","url":"https:\/\/t.co\/UKUxUPtRPI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UKUxUPtRPI","expanded_url":"http:\/\/nyti.ms\/29DW7ui","display_url":"nyti.ms\/29DW7ui","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":38776,"friends_count":1188,"listed_count":1173,"created_at":"Tue - Jan 27 01:12:05 +0000 2009","favourites_count":18647,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":18385,"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\/3366881598\/002dc46e15306d9d2c384a10703e2159_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3366881598\/002dc46e15306d9d2c384a10703e2159_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19570075\/1468424468","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":870,"favorite_count":2239,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":870,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563886698499,"id_str":"1234518563886698499","text":"RT - @RoKhanna: Harry Truman, Dr. King, and Barack Obama have all been falsely - branded as socialists in the past.\n\n@BernieSanders is talking\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoKhanna","name":"Ro - Khanna","id":771152516,"id_str":"771152516","indices":[3,12]},{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[113,127]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":88802201,"id_str":"88802201","name":"Jennifer - EppsAddison","screen_name":"jeppsaddison","location":"Worldwide (via Milwaukee)","description":"Radical - Truth Teller I President and Co-Executive Director of the Center for Popular - Democracy @popdemoc @cpdaction I Proud Nerd, Mommy of Two","url":"https:\/\/t.co\/590wKbO8k3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/590wKbO8k3","expanded_url":"http:\/\/www.populardemocracy.org","display_url":"populardemocracy.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4945,"friends_count":1238,"listed_count":89,"created_at":"Tue - Nov 10 00:09:32 +0000 2009","favourites_count":34469,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47352,"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\/1231101426455080960\/YOMkyTEa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231101426455080960\/YOMkyTEa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88802201\/1562638335","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:11:00 +0000 2020","id":1234496433543245825,"id_str":"1234496433543245825","text":"Harry - Truman, Dr. King, and Barack Obama have all been falsely branded as socialists - in the past.\n\n@BernieSanders i\u2026 https:\/\/t.co\/uiRJhUZRUb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[99,113]}],"urls":[{"url":"https:\/\/t.co\/uiRJhUZRUb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234496433543245825","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":771152516,"id_str":"771152516","name":"Ro - Khanna","screen_name":"RoKhanna","location":"Silicon Valley, CA","description":"Bridging - national divide w\/ a 21st century economic vision for new jobs & more pay - in places left behind. No PAC $$. Pro-growth progressive. Obama Commerce alum","url":"https:\/\/t.co\/V5WcBNpxZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/V5WcBNpxZj","expanded_url":"http:\/\/RoKhanna.com","display_url":"RoKhanna.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":196522,"friends_count":14820,"listed_count":1665,"created_at":"Tue - Aug 21 09:10:20 +0000 2012","favourites_count":5975,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":16173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"001447","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530907007746703360\/-mIRE-wq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530907007746703360\/-mIRE-wq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771152516\/1428987775","profile_link_color":"0A1237","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1006,"favorite_count":3664,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1006,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563844550656,"id_str":"1234518563844550656","text":"RT - @CarlosLoret: M\u00e9dicos y enfermeras consideran que los est\u00e1n poniendo - en peligro frente al #Covid19. Denuncian con fotograf\u00edas c\u00f3mo la - a\u2026","truncated":false,"entities":{"hashtags":[{"text":"Covid19","indices":[94,102]}],"symbols":[],"user_mentions":[{"screen_name":"CarlosLoret","name":"Carlos - Loret de Mola","id":68844197,"id_str":"68844197","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136100139,"id_str":"136100139","name":"GerryGerry","screen_name":"gerryboy10","location":"CIUDAD - DE M\u00c9XICO","description":"No te enojes, solo son mis opiniones \ud83e\udd23\ud83e\udd23\ud83e\udd23 - no me engancho en debatir con nadie. NO A LA TAUROMAQUIA. Si me sigues por - cortes\u00eda te sigo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4496,"friends_count":4666,"listed_count":20,"created_at":"Fri - Apr 23 01:25:07 +0000 2010","favourites_count":12903,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":181470,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2625158755\/v20wj3ze6nk2eko8xm16_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2625158755\/v20wj3ze6nk2eko8xm16_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:45:49 +0000 2020","id":1234459898768809984,"id_str":"1234459898768809984","text":"M\u00e9dicos - y enfermeras consideran que los est\u00e1n poniendo en peligro frente al #Covid19. - Denuncian con fotograf\u00edas c\u00f3\u2026 https:\/\/t.co\/pBvXzIbOXj","truncated":true,"entities":{"hashtags":[{"text":"Covid19","indices":[77,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pBvXzIbOXj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234459898768809984","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":68844197,"id_str":"68844197","name":"Carlos - Loret de Mola","screen_name":"CarlosLoret","location":"M\u00e9xico, DF.","description":"Reportero. - Columna #HistoriasDeReportero #As\u00edLasCosasConLoret en W Radio. Colaborador - del Washington Post. @latinus_us","url":"https:\/\/t.co\/2DU4s8lnNb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2DU4s8lnNb","expanded_url":"http:\/\/carlosloret.com","display_url":"carlosloret.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8263969,"friends_count":1750,"listed_count":20360,"created_at":"Wed - Aug 26 00:00:09 +0000 2009","favourites_count":2560,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":84135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1E1E1E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198810475682766849\/WKQZyeF1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198810475682766849\/WKQZyeF1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68844197\/1565089982","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5660,"favorite_count":9157,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":5660,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563731443712,"id_str":"1234518563731443712","text":"RT - @JugoneslaSexta: \u2622\ufe0f \u00a1EL CORONAVIRUS AFECTA A MOTOGP! Suspendidas - las carreras de Qatar y Thailandia. #JUGONES https:\/\/t.co\/z0LzeDfGzH","truncated":false,"entities":{"hashtags":[{"text":"JUGONES","indices":[104,112]}],"symbols":[],"user_mentions":[{"screen_name":"JugoneslaSexta","name":"JugoneslaSexta","id":28312185,"id_str":"28312185","indices":[3,18]}],"urls":[],"media":[{"id":1234517490169937920,"id_str":"1234517490169937920","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234517490169937920\/pu\/img\/2UVZVTkY7QhQ5tQH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234517490169937920\/pu\/img\/2UVZVTkY7QhQ5tQH.jpg","url":"https:\/\/t.co\/z0LzeDfGzH","display_url":"pic.twitter.com\/z0LzeDfGzH","expanded_url":"https:\/\/twitter.com\/JugoneslaSexta\/status\/1234517602816471040\/video\/1","type":"photo","sizes":{"medium":{"w":718,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":718,"h":404,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234517602816471040,"source_status_id_str":"1234517602816471040","source_user_id":28312185,"source_user_id_str":"28312185"}]},"extended_entities":{"media":[{"id":1234517490169937920,"id_str":"1234517490169937920","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234517490169937920\/pu\/img\/2UVZVTkY7QhQ5tQH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234517490169937920\/pu\/img\/2UVZVTkY7QhQ5tQH.jpg","url":"https:\/\/t.co\/z0LzeDfGzH","display_url":"pic.twitter.com\/z0LzeDfGzH","expanded_url":"https:\/\/twitter.com\/JugoneslaSexta\/status\/1234517602816471040\/video\/1","type":"video","sizes":{"medium":{"w":718,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":718,"h":404,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234517602816471040,"source_status_id_str":"1234517602816471040","source_user_id":28312185,"source_user_id_str":"28312185","video_info":{"aspect_ratio":[359,202],"duration_millis":77920,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234517490169937920\/pu\/vid\/718x404\/n2j6D1QYZDSuhzeU.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234517490169937920\/pu\/pl\/4K1LB2-BgXK83rSx.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234517490169937920\/pu\/vid\/478x270\/iLe2ADSMP7lcAmu5.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":28312185,"id_str":"28312185","name":"JugoneslaSexta","screen_name":"JugoneslaSexta","location":"","description":"De - lunes a viernes a las 15 h en @laSextaTV con @jpedrerol al mando. \u00a1En - #Jugones nos mojamos!","url":"http:\/\/t.co\/cM7sM7QDAk","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/cM7sM7QDAk","expanded_url":"http:\/\/www.lasexta.com\/programas\/jugones\/","display_url":"lasexta.com\/programas\/jugo\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":273306,"friends_count":61,"listed_count":978,"created_at":"Thu - Apr 02 10:03:28 +0000 2009","favourites_count":193,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":59119,"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\/540578805559996417\/yLxdjS0g_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540578805559996417\/yLxdjS0g_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28312185\/1417719035","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"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1104533528,"id_str":"1104533528","name":"Jesus - Corral","screen_name":"JesusCorral19","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":876,"friends_count":5001,"listed_count":212,"created_at":"Sat - Jan 19 19:58:57 +0000 2013","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1301211,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3130515185\/a14eb272a80021ac5555b657f3373d86_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3130515185\/a14eb272a80021ac5555b657f3373d86_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:07 +0000 2020","id":1234517602816471040,"id_str":"1234517602816471040","text":"\u2622\ufe0f - \u00a1EL CORONAVIRUS AFECTA A MOTOGP! Suspendidas las carreras de Qatar y - Thailandia. #JUGONES https:\/\/t.co\/z0LzeDfGzH","truncated":false,"entities":{"hashtags":[{"text":"JUGONES","indices":[84,92]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234517490169937920,"id_str":"1234517490169937920","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234517490169937920\/pu\/img\/2UVZVTkY7QhQ5tQH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234517490169937920\/pu\/img\/2UVZVTkY7QhQ5tQH.jpg","url":"https:\/\/t.co\/z0LzeDfGzH","display_url":"pic.twitter.com\/z0LzeDfGzH","expanded_url":"https:\/\/twitter.com\/JugoneslaSexta\/status\/1234517602816471040\/video\/1","type":"photo","sizes":{"medium":{"w":718,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":718,"h":404,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234517490169937920,"id_str":"1234517490169937920","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234517490169937920\/pu\/img\/2UVZVTkY7QhQ5tQH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234517490169937920\/pu\/img\/2UVZVTkY7QhQ5tQH.jpg","url":"https:\/\/t.co\/z0LzeDfGzH","display_url":"pic.twitter.com\/z0LzeDfGzH","expanded_url":"https:\/\/twitter.com\/JugoneslaSexta\/status\/1234517602816471040\/video\/1","type":"video","sizes":{"medium":{"w":718,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":718,"h":404,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"video_info":{"aspect_ratio":[359,202],"duration_millis":77920,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234517490169937920\/pu\/vid\/718x404\/n2j6D1QYZDSuhzeU.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234517490169937920\/pu\/pl\/4K1LB2-BgXK83rSx.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234517490169937920\/pu\/vid\/478x270\/iLe2ADSMP7lcAmu5.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":28312185,"id_str":"28312185","name":"JugoneslaSexta","screen_name":"JugoneslaSexta","location":"","description":"De - lunes a viernes a las 15 h en @laSextaTV con @jpedrerol al mando. \u00a1En - #Jugones nos mojamos!","url":"http:\/\/t.co\/cM7sM7QDAk","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/cM7sM7QDAk","expanded_url":"http:\/\/www.lasexta.com\/programas\/jugones\/","display_url":"lasexta.com\/programas\/jugo\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":273306,"friends_count":61,"listed_count":978,"created_at":"Thu - Apr 02 10:03:28 +0000 2009","favourites_count":193,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":59119,"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\/540578805559996417\/yLxdjS0g_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540578805559996417\/yLxdjS0g_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28312185\/1417719035","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":80,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563718934528,"id_str":"1234518563718934528","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":899950330087038976,"id_str":"899950330087038976","name":"Professional - Waffler~\ud83c\udf6f","screen_name":"Runaway_Somali","location":"","description":"BSc - (Hons) Neuroscience\ud83d\udd2c\ud83d\udc0c| Creative at heart but scientific - in nature\ud83d\udd33\ud83d\udd32| PODCASTER! Does that make sense to you? - AVAILABLE ON SOUNDCLOUD\ud83d\udde3","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":600,"friends_count":438,"listed_count":3,"created_at":"Tue - Aug 22 11:04:13 +0000 2017","favourites_count":112687,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24717,"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\/1158038366962757632\/EYzZy3Js_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158038366962757632\/EYzZy3Js_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/899950330087038976\/1540404179","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153505,"favorite_count":478705,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563718860805,"id_str":"1234518563718860805","text":"RT - @EinsteinsMagic: \ud83e\udd14What\u2018s the DeepState\u2019s endgame with - the #outbreak of #coronavirus?\n\n\ud83d\udc49It is multipurpose with one - reason being the disr\u2026","truncated":false,"entities":{"hashtags":[{"text":"outbreak","indices":[61,70]},{"text":"coronavirus","indices":[74,86]}],"symbols":[],"user_mentions":[{"screen_name":"EinsteinsMagic","name":"\ud83d\udd70\u26a1\ufe0fEinstein\u2019s - Magic\ud83d\udca1\ud83c\udf99","id":125815552,"id_str":"125815552","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1147329912728170496,"id_str":"1147329912728170496","name":"Gary - Gary","screen_name":"TropicsMoses","location":"Ohio, USA","description":"\ud83c\uddfa\ud83c\uddf8MAGA\ud83c\uddfa\ud83c\uddf8TRUMP2020\ud83c\uddfa\ud83c\uddf82A\ud83c\uddfa\ud83c\uddf8NRA - Life\ud83c\uddfa\ud83c\uddf8Christian\ud83c\uddfa\ud83c\uddf8Conservative\ud83c\uddfa\ud83c\uddf8Love - Jesus~Love My Family \ud83c\uddfa\ud83c\uddf8Pray For President Trump & The - USA\ud83c\uddfa\ud83c\uddf8Stand For Our Flag.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16921,"friends_count":15125,"listed_count":2,"created_at":"Sat - Jul 06 02:22:22 +0000 2019","favourites_count":3995,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16449,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159599118718840832\/keAhzhzb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159599118718840832\/keAhzhzb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1147329912728170496\/1562682099","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 04:00:48 +0000 2020","id":1234327773348384768,"id_str":"1234327773348384768","text":"\ud83e\udd14What\u2018s - the DeepState\u2019s endgame with the #outbreak of #coronavirus?\n\n\ud83d\udc49It - is multipurpose with one reason being the\u2026 https:\/\/t.co\/OmUxQGTSHt","truncated":true,"entities":{"hashtags":[{"text":"outbreak","indices":[41,50]},{"text":"coronavirus","indices":[54,66]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OmUxQGTSHt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234327773348384768","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":125815552,"id_str":"125815552","name":"\ud83d\udd70\u26a1\ufe0fEinstein\u2019s - Magic\ud83d\udca1\ud83c\udf99","screen_name":"EinsteinsMagic","location":"CA","description":"Memetic - Mayhem \ud83e\uddd0\ud83d\udc4d \ud83c\udfbcI F B \ud83d\udc4a\ud83d\udcddMelody - & Wordsmith \ud83c\udfb6Music for the Masses. https:\/\/t.co\/fsWiG5IA7R \ud83c\udfb5","url":"https:\/\/t.co\/iXSGqdbt9y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iXSGqdbt9y","expanded_url":"https:\/\/www.subscribestar.com\/Einstein","display_url":"subscribestar.com\/Einstein","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fsWiG5IA7R","expanded_url":"https:\/\/soundcloud.com\/user-149934172","display_url":"soundcloud.com\/user-149934172","indices":[69,92]}]}},"protected":false,"followers_count":82007,"friends_count":83067,"listed_count":30,"created_at":"Tue - Mar 23 23:42:22 +0000 2010","favourites_count":98747,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69955,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116783824182996992\/AHyvAbYW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116783824182996992\/AHyvAbYW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125815552\/1567615440","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":97,"favorite_count":52,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":97,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563714715649,"id_str":"1234518563714715649","text":"SIGN: - Justice for Poodles Bludgeoned to Death by Officer in Coronavirus Scare https:\/\/t.co\/0jIIGztDxW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0jIIGztDxW","expanded_url":"https:\/\/ladyfreethinker.org\/sign-justice-for-poodles-bludgeoned-to-death-by-police-in-coronavirus-scare\/?utm_source=Newsletter","display_url":"ladyfreethinker.org\/sign-justice-f\u2026","indices":[78,101]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":74057697,"id_str":"74057697","name":"Kasey - Thomas Rosenhaus","screen_name":"KaseRosie","location":"New York,NY","description":"Southern - belle \ud83d\udc9e, Executive Assistant \ud83d\udc69\ud83c\udffc\u200d\ud83d\udcbb, - rescue Pitbull mom \ud83d\udc36, flex-vegan \ud83c\udf31, wellness devotee\ud83d\udcaa\ud83c\udffc, - animal rights activist \ud83d\udc3e. \ud83d\udccdNYC","url":"https:\/\/t.co\/WxrCektdbS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WxrCektdbS","expanded_url":"http:\/\/www.instagram.com\/kaserosie","display_url":"instagram.com\/kaserosie","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":531,"friends_count":1734,"listed_count":11,"created_at":"Mon - Sep 14 03:36:23 +0000 2009","favourites_count":486,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9386,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/989209800549457920\/hdDxycwE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/989209800549457920\/hdDxycwE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74057697\/1524681014","profile_link_color":"FA71C5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"FA71C5","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563626635265,"id_str":"1234518563626635265","text":"RT - @jota_sexteam: Easy \ud83d\ude0e\n #COVID19 #coronavirus #Coronavirusnyc https:\/\/t.co\/KPQ5wNpDl7","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[26,34]},{"text":"coronavirus","indices":[35,47]},{"text":"Coronavirusnyc","indices":[48,63]}],"symbols":[],"user_mentions":[{"screen_name":"jota_sexteam","name":"Jos\u00e9 - Javier Mart\u00ednez","id":799652180974129153,"id_str":"799652180974129153","indices":[3,16]}],"urls":[],"media":[{"id":1234464363299442690,"id_str":"1234464363299442690","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGyzEZXkAIOZI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGyzEZXkAIOZI8.jpg","url":"https:\/\/t.co\/KPQ5wNpDl7","display_url":"pic.twitter.com\/KPQ5wNpDl7","expanded_url":"https:\/\/twitter.com\/jota_sexteam\/status\/1234464367770509317\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":817,"resize":"fit"},"small":{"w":680,"h":671,"resize":"fit"},"large":{"w":828,"h":817,"resize":"fit"}},"source_status_id":1234464367770509317,"source_status_id_str":"1234464367770509317","source_user_id":799652180974129153,"source_user_id_str":"799652180974129153"}]},"extended_entities":{"media":[{"id":1234464363299442690,"id_str":"1234464363299442690","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGyzEZXkAIOZI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGyzEZXkAIOZI8.jpg","url":"https:\/\/t.co\/KPQ5wNpDl7","display_url":"pic.twitter.com\/KPQ5wNpDl7","expanded_url":"https:\/\/twitter.com\/jota_sexteam\/status\/1234464367770509317\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":817,"resize":"fit"},"small":{"w":680,"h":671,"resize":"fit"},"large":{"w":828,"h":817,"resize":"fit"}},"source_status_id":1234464367770509317,"source_status_id_str":"1234464367770509317","source_user_id":799652180974129153,"source_user_id_str":"799652180974129153"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17656966,"id_str":"17656966","name":"DebiNagle","screen_name":"DebiNagle","location":"Cedar - Falls, Iowa","description":"Married to Dave Nagle, Mom to Matt & trying to - enjoy every minute I have with them. @iowademocrats @blackhawkdems Always - believe in \ud83e\udd84","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":727,"friends_count":1020,"listed_count":13,"created_at":"Wed - Nov 26 19:17:23 +0000 2008","favourites_count":60329,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21489,"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\/1193536560916041732\/Wzs-ABEs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193536560916041732\/Wzs-ABEs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17656966\/1522151828","profile_link_color":"43115C","profile_sidebar_border_color":"D4DB4B","profile_sidebar_fill_color":"612161","profile_text_color":"1E0433","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:03:35 +0000 2020","id":1234464367770509317,"id_str":"1234464367770509317","text":"Easy - \ud83d\ude0e\n #COVID19 #coronavirus #Coronavirusnyc https:\/\/t.co\/KPQ5wNpDl7","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[8,16]},{"text":"coronavirus","indices":[17,29]},{"text":"Coronavirusnyc","indices":[30,45]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234464363299442690,"id_str":"1234464363299442690","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGyzEZXkAIOZI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGyzEZXkAIOZI8.jpg","url":"https:\/\/t.co\/KPQ5wNpDl7","display_url":"pic.twitter.com\/KPQ5wNpDl7","expanded_url":"https:\/\/twitter.com\/jota_sexteam\/status\/1234464367770509317\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":817,"resize":"fit"},"small":{"w":680,"h":671,"resize":"fit"},"large":{"w":828,"h":817,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234464363299442690,"id_str":"1234464363299442690","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGyzEZXkAIOZI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGyzEZXkAIOZI8.jpg","url":"https:\/\/t.co\/KPQ5wNpDl7","display_url":"pic.twitter.com\/KPQ5wNpDl7","expanded_url":"https:\/\/twitter.com\/jota_sexteam\/status\/1234464367770509317\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":817,"resize":"fit"},"small":{"w":680,"h":671,"resize":"fit"},"large":{"w":828,"h":817,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":799652180974129153,"id_str":"799652180974129153","name":"Jos\u00e9 - Javier Mart\u00ednez","screen_name":"jota_sexteam","location":"New York, USA","description":"NY - AIDS Institute - health educator - lgbt advocate - trans ally - sex researcher - - queer boricua \ud83c\uddf5\ud83c\uddf7 - hormiguere\u00f1o - tweets my own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":325,"friends_count":1474,"listed_count":2,"created_at":"Fri - Nov 18 16:35:11 +0000 2016","favourites_count":3253,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176830311340085248\/yR7hHHLv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176830311340085248\/yR7hHHLv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/799652180974129153\/1553022947","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":712,"favorite_count":2779,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":712,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563475509253,"id_str":"1234518563475509253","text":"RT - @ProudAndBrazen: Watching the Global North react in disgust, envy and shock - at the fact that African nations have barely been affected b\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProudAndBrazen","name":"JZ","id":50289751,"id_str":"50289751","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1566897042,"id_str":"1566897042","name":"thiq - fiq","screen_name":"habeshordy","location":"","description":"ceo of the free - world \/\/ \ud83c\uddea\ud83c\uddf9 \/\/ paris","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1082,"friends_count":859,"listed_count":32,"created_at":"Wed - Jul 03 23:43:42 +0000 2013","favourites_count":14309,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18348,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1140427698776563712\/KYlrXllP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140427698776563712\/KYlrXllP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1566897042\/1582647254","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 09:20:45 +0000 2020","id":1234045903767511041,"id_str":"1234045903767511041","text":"Watching - the Global North react in disgust, envy and shock at the fact that African - nations have barely been affect\u2026 https:\/\/t.co\/UH1hWjcqbF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UH1hWjcqbF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234045903767511041","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50289751,"id_str":"50289751","name":"JZ","screen_name":"ProudAndBrazen","location":"London, - England","description":"mid at most things tbf...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1400,"friends_count":100,"listed_count":34,"created_at":"Wed - Jun 24 12:23:36 +0000 2009","favourites_count":5723,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42172,"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\/1231351339978043392\/WGshWQLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231351339978043392\/WGshWQLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50289751\/1582411881","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4571,"favorite_count":12223,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4571,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563425267716,"id_str":"1234518563425267716","text":"#Tokio2020 - | El COI se re\u00fane para tratar el coronavirus a cinco meses de Tokio 2020: - https:\/\/t.co\/FV9flrfDsv","truncated":false,"entities":{"hashtags":[{"text":"Tokio2020","indices":[0,10]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234518486241742853,"id_str":"1234518486241742853","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkBcEXkAURW_u.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkBcEXkAURW_u.png","url":"https:\/\/t.co\/FV9flrfDsv","display_url":"pic.twitter.com\/FV9flrfDsv","expanded_url":"https:\/\/twitter.com\/SanarateEu\/status\/1234518563425267716\/photo\/1","type":"photo","sizes":{"medium":{"w":680,"h":423,"resize":"fit"},"small":{"w":680,"h":423,"resize":"fit"},"large":{"w":680,"h":423,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1234518486241742853,"id_str":"1234518486241742853","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkBcEXkAURW_u.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkBcEXkAURW_u.png","url":"https:\/\/t.co\/FV9flrfDsv","display_url":"pic.twitter.com\/FV9flrfDsv","expanded_url":"https:\/\/twitter.com\/SanarateEu\/status\/1234518563425267716\/photo\/1","type":"photo","sizes":{"medium":{"w":680,"h":423,"resize":"fit"},"small":{"w":680,"h":423,"resize":"fit"},"large":{"w":680,"h":423,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131973286517268480,"id_str":"1131973286517268480","name":"EU_Sanarate","screen_name":"SanarateEu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":10,"listed_count":4,"created_at":"Fri - May 24 17:20:37 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1106,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131974376730054658\/gbW1MS7k_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131974376730054658\/gbW1MS7k_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131973286517268480\/1559000420","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563412729856,"id_str":"1234518563412729856","text":"RT - @MichelleKalehz1: #CoronaVirusUpdate My direct contact is positive for coronavirus - so the county is coming to my home tomorrow in hazmat\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirusUpdate","indices":[21,39]}],"symbols":[],"user_mentions":[{"screen_name":"MichelleKalehz1","name":"Michelle - Kalehzan, Ph.D.","id":919232960548675584,"id_str":"919232960548675584","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":892040392903991296,"id_str":"892040392903991296","name":"Beverly - Collins","screen_name":"Bewillysodak","location":"Sioux Falls, SD","description":"DAV - of the USAF\/Aerospace Defense at Edwards AFB, FMS Squadron\/AD INEXPLORATA\ud83c\uddfa\ud83c\uddf8\/Engine - Builder for Hot Air Balloons\/Pilot\/~TRUMP TROLLS BLOCKED~#Resistors","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1317,"friends_count":1688,"listed_count":7,"created_at":"Mon - Jul 31 15:12:57 +0000 2017","favourites_count":29858,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12728,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159904427748278272\/yVZLZ3kO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159904427748278272\/yVZLZ3kO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/892040392903991296\/1580668559","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 04:25:50 +0000 2020","id":1234334074044502016,"id_str":"1234334074044502016","text":"#CoronaVirusUpdate - My direct contact is positive for coronavirus so the county is coming to my - home tomorrow in haz\u2026 https:\/\/t.co\/DC3DLhsJdO","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirusUpdate","indices":[0,18]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DC3DLhsJdO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234334074044502016","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":919232960548675584,"id_str":"919232960548675584","name":"Michelle - Kalehzan, Ph.D.","screen_name":"MichelleKalehz1","location":"Los Altos, CA","description":"#Resist - \ud83c\udf0aLifelong human rights advocate, feminist, Democrat, clinical psychologist, - comrade, #criminaljusticereform, #impeachtrump, #FreeArashGanji","url":"https:\/\/t.co\/77yOmKrI7Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/77yOmKrI7Q","expanded_url":"http:\/\/www.drkalehzan.com","display_url":"drkalehzan.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20036,"friends_count":3752,"listed_count":67,"created_at":"Sat - Oct 14 16:06:31 +0000 2017","favourites_count":16660,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8423,"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\/1184547020532400128\/jNjEnCRs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184547020532400128\/jNjEnCRs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/919232960548675584\/1561842344","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5561,"favorite_count":40923,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5561,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518563165278214,"id_str":"1234518563165278214","text":"RT - @sarahkliff: Two Americans were held in mandatory hospital isolation for suspected - Coronavirus.\n\nThey now face $2,700 in outstanding med\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sarahkliff","name":"Sarah - Kliff","id":19734832,"id_str":"19734832","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826569170229800961,"id_str":"826569170229800961","name":"Cindy - Mylchreest","screen_name":"MylchreestCindy","location":"Pennsylvania, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":781,"listed_count":0,"created_at":"Tue - Jan 31 23:13:41 +0000 2017","favourites_count":17653,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32759,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848005814111678464\/tN5bbsu__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848005814111678464\/tN5bbsu__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:28:39 +0000 2020","id":1234470678344224768,"id_str":"1234470678344224768","text":"Two - Americans were held in mandatory hospital isolation for suspected Coronavirus.\n\nThey - now face $2,700 in outstan\u2026 https:\/\/t.co\/EOpDtYdk6D","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EOpDtYdk6D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234470678344224768","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19734832,"id_str":"19734832","name":"Sarah - Kliff","screen_name":"sarahkliff","location":"Washington, DC","description":"Investigations - and health policy for the @nytimes. Dog mom. Human mom. I like reading your - medical bills.\n\nGot a tip? sarah.kliff@nytimes.com or DM for Signal","url":"https:\/\/t.co\/cAqqxaEO4i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cAqqxaEO4i","expanded_url":"http:\/\/www.sarahkliff.com","display_url":"sarahkliff.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":141684,"friends_count":1179,"listed_count":4080,"created_at":"Thu - Jan 29 21:14:18 +0000 2009","favourites_count":4328,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":14130,"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\/817108735290208256\/0H1DNvhi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817108735290208256\/0H1DNvhi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19734832\/1557753068","profile_link_color":"588CA8","profile_sidebar_border_color":"0A0801","profile_sidebar_fill_color":"E6C46C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5207,"favorite_count":9818,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5207,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562871619585,"id_str":"1234518562871619585","text":"RT - @Jolhann_: Le Coronavirus il est comme \u00e7a dans Auray https:\/\/t.co\/nZ13lpfSbD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jolhann_","name":"Jolhann","id":2332415328,"id_str":"2332415328","indices":[3,12]}],"urls":[],"media":[{"id":1234398370145406976,"id_str":"1234398370145406976","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234398370145406976\/pu\/img\/6FxgQfPPhfQd-Mrd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234398370145406976\/pu\/img\/6FxgQfPPhfQd-Mrd.jpg","url":"https:\/\/t.co\/nZ13lpfSbD","display_url":"pic.twitter.com\/nZ13lpfSbD","expanded_url":"https:\/\/twitter.com\/Jolhann_\/status\/1234398405780176897\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":656,"h":368,"resize":"fit"},"large":{"w":656,"h":368,"resize":"fit"},"small":{"w":656,"h":368,"resize":"fit"}},"source_status_id":1234398405780176897,"source_status_id_str":"1234398405780176897","source_user_id":2332415328,"source_user_id_str":"2332415328"}]},"extended_entities":{"media":[{"id":1234398370145406976,"id_str":"1234398370145406976","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234398370145406976\/pu\/img\/6FxgQfPPhfQd-Mrd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234398370145406976\/pu\/img\/6FxgQfPPhfQd-Mrd.jpg","url":"https:\/\/t.co\/nZ13lpfSbD","display_url":"pic.twitter.com\/nZ13lpfSbD","expanded_url":"https:\/\/twitter.com\/Jolhann_\/status\/1234398405780176897\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":656,"h":368,"resize":"fit"},"large":{"w":656,"h":368,"resize":"fit"},"small":{"w":656,"h":368,"resize":"fit"}},"source_status_id":1234398405780176897,"source_status_id_str":"1234398405780176897","source_user_id":2332415328,"source_user_id_str":"2332415328","video_info":{"aspect_ratio":[41,23],"duration_millis":9667,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234398370145406976\/pu\/vid\/480x270\/mmORZET7piWYXIdX.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234398370145406976\/pu\/pl\/7HGeduf0FyGf32Wb.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234398370145406976\/pu\/vid\/656x368\/DRsJi8k5_HCHWpZV.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2332415328,"id_str":"2332415328","name":"Jolhann","screen_name":"Jolhann_","location":"Landaul, - France","description":"https:\/\/t.co\/XUnZ0D44pK","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/XUnZ0D44pK","expanded_url":"http:\/\/Instagram.com\/Jolhann_","display_url":"Instagram.com\/Jolhann_","indices":[0,23]}]}},"protected":false,"followers_count":78,"friends_count":130,"listed_count":0,"created_at":"Fri - Feb 07 21:14:18 +0000 2014","favourites_count":1595,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1839,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234413323728379905\/vtQyNgKp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234413323728379905\/vtQyNgKp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2332415328\/1577715542","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1017428922194169856,"id_str":"1017428922194169856","name":"louanne - \ud83d\ude1c","screen_name":"Louanne__56","location":"Lorient, France","description":"ig - : louanne.lcv","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":291,"listed_count":0,"created_at":"Thu - Jul 12 15:22:12 +0000 2018","favourites_count":1517,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":421,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204871221919256576\/sxCd8yIK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204871221919256576\/sxCd8yIK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1017428922194169856\/1560593623","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 08:41:28 +0000 2020","id":1234398405780176897,"id_str":"1234398405780176897","text":"Le - Coronavirus il est comme \u00e7a dans Auray https:\/\/t.co\/nZ13lpfSbD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234398370145406976,"id_str":"1234398370145406976","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234398370145406976\/pu\/img\/6FxgQfPPhfQd-Mrd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234398370145406976\/pu\/img\/6FxgQfPPhfQd-Mrd.jpg","url":"https:\/\/t.co\/nZ13lpfSbD","display_url":"pic.twitter.com\/nZ13lpfSbD","expanded_url":"https:\/\/twitter.com\/Jolhann_\/status\/1234398405780176897\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":656,"h":368,"resize":"fit"},"large":{"w":656,"h":368,"resize":"fit"},"small":{"w":656,"h":368,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234398370145406976,"id_str":"1234398370145406976","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234398370145406976\/pu\/img\/6FxgQfPPhfQd-Mrd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234398370145406976\/pu\/img\/6FxgQfPPhfQd-Mrd.jpg","url":"https:\/\/t.co\/nZ13lpfSbD","display_url":"pic.twitter.com\/nZ13lpfSbD","expanded_url":"https:\/\/twitter.com\/Jolhann_\/status\/1234398405780176897\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":656,"h":368,"resize":"fit"},"large":{"w":656,"h":368,"resize":"fit"},"small":{"w":656,"h":368,"resize":"fit"}},"video_info":{"aspect_ratio":[41,23],"duration_millis":9667,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234398370145406976\/pu\/vid\/480x270\/mmORZET7piWYXIdX.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234398370145406976\/pu\/pl\/7HGeduf0FyGf32Wb.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234398370145406976\/pu\/vid\/656x368\/DRsJi8k5_HCHWpZV.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2332415328,"id_str":"2332415328","name":"Jolhann","screen_name":"Jolhann_","location":"Landaul, - France","description":"https:\/\/t.co\/XUnZ0D44pK","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/XUnZ0D44pK","expanded_url":"http:\/\/Instagram.com\/Jolhann_","display_url":"Instagram.com\/Jolhann_","indices":[0,23]}]}},"protected":false,"followers_count":78,"friends_count":130,"listed_count":0,"created_at":"Fri - Feb 07 21:14:18 +0000 2014","favourites_count":1595,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1839,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234413323728379905\/vtQyNgKp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234413323728379905\/vtQyNgKp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2332415328\/1577715542","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":921,"favorite_count":2140,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":921,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562859081728,"id_str":"1234518562859081728","text":"RT - @WHO: @DrTedros \"In the last 24 hours there were almost 9 times more #COVID19 - cases reported outside #China than inside \ud83c\udde8\ud83c\uddf3.\n\nThe - epidemi\u2026","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[72,80]},{"text":"China","indices":[104,110]}],"symbols":[],"user_mentions":[{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[3,7]},{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[9,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1110851071075860480,"id_str":"1110851071075860480","name":"\ud83d\udda4 - \ud83d\udd77Rejoin & rebuild? #NoPlanetB \ud83c\udf0f\ud83d\udd25\ud83c\udf0f\ud83d\udd25\ud83c\udf0f","screen_name":"RemainRevoke","location":"World - without Bowie \ud83d\ude22","description":"Trees are better than Tories!! - uber buffy fan. Uber remainer. Made of coconut macaroons. Leave means leave?? - I''d like to test that theory! Climate anxious","url":"https:\/\/t.co\/BMTpRN60ft","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BMTpRN60ft","expanded_url":"https:\/\/www.buymeacoffee.com\/RemainRevoke","display_url":"buymeacoffee.com\/RemainRevoke","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":941,"friends_count":3681,"listed_count":3,"created_at":"Wed - Mar 27 10:28:28 +0000 2019","favourites_count":11818,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8579,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1110851525017067526\/XZCORHLP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1110851525017067526\/XZCORHLP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1110851071075860480\/1576243747","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:37:27 +0000 2020","id":1234503092885958662,"id_str":"1234503092885958662","text":"@DrTedros - \"In the last 24 hours there were almost 9 times more #COVID19 cases reported - outside #China than inside\u2026 https:\/\/t.co\/898enqMl6d","truncated":true,"entities":{"hashtags":[{"text":"COVID19","indices":[63,71]},{"text":"China","indices":[95,101]}],"symbols":[],"user_mentions":[{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/898enqMl6d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503092885958662","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234502998006665217,"in_reply_to_status_id_str":"1234502998006665217","in_reply_to_user_id":14499829,"in_reply_to_user_id_str":"14499829","in_reply_to_screen_name":"WHO","user":{"id":14499829,"id_str":"14499829","name":"World - Health Organization (WHO)","screen_name":"WHO","location":"Geneva, Switzerland","description":"We - are the #UnitedNations\u2019 health agency. We are committed to achieving - better health for everyone, everywhere - #HealthForAll","url":"https:\/\/t.co\/wVulKuROWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wVulKuROWG","expanded_url":"http:\/\/www.who.int","display_url":"who.int","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5601267,"friends_count":1716,"listed_count":27213,"created_at":"Wed - Apr 23 19:56:27 +0000 2008","favourites_count":10494,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":48212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D0ECF8","profile_background_image_url":"http:\/\/abs.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\/875476478988886016\/_l61qZdR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875476478988886016\/_l61qZdR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14499829\/1582794472","profile_link_color":"0396DB","profile_sidebar_border_color":"8C8C8C","profile_sidebar_fill_color":"D9D9D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":156,"favorite_count":165,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":156,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562833743872,"id_str":"1234518562833743872","text":"RT - @wweek: The PPS message went on to highlight another development: It warned - that students from Asian backgrounds had been \"targeted and\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wweek","name":"Willamette - Week","id":16491683,"id_str":"16491683","indices":[3,9]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1214076414,"id_str":"1214076414","name":"Sara - Ackerson","screen_name":"sara_ackerson","location":"Portland, OR via NY-BOS-SF","description":"#acadv, - traveling, #highered, \ud83d\udc36, wanderlust, Springsteen, storytelling, - photography, street art, IG: saraaimee43, #nhlbruins. Thoughts are mine.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2043,"friends_count":1916,"listed_count":132,"created_at":"Sun - Feb 24 00:50:12 +0000 2013","favourites_count":52215,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40391,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E7CCE8","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\/1140121999370379265\/z-3FQusG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140121999370379265\/z-3FQusG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214076414\/1526294477","profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:30:00 +0000 2020","id":1234516315622301698,"id_str":"1234516315622301698","text":"The - PPS message went on to highlight another development: It warned that students - from Asian backgrounds had been \"\u2026 https:\/\/t.co\/ijwwSb051B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ijwwSb051B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234516315622301698","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":16491683,"id_str":"16491683","name":"Willamette - Week","screen_name":"wweek","location":"Portland, Ore.","description":"Willamette - Week is Portland''s favorite media company. Sign up for our daily newsletter: - https:\/\/t.co\/qGeo6yN3Tg. Become a Friend of Willamette Week: https:\/\/t.co\/hJb7IegBcw","url":"https:\/\/t.co\/RxbYTq9Oc3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RxbYTq9Oc3","expanded_url":"http:\/\/wweek.com","display_url":"wweek.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/qGeo6yN3Tg","expanded_url":"http:\/\/bit.ly\/2AhUOms","display_url":"bit.ly\/2AhUOms","indices":[88,111]},{"url":"https:\/\/t.co\/hJb7IegBcw","expanded_url":"http:\/\/wweek.com\/support\/","display_url":"wweek.com\/support\/","indices":[149,172]}]}},"protected":false,"followers_count":185964,"friends_count":255,"listed_count":1948,"created_at":"Sat - Sep 27 22:00:43 +0000 2008","favourites_count":1887,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":26139,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/885616939967500289\/v6xodCoU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/885616939967500289\/v6xodCoU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16491683\/1444844074","profile_link_color":"243063","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":10,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562829549568,"id_str":"1234518562829549568","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114106856,"id_str":"114106856","name":"\ud83d\udcf7\u2708\ud83c\udf55\ud83c\udfb6\ud83c\udfa4\ud83d\udcd5","screen_name":"van2fabiola","location":"\uc778\ub3c4\ub124\uc2dc\uc544","description":"\uc778\ud53c\ub2c8\ud2b8 - - \ubc29\ud0c4\uc18c\ub144\ub2e8 - \uc6cc\ub108\uc6d0 HD picts \u2764 || https:\/\/t.co\/V6cKq3c6sZ","url":"https:\/\/t.co\/8B3ehitgwU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8B3ehitgwU","expanded_url":"http:\/\/van2fabiola.blogspot.com","display_url":"van2fabiola.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/V6cKq3c6sZ","expanded_url":"https:\/\/listography.com\/van2fabiola","display_url":"listography.com\/van2fabiola","indices":[33,56]}]}},"protected":false,"followers_count":3563,"friends_count":110,"listed_count":46,"created_at":"Sun - Feb 14 04:48:48 +0000 2010","favourites_count":333,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":216471,"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\/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\/1112001085747519488\/GPug9SMv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1112001085747519488\/GPug9SMv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/114106856\/1532419270","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153505,"favorite_count":478705,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562749980673,"id_str":"1234518562749980673","text":"RT - @TeamTrump: WATCH: President @realDonaldTrump will meet with pharmaceutical - companies today to discuss accelerating a #Coronavirus vacci\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[121,133]}],"symbols":[],"user_mentions":[{"screen_name":"TeamTrump","name":"Team - Trump (Text TRUMP to 88022)","id":729676086632656900,"id_str":"729676086632656900","indices":[3,13]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[32,48]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":788945381480464386,"id_str":"788945381480464386","name":"Sam","screen_name":"Samtaylorrose","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":237,"listed_count":0,"created_at":"Thu - Oct 20 03:30:11 +0000 2016","favourites_count":68820,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46599,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:21:22 +0000 2020","id":1234514142247165957,"id_str":"1234514142247165957","text":"WATCH: - President @realDonaldTrump will meet with pharmaceutical companies today to - discuss accelerating a\u2026 https:\/\/t.co\/DHXTMwjjmW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[17,33]}],"urls":[{"url":"https:\/\/t.co\/DHXTMwjjmW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234514142247165957","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":729676086632656900,"id_str":"729676086632656900","name":"Team - Trump (Text TRUMP to 88022)","screen_name":"TeamTrump","location":"USA","description":"The - official Twitter for the Trump Campaign. Together, we will KEEP AMERICA GREAT! - \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/mZB2hy4Wdz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mZB2hy4Wdz","expanded_url":"http:\/\/www.DonaldJTrump.com","display_url":"DonaldJTrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1498018,"friends_count":104,"listed_count":3543,"created_at":"Mon - May 09 14:15:10 +0000 2016","favourites_count":2956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19230,"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\/745768799849308160\/KrZhjkpH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/745768799849308160\/KrZhjkpH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729676086632656900\/1582139205","profile_link_color":"CB0606","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1644,"favorite_count":5439,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1644,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562687143937,"id_str":"1234518562687143937","text":"RT - @dhinchcliffe: New Post: Effective strategies and tools for #remotework during - #coronavirus\nhttps:\/\/t.co\/hAzdCnNYAe\nA guide for orgs lar\u2026","truncated":false,"entities":{"hashtags":[{"text":"remotework","indices":[63,74]},{"text":"coronavirus","indices":[82,94]}],"symbols":[],"user_mentions":[{"screen_name":"dhinchcliffe","name":"Dion - Hinchcliffe","id":1585,"id_str":"1585","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/hAzdCnNYAe","expanded_url":"https:\/\/www.zdnet.com\/article\/effective-strategies-and-tools-for-remote-work-during-coronavirus\/","display_url":"zdnet.com\/article\/effect\u2026","indices":[95,118]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":885681110574919684,"id_str":"885681110574919684","name":"Leandro - Gon\u00e7alves","screen_name":"Le_Gonn","location":"Rio de Janeiro, Brasil","description":"Carioca, - brasileiro, Flamenguista, Analista de TI e Pseudo investidor (#Virtualization - #EUC #Datacenter #Citrix #VMWare #Microsoft #HCI) e viajante!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":1651,"listed_count":0,"created_at":"Fri - Jul 14 02:03:26 +0000 2017","favourites_count":3895,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2040,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131654600447143944\/5JCX8P1M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131654600447143944\/5JCX8P1M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/885681110574919684\/1579456228","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 01:46:29 +0000 2020","id":1234293969833594887,"id_str":"1234293969833594887","text":"New - Post: Effective strategies and tools for #remotework during #coronavirus\nhttps:\/\/t.co\/hAzdCnNYAe\nA - guide for or\u2026 https:\/\/t.co\/OyaoghFMiy","truncated":true,"entities":{"hashtags":[{"text":"remotework","indices":[45,56]},{"text":"coronavirus","indices":[64,76]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hAzdCnNYAe","expanded_url":"https:\/\/www.zdnet.com\/article\/effective-strategies-and-tools-for-remote-work-during-coronavirus\/","display_url":"zdnet.com\/article\/effect\u2026","indices":[77,100]},{"url":"https:\/\/t.co\/OyaoghFMiy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234293969833594887","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1585,"id_str":"1585","name":"Dion - Hinchcliffe","screen_name":"dhinchcliffe","location":"Washington, D.C.","description":"Thinker, - strategist, enterprise architect, keynote speaker, analyst, book author, futurist - on IT, #EnSw, #digitalworkplace, #cx, #cio. @Constellationr @ZDNet","url":"https:\/\/t.co\/FNCIWgZoAe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FNCIWgZoAe","expanded_url":"http:\/\/dionhinchcliffe.com","display_url":"dionhinchcliffe.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":56344,"friends_count":4714,"listed_count":5252,"created_at":"Sun - Jul 16 21:38:36 +0000 2006","favourites_count":46357,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":53829,"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\/2228251926\/dion_headshot_red_background_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2228251926\/dion_headshot_red_background_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1585\/1462808162","profile_link_color":"333370","profile_sidebar_border_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":68,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562687070208,"id_str":"1234518562687070208","text":"RT - @RepMattGaetz: The country can take great comfort in the fact that @realDonaldTrump - has built teams to solve problems his entire life.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepMattGaetz","name":"Rep. - Matt Gaetz","id":818948638890217473,"id_str":"818948638890217473","indices":[3,16]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[70,86]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2455478245,"id_str":"2455478245","name":"Scott","screen_name":"Ladude2014","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1535,"friends_count":1219,"listed_count":1,"created_at":"Sun - Apr 20 20:02:56 +0000 2014","favourites_count":70805,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54195,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196268887148417024\/pFWF8waF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196268887148417024\/pFWF8waF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2455478245\/1582221489","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:06:15 +0000 2020","id":1234495240851116033,"id_str":"1234495240851116033","text":"The - country can take great comfort in the fact that @realDonaldTrump has built - teams to solve problems his entire l\u2026 https:\/\/t.co\/MT4viNaNLv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[52,68]}],"urls":[{"url":"https:\/\/t.co\/MT4viNaNLv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234495240851116033","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":818948638890217473,"id_str":"818948638890217473","name":"Rep. - Matt Gaetz","screen_name":"RepMattGaetz","location":"","description":"Official - Twitter for Congressman Matt Gaetz. Proud conservative who is honored to serve - the First District of Florida.","url":"https:\/\/t.co\/GcjK1dZCtR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GcjK1dZCtR","expanded_url":"http:\/\/Gaetz.house.gov","display_url":"Gaetz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":651203,"friends_count":854,"listed_count":2230,"created_at":"Tue - Jan 10 22:32:25 +0000 2017","favourites_count":612,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5227,"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\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818948638890217473\/1546465602","profile_link_color":"BB1A2A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4546,"favorite_count":16027,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4546,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562678636544,"id_str":"1234518562678636544","text":"RT - @GiuseppePalma78: Per gli 80 euro di #Renzi furono messi 10 miliardi (2014).\nPer - il salvataggio di #MpS e altre banche 20 miliardi (2016\u2026","truncated":false,"entities":{"hashtags":[{"text":"Renzi","indices":[40,46]},{"text":"MpS","indices":[102,106]}],"symbols":[],"user_mentions":[{"screen_name":"GiuseppePalma78","name":"Avv. - Giuseppe PALMA","id":2414070806,"id_str":"2414070806","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":453079684,"id_str":"453079684","name":"Mauro - Valentini \ud83c\uddee\ud83c\uddf9","screen_name":"Mauro_Valentini","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":157,"listed_count":0,"created_at":"Mon - Jan 02 15:19:52 +0000 2012","favourites_count":308,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1990,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2999491575\/73b85989ec73ac7ce335f1805ecc6244_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2999491575\/73b85989ec73ac7ce335f1805ecc6244_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/453079684\/1498998382","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:17:45 +0000 2020","id":1234452835238076416,"id_str":"1234452835238076416","text":"Per - gli 80 euro di #Renzi furono messi 10 miliardi (2014).\nPer il salvataggio - di #MpS e altre banche 20 miliardi (2\u2026 https:\/\/t.co\/LtY3SRF2us","truncated":true,"entities":{"hashtags":[{"text":"Renzi","indices":[19,25]},{"text":"MpS","indices":[81,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LtY3SRF2us","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234452835238076416","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2414070806,"id_str":"2414070806","name":"Avv. - Giuseppe PALMA","screen_name":"GiuseppePalma78","location":"Milano (originario - di Ostuni)","description":"Avvocato. Autore di oltre venti libri (saggi giuridici, - politici, letterari e poesie). Scrivo su https:\/\/t.co\/VjKkeFQREB e su #Libero - con Paolo Becchi","url":"https:\/\/t.co\/qs0nVemthr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qs0nVemthr","expanded_url":"https:\/\/scenarieconomici.it","display_url":"scenarieconomici.it","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/VjKkeFQREB","expanded_url":"http:\/\/Scenarieconomici.it","display_url":"Scenarieconomici.it","indices":[97,120]}]}},"protected":false,"followers_count":15210,"friends_count":2297,"listed_count":84,"created_at":"Thu - Mar 27 11:06:30 +0000 2014","favourites_count":17203,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":68240,"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\/1033079704243384320\/XCTX1hSH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033079704243384320\/XCTX1hSH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2414070806\/1551212785","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":693,"favorite_count":1654,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":693,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562557104129,"id_str":"1234518562557104129","text":"RT - @jtblogs: Watch \u2013 Iranian Muslims Lick, Kiss Shrines: Say They Are \u2018Not - Scared of Coronavirus\u2019 https:\/\/t.co\/DA3zHb1R3E","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jtblogs","name":"jtblogs","id":17468666,"id_str":"17468666","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/DA3zHb1R3E","expanded_url":"https:\/\/www.breitbart.com\/middle-east\/2020\/03\/02\/watch-iranian-muslims-lick-kiss-shrines-say-they-are-not-scared-of-coronavirus\/","display_url":"breitbart.com\/middle-east\/20\u2026","indices":[98,121]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1174725371348082706,"id_str":"1174725371348082706","name":"Judge - Dregg","screen_name":"woodrow_bill","location":"Arkansas","description":"Constitutional - Christian Conservative. Love my Wife & Kids. Proud NRA Life Service Member. - #2AMiltia #MolonLabe #America1st #NRA #Trump2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6319,"friends_count":6597,"listed_count":1,"created_at":"Thu - Sep 19 16:42:33 +0000 2019","favourites_count":332,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21843,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220921348387635201\/jn_ltyv5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220921348387635201\/jn_ltyv5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1174725371348082706\/1576202115","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:19 +0000 2020","id":1234518407627902978,"id_str":"1234518407627902978","text":"Watch - \u2013 Iranian Muslims Lick, Kiss Shrines: Say They Are \u2018Not Scared of - Coronavirus\u2019 https:\/\/t.co\/DA3zHb1R3E","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DA3zHb1R3E","expanded_url":"https:\/\/www.breitbart.com\/middle-east\/2020\/03\/02\/watch-iranian-muslims-lick-kiss-shrines-say-they-are-not-scared-of-coronavirus\/","display_url":"breitbart.com\/middle-east\/20\u2026","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17468666,"id_str":"17468666","name":"jtblogs","screen_name":"jtblogs","location":"United - States","description":"#ChristianConservative #NRA #ProLife #MAGA #BuildTheWall - #EndRefugees #Trump2020 #WalkAway #BeBest #KAGA #ILoveMyPresident #BackTheBlue\ud83d\udc4a\ud83c\uddfa\ud83c\uddf8\ud83d\udc4d#jtblogs\ud83d\udcccjt\u26a1\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37059,"friends_count":36185,"listed_count":48,"created_at":"Tue - Nov 18 19:18:38 +0000 2008","favourites_count":271621,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":692650,"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\/675722282015318016\/5UXFCz3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/675722282015318016\/5UXFCz3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17468666\/1579740044","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"},"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,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562351435781,"id_str":"1234518562351435781","text":"RT - @RManning47: #Coronavirus advisory from #Oregon\u2019s largest school district - (\u2066@PPSConnect\u2069) includes anti-bullying, anti-xenophobic messag\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[16,28]},{"text":"Oregon","indices":[43,50]}],"symbols":[],"user_mentions":[{"screen_name":"RManning47","name":"Rob - Manning","id":37601816,"id_str":"37601816","indices":[3,14]},{"screen_name":"PPSConnect","name":"Portland - Public Schools","id":403012191,"id_str":"403012191","indices":[79,90]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1112563053185261569,"id_str":"1112563053185261569","name":"Genevieve","screen_name":"PdxORMom","location":"","description":"#RedforEd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":940,"listed_count":0,"created_at":"Mon - Apr 01 03:51:17 +0000 2019","favourites_count":2627,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2604,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1112564256082268161\/OTjhUtlX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1112564256082268161\/OTjhUtlX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1112563053185261569\/1575397551","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 15:51:33 +0000 2020","id":1234144250230493184,"id_str":"1234144250230493184","text":"#Coronavirus - advisory from #Oregon\u2019s largest school district (\u2066@PPSConnect\u2069) - includes anti-bullying, anti-xenophobi\u2026 https:\/\/t.co\/YeRZzfJtuM","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]},{"text":"Oregon","indices":[27,34]}],"symbols":[],"user_mentions":[{"screen_name":"PPSConnect","name":"Portland - Public Schools","id":403012191,"id_str":"403012191","indices":[63,74]}],"urls":[{"url":"https:\/\/t.co\/YeRZzfJtuM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234144250230493184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37601816,"id_str":"37601816","name":"Rob - Manning","screen_name":"RManning47","location":"Portland, OR","description":"Reporter - & editor for @opb: education, children, urban planning, and everything else - in the Great Northwest. RT not endorsement.","url":"https:\/\/t.co\/5o1Z1HAuw7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5o1Z1HAuw7","expanded_url":"http:\/\/www.opb.org","display_url":"opb.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6450,"friends_count":1964,"listed_count":288,"created_at":"Mon - May 04 05:21:21 +0000 2009","favourites_count":2617,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7724,"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\/1185449601039421441\/VH5Pw2AL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185449601039421441\/VH5Pw2AL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37601816\/1571468185","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":56,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562292715526,"id_str":"1234518562292715526","text":"The - coronavirus could hit the U.S. harder than other wealthy countries https:\/\/t.co\/8SYAkzLk51","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8SYAkzLk51","expanded_url":"https:\/\/www.washingtonpost.com\/outlook\/2020\/03\/02\/coronavirus-could-hit-us-harder-than-other-wealthy-countries\/","display_url":"washingtonpost.com\/outlook\/2020\/0\u2026","indices":[71,94]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":344247978,"id_str":"344247978","name":"Roger - Wilner","screen_name":"JTMLX","location":"Portland, OR","description":"Military - veteran; retired attorney; grandfather; former campaign manager. Yale Univ; - Stanford Univ; Univ Michigan Law School. ELIZABETH WARREN FOR PRESIDENT.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":580,"friends_count":2240,"listed_count":6,"created_at":"Thu - Jul 28 19:28:57 +0000 2011","favourites_count":47149,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":97195,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/866452619220328448\/8VyoTlo4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/866452619220328448\/8VyoTlo4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344247978\/1479759085","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562280177667,"id_str":"1234518562280177667","text":"RT - @Brittany_207: Catholics are going to be our coronavirus demise.\n\nForget - doctrinal differences for a sec. Y''all need to get with the res\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Brittany_207","name":"Brittany - Rose \ud83d\udcfb\ud83c\udfb6","id":14891483,"id_str":"14891483","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321151098,"id_str":"321151098","name":"Zachk - Shaffer","screen_name":"JediMasterZac","location":"Get me outta here","description":"Legendary - Hunter. take a peak @ the avi 4 proof","url":"https:\/\/t.co\/rFElzn49SD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rFElzn49SD","expanded_url":"http:\/\/thesixffl.wixsite.com\/thesixffl","display_url":"thesixffl.wixsite.com\/thesixffl","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":377,"friends_count":608,"listed_count":4,"created_at":"Tue - Jun 21 03:15:20 +0000 2011","favourites_count":5766,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27530,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1220217042030223361\/O_kWxXk0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220217042030223361\/O_kWxXk0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321151098\/1470157192","profile_link_color":"3000B3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 00:44:35 +0000 2020","id":1234278395548139522,"id_str":"1234278395548139522","text":"Catholics - are going to be our coronavirus demise.\n\nForget doctrinal differences for - a sec. Y''all need to get with t\u2026 https:\/\/t.co\/YKaNATE8NG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YKaNATE8NG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234278395548139522","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14891483,"id_str":"14891483","name":"Brittany - Rose \ud83d\udcfb\ud83c\udfb6","screen_name":"Brittany_207","location":"Maine","description":"If - Ron Burgundy & Ron Swanson had a daughter.\n#Qmorningshow #iamcyy\nConcerts\ud83e\udd18Political - Science Denier \ud83e\udd94 @Flinnie''s Nephew \ud83e\udd37 https:\/\/t.co\/715am0Tv2N","url":"https:\/\/t.co\/JIFEoonzj1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JIFEoonzj1","expanded_url":"https:\/\/wjbq.com\/author\/brittanyrose\/","display_url":"wjbq.com\/author\/brittan\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/715am0Tv2N","expanded_url":"http:\/\/instagram.com\/brittany_207","display_url":"instagram.com\/brittany_207","indices":[124,147]}]}},"protected":false,"followers_count":13020,"friends_count":7458,"listed_count":56,"created_at":"Sat - May 24 14:43:55 +0000 2008","favourites_count":80913,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29256,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"00D9BC","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\/1234100879910936576\/gIqEFAtJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234100879910936576\/gIqEFAtJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14891483\/1554721007","profile_link_color":"CC6666","profile_sidebar_border_color":"D1D1D1","profile_sidebar_fill_color":"FFC2C9","profile_text_color":"C0B4CF","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234177827878195200,"quoted_status_id_str":"1234177827878195200","quoted_status":{"created_at":"Sun - Mar 01 18:04:58 +0000 2020","id":1234177827878195200,"id_str":"1234177827878195200","text":"At - mass today they were still doing the communion wine. Dozens of people lining - up to drink from the same cup. Ques\u2026 https:\/\/t.co\/qiRjUMkr38","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qiRjUMkr38","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234177827878195200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1500129642,"id_str":"1500129642","name":"Matt - Walsh","screen_name":"MattWalshBlog","location":"","description":"theocratic - fascist, tyrant, celebrated banjo player and beekeeper","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":292953,"friends_count":478,"listed_count":2611,"created_at":"Tue - Jun 11 03:17:16 +0000 2013","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":39715,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129503261940158466\/v1lBid0U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129503261940158466\/v1lBid0U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1500129642\/1565223211","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":845,"favorite_count":8348,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":17,"favorite_count":399,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234177827878195200,"quoted_status_id_str":"1234177827878195200","retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562171170816,"id_str":"1234518562171170816","text":"RT - @lemasabachthani: *NEW YORK REPORTS FIRST CORONAVIRUS CASE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lemasabachthani","name":"lemasabachthani","id":128616566,"id_str":"128616566","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1177283035848413189,"id_str":"1177283035848413189","name":"United - States","screen_name":"UnitedS96114853","location":"Republic of Slovenia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":42,"listed_count":1,"created_at":"Thu - Sep 26 18:05:40 +0000 2019","favourites_count":2261,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7859,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1177304034929254404\/Em5SoTzx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1177304034929254404\/Em5SoTzx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:19:01 +0000 2020","id":1234513550347030531,"id_str":"1234513550347030531","text":"*NEW - YORK REPORTS FIRST CORONAVIRUS CASE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":128616566,"id_str":"128616566","name":"lemasabachthani","screen_name":"lemasabachthani","location":"milano","description":"the - traders cahier. finance, zeitgeist, economics, opera, rants. be a bank, stay - aaa","url":"https:\/\/t.co\/c1tDVSwQqN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c1tDVSwQqN","expanded_url":"https:\/\/www.instagram.com\/privatelema\/","display_url":"instagram.com\/privatelema\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":15106,"friends_count":999,"listed_count":705,"created_at":"Thu - Apr 01 17:23:08 +0000 2010","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50140,"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\/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\/444043017301663744\/TOsGO-DX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/444043017301663744\/TOsGO-DX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128616566\/1487165836","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCDFE0","profile_text_color":"2D535E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518562003394566,"id_str":"1234518562003394566","text":"RT - @arashcaviani: @Minajabbarian #Coronavirus outbreak among tens of thousands - of Iranians.\n650 ppl killed\nThe tragedy is the lack of manag\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[33,45]}],"symbols":[],"user_mentions":[{"screen_name":"arashcaviani","name":"Arash","id":840686479307333633,"id_str":"840686479307333633","indices":[3,16]},{"screen_name":"Minajabbarian","name":"Mina","id":1350553807,"id_str":"1350553807","indices":[18,32]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292418900,"id_str":"292418900","name":"Soheh - Azadi","screen_name":"Iran__Persia","location":"","description":"Human rights, - Nature.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1968,"friends_count":444,"listed_count":67,"created_at":"Tue - May 03 16:29:35 +0000 2011","favourites_count":5917,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44913,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"212622","profile_background_image_url":"http:\/\/abs.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\/1215451583023992833\/Y32j7jc7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215451583023992833\/Y32j7jc7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292418900\/1578621215","profile_link_color":"6F7069","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 18:57:19 +0000 2020","id":1234191001146798087,"id_str":"1234191001146798087","text":"@Minajabbarian - #Coronavirus outbreak among tens of thousands of Iranians.\n650 ppl killed\nThe - tragedy is the lack of\u2026 https:\/\/t.co\/qRigUTzzDh","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[15,27]}],"symbols":[],"user_mentions":[{"screen_name":"Minajabbarian","name":"Mina","id":1350553807,"id_str":"1350553807","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/qRigUTzzDh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234191001146798087","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":1234175091845537794,"in_reply_to_status_id_str":"1234175091845537794","in_reply_to_user_id":1350553807,"in_reply_to_user_id_str":"1350553807","in_reply_to_screen_name":"Minajabbarian","user":{"id":840686479307333633,"id_str":"840686479307333633","name":"Arash","screen_name":"arashcaviani","location":"","description":"Human - Rights Defender- Goal, a Democratic & Secular Iran by National Council of - Resistance of Iran- Anti-Terrorism & Islamic fundamentalism in the Middle - East","url":"https:\/\/t.co\/SmbKpPCISa","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SmbKpPCISa","expanded_url":"https:\/\/www.maryam-rajavi.com\/en\/","display_url":"maryam-rajavi.com\/en\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2428,"friends_count":1929,"listed_count":34,"created_at":"Sat - Mar 11 22:10:50 +0000 2017","favourites_count":14097,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17925,"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\/1148464946562441216\/AhxtUaAt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148464946562441216\/AhxtUaAt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/840686479307333633\/1562579897","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":15,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518561999278080,"id_str":"1234518561999278080","text":"RT - @_esther_sanz: Yo lo \u00fanico que s\u00e9 es que si esta gesti\u00f3n del - Coronavirus llega a pasar con un gobierno de derechas, ya habr\u00eda organizada\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_esther_sanz","name":"Esther - Sanz","id":1000098956318269446,"id_str":"1000098956318269446","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":713462042397700096,"id_str":"713462042397700096","name":"M. - Teresa Pamo Faure","screen_name":"faure_m","location":".","description":".","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":829,"friends_count":373,"listed_count":1,"created_at":"Fri - Mar 25 20:26:21 +0000 2016","favourites_count":157092,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122671,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1162725130046517248\/GaWMEFsf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162725130046517248\/GaWMEFsf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/713462042397700096\/1561365289","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 11:00:36 +0000 2020","id":1234433418160635906,"id_str":"1234433418160635906","text":"Yo - lo \u00fanico que s\u00e9 es que si esta gesti\u00f3n del Coronavirus llega - a pasar con un gobierno de derechas, ya habr\u00eda orga\u2026 https:\/\/t.co\/uic0kNCyPs","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uic0kNCyPs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234433418160635906","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1000098956318269446,"id_str":"1000098956318269446","name":"Esther - Sanz","screen_name":"_esther_sanz","location":"","description":"Hago #CosasDeFachas - y hablo por m\u00ed. Me tengo que morder la lengua porque los labios no debo. - Bella a ratos. Ind\u00f3mita en lo personal. Concejal #SeguridadYFamilia","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20250,"friends_count":825,"listed_count":70,"created_at":"Fri - May 25 19:39:06 +0000 2018","favourites_count":31478,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13060,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233133727695429634\/P4VAPy56_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233133727695429634\/P4VAPy56_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1000098956318269446\/1560021360","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":97,"favorite_count":292,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":97,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518561961521152,"id_str":"1234518561961521152","text":"RT - @SergioNovelli: Portugal confirm\u00f3 el primer caso de infectado por coronavirus - en ese pa\u00eds, un hombre que estuvo en el norte de Italia de\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SergioNovelli","name":"Sergio - Novelli","id":54713891,"id_str":"54713891","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":190424441,"id_str":"190424441","name":"Gerson - Coronel","screen_name":"CoronelGers","location":"Medell\u00edn, Colombia","description":"Lcdo. - Administraci\u00f3n ULA 2008. Abogado UCAT 2013.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":826,"friends_count":1476,"listed_count":6,"created_at":"Mon - Sep 13 22:41:51 +0000 2010","favourites_count":12351,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27451,"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\/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\/805549379545350144\/n1pVwT_9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/805549379545350144\/n1pVwT_9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/190424441\/1480892846","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:59:57 +0000 2020","id":1234478556253741057,"id_str":"1234478556253741057","text":"Portugal - confirm\u00f3 el primer caso de infectado por coronavirus en ese pa\u00eds, - un hombre que estuvo en el norte de Ital\u2026 https:\/\/t.co\/qaWrXKubDY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qaWrXKubDY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234478556253741057","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54713891,"id_str":"54713891","name":"Sergio - Novelli","screen_name":"SergioNovelli","location":"\u00dcT: 10.476962,-66.868163","description":"Venezuelan - Journalist living in Miami, USA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":602985,"friends_count":2741,"listed_count":1586,"created_at":"Tue - Jul 07 23:08:27 +0000 2009","favourites_count":148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25208,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4A4D44","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\/1108371764252471296\/Fvre_Wf4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1108371764252471296\/Fvre_Wf4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54713891\/1553091267","profile_link_color":"61292E","profile_sidebar_border_color":"5DC2A9","profile_sidebar_fill_color":"518B9C","profile_text_color":"473A3A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":217,"favorite_count":129,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":217,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518561915162624,"id_str":"1234518561915162624","text":"RT - @cnalive: Several Catholic colleges and universities with study abroad programs - in Italy have ended the semester early and are sending s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cnalive","name":"Catholic - News Agency","id":32422915,"id_str":"32422915","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":186282830,"id_str":"186282830","name":"marla_e - \ud83c\udfb6\ud83c\udfb9\ud83d\udc8e","screen_name":"quiziep8jazz101","location":"Philippines","description":"Do - not ask for love or tenderness or affection. Ds attentions are of value only - when given voluntarily.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1110,"friends_count":570,"listed_count":126,"created_at":"Fri - Sep 03 01:25:27 +0000 2010","favourites_count":44023,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":182359,"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\/1150099822436687873\/Hs9Kb__n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1150099822436687873\/Hs9Kb__n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/186282830\/1563039174","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 02:03:03 +0000 2020","id":1234298141349949440,"id_str":"1234298141349949440","text":"Several - Catholic colleges and universities with study abroad programs in Italy have - ended the semester early and ar\u2026 https:\/\/t.co\/13brwmKehk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/13brwmKehk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234298141349949440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.catholicnewsagency.com\" rel=\"nofollow\"\u003eAuto tweets\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32422915,"id_str":"32422915","name":"Catholic - News Agency","screen_name":"cnalive","location":"Denver, CO","description":"Official - Twitter account | News and resources on the Catholic Church, from Catholic - journalists. | A service of @EWTNews","url":"https:\/\/t.co\/HqHvY0a8R9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HqHvY0a8R9","expanded_url":"http:\/\/www.catholicnewsagency.com","display_url":"catholicnewsagency.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":330729,"friends_count":26645,"listed_count":2973,"created_at":"Fri - Apr 17 14:23:09 +0000 2009","favourites_count":4134,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":86795,"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\/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\/755553089172549632\/vazPbpCx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/755553089172549632\/vazPbpCx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32422915\/1462459320","profile_link_color":"2EA4FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9FD7ED","profile_text_color":"171715","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":96,"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"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518561881808897,"id_str":"1234518561881808897","text":"Walz - said he is participating in a call with the White House at 11 a.m. on #coronavirus - with other U.S. governors.","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[75,87]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234518334965764110,"in_reply_to_status_id_str":"1234518334965764110","in_reply_to_user_id":172788180,"in_reply_to_user_id_str":"172788180","in_reply_to_screen_name":"rljourno","user":{"id":172788180,"id_str":"172788180","name":"Ricardo - Lopez","screen_name":"rljourno","location":"Minneapolis, MN","description":"Senior - political reporter for @MNReformer, a @StatesNewsroom outlet. Alumnus of @latimes - @StarTribune @Variety @MyDesert Email: ricardo@minnesotareformer.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5479,"friends_count":2641,"listed_count":237,"created_at":"Fri - Jul 30 16:21:51 +0000 2010","favourites_count":3265,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13636,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228443627493502981\/uoP_3e3F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228443627493502981\/uoP_3e3F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172788180\/1411221649","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"},"geo":null,"coordinates":null,"place":{"id":"60e2c37980197297","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/60e2c37980197297.json","place_type":"city","name":"St - Paul","full_name":"St Paul, MN","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-93.207783,44.8907521],[-93.003514,44.8907521],[-93.003514,44.992279],[-93.207783,44.992279]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:56 +0000 2020","id":1234518561785204738,"id_str":"1234518561785204738","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38884840,"id_str":"38884840","name":"Capricorn - Seasoning","screen_name":"4evergraceJONES","location":"Boston_Bish ","description":"#thetespa - Grace Jones is my spirit animal","url":"https:\/\/t.co\/NBacWfYNGu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NBacWfYNGu","expanded_url":"http:\/\/www.thetespa.com\/","display_url":"thetespa.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":774,"friends_count":628,"listed_count":11,"created_at":"Sat - May 09 16:53:00 +0000 2009","favourites_count":16859,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":84710,"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\/1198709654496448513\/i8gKwnSO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198709654496448513\/i8gKwnSO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38884840\/1453760850","profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDEDED","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153505,"favorite_count":478705,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518561529516033,"id_str":"1234518561529516033","text":"RT - @ElNuevoDia: Wanda V\u00e1zquez convoca a los alcaldes para discutir los protocolos - ante la amenaza del coronavirus https:\/\/t.co\/xNmbuqEHmj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElNuevoDia","name":"El - Nuevo D\u00eda","id":15726324,"id_str":"15726324","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/xNmbuqEHmj","expanded_url":"http:\/\/bit.ly\/2uJpsTO","display_url":"bit.ly\/2uJpsTO","indices":[114,137]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1152335374607409152,"id_str":"1152335374607409152","name":"Lady - Godiva","screen_name":"GardelAzul","location":"Puerto Rico, USA","description":"Bajo - el perfume puro del incienso que se sienta la llama de nuestro amor.\ud83c\uddf5\ud83c\uddf7\ud83c\uddfa\ud83c\uddf2\ud83c\uddee\ud83c\uddf1","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":395,"listed_count":0,"created_at":"Fri - Jul 19 21:52:17 +0000 2019","favourites_count":8583,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11413,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1174128229315166208\/zVJsvFXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1174128229315166208\/zVJsvFXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1152335374607409152\/1565472628","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 10:53:45 +0000 2020","id":1234431695094415360,"id_str":"1234431695094415360","text":"Wanda - V\u00e1zquez convoca a los alcaldes para discutir los protocolos ante la amenaza - del coronavirus https:\/\/t.co\/xNmbuqEHmj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xNmbuqEHmj","expanded_url":"http:\/\/bit.ly\/2uJpsTO","display_url":"bit.ly\/2uJpsTO","indices":[98,121]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":15726324,"id_str":"15726324","name":"El - Nuevo D\u00eda","screen_name":"ElNuevoDia","location":"Puerto Rico","description":"El - principal medio de noticias de Puerto Rico. Sigue Preguntando.","url":"https:\/\/t.co\/5kK8QJl34O","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5kK8QJl34O","expanded_url":"http:\/\/www.elnuevodia.com","display_url":"elnuevodia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":668938,"friends_count":1095,"listed_count":2576,"created_at":"Mon - Aug 04 19:14:05 +0000 2008","favourites_count":126,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":244379,"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\/1073598469716078594\/Iguj8OHL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1073598469716078594\/Iguj8OHL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15726324\/1531513176","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518561445552128,"id_str":"1234518561445552128","text":"RT - @JoeListComedy: Shooting my special at the Village Underground in Manhattan - tonight. Tickets still available for the 10pm show. Link bel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeListComedy","name":"Joe - List","id":31213162,"id_str":"31213162","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":533747731,"id_str":"533747731","name":"Eric - Oligny","screen_name":"EricOligny","location":"Brooklyn, NY","description":"Stand - Up Comedian\n\n [ Insert Credits Here ]","url":"https:\/\/t.co\/rmY2ZNdQ46","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rmY2ZNdQ46","expanded_url":"http:\/\/www.ericoligny.com","display_url":"ericoligny.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1389,"friends_count":450,"listed_count":33,"created_at":"Fri - Mar 23 01:53:20 +0000 2012","favourites_count":76099,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5891,"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\/885394822843875328\/QtIguNrh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/885394822843875328\/QtIguNrh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/533747731\/1552717855","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:13:46 +0000 2020","id":1234482030647422976,"id_str":"1234482030647422976","text":"Shooting - my special at the Village Underground in Manhattan tonight. Tickets still - available for the 10pm show. Lin\u2026 https:\/\/t.co\/Zdlj65HoxI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Zdlj65HoxI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234482030647422976","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31213162,"id_str":"31213162","name":"Joe - List","screen_name":"JoeListComedy","location":"New York, NY","description":"I''m - a comedian and I have a weekly podcast called ''Tuesdays with Stories'' and - I love you. Bye. Oh wait! Watch me on Season 2 of The StandUps on Netflix! - Farts.","url":"https:\/\/t.co\/SDcKDXv2zW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDcKDXv2zW","expanded_url":"http:\/\/comedianjoelist.com","display_url":"comedianjoelist.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46344,"friends_count":1222,"listed_count":382,"created_at":"Tue - Apr 14 20:13:11 +0000 2009","favourites_count":23771,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7162,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/756377379556040705\/ikUtISos_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/756377379556040705\/ikUtISos_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31213162\/1378766022","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":449,"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"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518561349079051,"id_str":"1234518561349079051","text":"RT - @MeredthSalenger: Real quick: How are Republicans like Donald ok with 2% of - people dying from coronavirus as if 2% is not a very high nu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeredthSalenger","name":"Meredith - Salenger","id":34785922,"id_str":"34785922","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14201721,"id_str":"14201721","name":"Occam''s - Razor","screen_name":"occamsrazor45","location":"","description":"Donald Trump - and the GOP have one goal: The preservation of white privilege and power in - this country. They must go as we seek to restore a more just America.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2106,"friends_count":674,"listed_count":12,"created_at":"Sun - Mar 23 12:08:16 +0000 2008","favourites_count":28131,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":51131,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"241ADB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/886016917185728514\/R82jgCJQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/886016917185728514\/R82jgCJQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14201721\/1575572957","profile_link_color":"0084B4","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 04:37:41 +0000 2020","id":1234337053862547458,"id_str":"1234337053862547458","text":"Real - quick: How are Republicans like Donald ok with 2% of people dying from coronavirus - as if 2% is not a very high\u2026 https:\/\/t.co\/fDpGY7vLSS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fDpGY7vLSS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234337053862547458","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":34785922,"id_str":"34785922","name":"Meredith - Salenger","screen_name":"MeredthSalenger","location":"Malibu, CA","description":"Actress - * SmartyPants \ud83d\udc96 https:\/\/t.co\/Gv4wDA6J2n","url":"https:\/\/t.co\/CmEFb1nvvW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CmEFb1nvvW","expanded_url":"http:\/\/www.imdb.com\/name\/nm0001694\/","display_url":"imdb.com\/name\/nm0001694\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Gv4wDA6J2n","expanded_url":"http:\/\/Instagram.com\/MeredithSalenger","display_url":"Instagram.com\/MeredithSaleng\u2026","indices":[24,47]}]}},"protected":false,"followers_count":80989,"friends_count":1740,"listed_count":613,"created_at":"Fri - Apr 24 00:33:42 +0000 2009","favourites_count":55563,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":39538,"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\/845475767668506624\/Q7HF7Ucm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/845475767668506624\/Q7HF7Ucm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34785922\/1397717765","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6442,"favorite_count":31872,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6442,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518561260916738,"id_str":"1234518561260916738","text":"RT - @EmeraldRobinson: The ultimate cure for coronavirus: America First policies.\n\nCrucial - medicines must be made in the USA.\n\nOur borders mu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmeraldRobinson","name":"Emerald - Robinson \u271d\ufe0f","id":3932768472,"id_str":"3932768472","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":869406612384915456,"id_str":"869406612384915456","name":"WilliSue - \ud83d\udeb4\ud83d\udc12","screen_name":"SusanWi31620743","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5168,"friends_count":5397,"listed_count":13,"created_at":"Tue - May 30 04:14:24 +0000 2017","favourites_count":172620,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92221,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/936449146063536129\/HA4UoZUb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/936449146063536129\/HA4UoZUb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/869406612384915456\/1512102612","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:17 +0000 2020","id":1234518399109206018,"id_str":"1234518399109206018","text":"The - ultimate cure for coronavirus: America First policies.\n\nCrucial medicines - must be made in the USA.\n\nOur borders\u2026 https:\/\/t.co\/qZ4sGIFUpt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qZ4sGIFUpt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518399109206018","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3932768472,"id_str":"3932768472","name":"Emerald - Robinson \u271d\ufe0f","screen_name":"EmeraldRobinson","location":"Washington - D.C.","description":"@Newsmax White House Correspondent. Former @OANN. \"Politics - is downstream of culture & culture is downstream of religion.\" 127M Twitter - impressions in 2019.","url":"https:\/\/t.co\/pVMhoiuVK6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pVMhoiuVK6","expanded_url":"http:\/\/emeraldrobinson.com","display_url":"emeraldrobinson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":150381,"friends_count":12032,"listed_count":745,"created_at":"Sun - Oct 18 05:57:46 +0000 2015","favourites_count":13753,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1047149053677514754\/fbtPJUYI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1047149053677514754\/fbtPJUYI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3932768472\/1538494894","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":390,"favorite_count":1022,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":390,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518561151864834,"id_str":"1234518561151864834","text":"RT - @SophiaSaifi: \" We should not panic, we need to be cautious and responsible. - If in the past few weeks you have travelled from China or I\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SophiaSaifi","name":"Sophia - Saifi","id":117439280,"id_str":"117439280","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.akratisaxena.com\" rel=\"nofollow\"\u003ecorona_analysis\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":369315889,"id_str":"369315889","name":"Akrati - Saxena","screen_name":"s_akrati","location":"Singapore","description":"Research - Fellow at NUS, Singapore, Ph.D. from IIT\n\n#feminist, #Data_Scientist, #python\n\nfounder - & M.D. @RightApprise\n\nCurrently working on coronavirus dataset","url":"https:\/\/t.co\/4iBoy81Y2g","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4iBoy81Y2g","expanded_url":"http:\/\/www.akratisaxena.com","display_url":"akratisaxena.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":2448,"listed_count":23,"created_at":"Wed - Sep 07 04:23:17 +0000 2011","favourites_count":890,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20781,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/939804876514533376\/sEb4CbaU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/939804876514533376\/sEb4CbaU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369315889\/1514216566","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 26 17:57:19 +0000 2020","id":1232726349451796480,"id_str":"1232726349451796480","text":"\" - We should not panic, we need to be cautious and responsible. If in the past - few weeks you have travelled from Chi\u2026 https:\/\/t.co\/uVbO5BVv09","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uVbO5BVv09","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1232726349451796480","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117439280,"id_str":"117439280","name":"Sophia - Saifi","screen_name":"SophiaSaifi","location":"Islamabad. Pakistan","description":"@cnni - producer for Pakistan @columbiajourn & @unikent alum. Views are mine, not - CNN''s. RTs are not https:\/\/t.co\/uJa86KIrRv: sophia.saifi@cnn.com","url":"https:\/\/t.co\/ZO4w7p9Ete","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZO4w7p9Ete","expanded_url":"http:\/\/cnn.com","display_url":"cnn.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/uJa86KIrRv","expanded_url":"http:\/\/endorsements.Email","display_url":"endorsements.Email","indices":[99,122]}]}},"protected":false,"followers_count":9372,"friends_count":1870,"listed_count":115,"created_at":"Thu - Feb 25 15:30:14 +0000 2010","favourites_count":5716,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":14346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CBD6","profile_background_image_url":"http:\/\/abs.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\/1065573363240894464\/EfqeIpsS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1065573363240894464\/EfqeIpsS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117439280\/1467280888","profile_link_color":"0A0AFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D6D5D2","profile_text_color":"46369C","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":210,"favorite_count":424,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":210,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518561084903425,"id_str":"1234518561084903425","text":"RT - @AlertaNews24: \ud83c\udde8\ud83c\udded| URGENTE - CORONAVIRUS: Suspendido - el campeonato suizo de f\u00fatbol hasta el 23 de marzo.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlertaNews24","name":"Alerta - News 24","id":39692424,"id_str":"39692424","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232326889357836292,"id_str":"1232326889357836292","name":"Jam\u00f3n - Serrano","screen_name":"JamnSerrano4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":3,"listed_count":0,"created_at":"Tue - Feb 25 15:30:22 +0000 2020","favourites_count":42,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232327196234178563\/q2uWbUUK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232327196234178563\/q2uWbUUK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:21:02 +0000 2020","id":1234514060986724353,"id_str":"1234514060986724353","text":"\ud83c\udde8\ud83c\udded| - URGENTE - CORONAVIRUS: Suspendido el campeonato suizo de f\u00fatbol hasta - el 23 de marzo.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39692424,"id_str":"39692424","name":"Alerta - News 24","screen_name":"AlertaNews24","location":"Global","description":"Alertas - desde todas partes del mundo las 24 horas en tiempo real. (Imagen 23\/02: - \ud83c\uddee\ud83c\uddf9 | Aumenta n\u00famero de casos de coronavirus en - Italia).","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":215790,"friends_count":386,"listed_count":1704,"created_at":"Wed - May 13 05:02:36 +0000 2009","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":51498,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1880036851\/13_Mayo_2011_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1880036851\/13_Mayo_2011_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39692424\/1582474600","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":142,"favorite_count":206,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":142,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518561051303938,"id_str":"1234518561051303938","text":"RT - @redaccionmedica: Coronavirus: los estudiantes de Medicina piden seguir con - sus pr\u00e1cticas cc\/ @_CEEM https:\/\/t.co\/pm0Sx9FNFe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"redaccionmedica","name":"Redacci\u00f3n - M\u00e9dica","id":229001251,"id_str":"229001251","indices":[3,19]},{"screen_name":"_CEEM","name":"CEEM","id":193294010,"id_str":"193294010","indices":[97,103]}],"urls":[{"url":"https:\/\/t.co\/pm0Sx9FNFe","expanded_url":"https:\/\/www.redaccionmedica.com\/secciones\/estudiantes\/coronavirus-los-estudiantes-de-medicina-piden-seguir-con-sus-practicas-5869","display_url":"redaccionmedica.com\/secciones\/estu\u2026","indices":[104,127]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214872785,"id_str":"214872785","name":"esper - jimenez","screen_name":"esperjimca","location":"MADRID ( Espa\u00f1a)","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":151,"listed_count":25,"created_at":"Fri - Nov 12 12:54:12 +0000 2010","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":66736,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:34:32 +0000 2020","id":1234517458532388864,"id_str":"1234517458532388864","text":"Coronavirus: - los estudiantes de Medicina piden seguir con sus pr\u00e1cticas cc\/ @_CEEM - https:\/\/t.co\/pm0Sx9FNFe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_CEEM","name":"CEEM","id":193294010,"id_str":"193294010","indices":[76,82]}],"urls":[{"url":"https:\/\/t.co\/pm0Sx9FNFe","expanded_url":"https:\/\/www.redaccionmedica.com\/secciones\/estudiantes\/coronavirus-los-estudiantes-de-medicina-piden-seguir-con-sus-practicas-5869","display_url":"redaccionmedica.com\/secciones\/estu\u2026","indices":[83,106]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":229001251,"id_str":"229001251","name":"Redacci\u00f3n - M\u00e9dica","screen_name":"redaccionmedica","location":"Espa\u00f1a","description":"Peri\u00f3dico - online con toda la actualidad del sector sanitario. #medicina #enfermer\u00eda - #farmacia #sanidad #salud #pacientes","url":"https:\/\/t.co\/EEsU0Jg8HV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EEsU0Jg8HV","expanded_url":"http:\/\/www.redaccionmedica.com","display_url":"redaccionmedica.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":69693,"friends_count":7713,"listed_count":1664,"created_at":"Tue - Dec 21 07:37:42 +0000 2010","favourites_count":7002,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":227589,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0B2D5C","profile_background_image_url":"http:\/\/abs.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\/1067330511780175873\/WeJyUCVf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1067330511780175873\/WeJyUCVf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/229001251\/1572265539","profile_link_color":"0B2D5C","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"B8C6D1","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518561009344516,"id_str":"1234518561009344516","text":"RT - @TeamTrump: WATCH: President @realDonaldTrump will meet with pharmaceutical - companies today to discuss accelerating a #Coronavirus vacci\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[121,133]}],"symbols":[],"user_mentions":[{"screen_name":"TeamTrump","name":"Team - Trump (Text TRUMP to 88022)","id":729676086632656900,"id_str":"729676086632656900","indices":[3,13]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[32,48]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2752689369,"id_str":"2752689369","name":"Toad","screen_name":"thetoadfrog","location":"","description":"Endlessly - devoted to my sweet husband! Warrior fighting RSD\/CRPS. Lover of music! Child - of God. Thankful I am creative. Mom to 2 rescue dogs.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":372,"listed_count":0,"created_at":"Wed - Aug 27 18:25:26 +0000 2014","favourites_count":31377,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9734,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1209208666525765634\/D0haJC9u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209208666525765634\/D0haJC9u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2752689369\/1577132789","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:21:22 +0000 2020","id":1234514142247165957,"id_str":"1234514142247165957","text":"WATCH: - President @realDonaldTrump will meet with pharmaceutical companies today to - discuss accelerating a\u2026 https:\/\/t.co\/DHXTMwjjmW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[17,33]}],"urls":[{"url":"https:\/\/t.co\/DHXTMwjjmW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234514142247165957","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":729676086632656900,"id_str":"729676086632656900","name":"Team - Trump (Text TRUMP to 88022)","screen_name":"TeamTrump","location":"USA","description":"The - official Twitter for the Trump Campaign. Together, we will KEEP AMERICA GREAT! - \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/mZB2hy4Wdz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mZB2hy4Wdz","expanded_url":"http:\/\/www.DonaldJTrump.com","display_url":"DonaldJTrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1498018,"friends_count":104,"listed_count":3543,"created_at":"Mon - May 09 14:15:10 +0000 2016","favourites_count":2956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19230,"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\/745768799849308160\/KrZhjkpH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/745768799849308160\/KrZhjkpH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729676086632656900\/1582139205","profile_link_color":"CB0606","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1644,"favorite_count":5439,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1644,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560879235081,"id_str":"1234518560879235081","text":"Compran - caretas de alba\u00f1il para enfrentar el coronavirus https:\/\/t.co\/6Gx8bjDAov - via @PeriodicoZocalo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeriodicoZocalo","name":"Peri\u00f3dico - Z\u00f3calo","id":18461620,"id_str":"18461620","indices":[85,101]}],"urls":[{"url":"https:\/\/t.co\/6Gx8bjDAov","expanded_url":"https:\/\/shar.es\/aH0mz9","display_url":"shar.es\/aH0mz9","indices":[57,80]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":516460493,"id_str":"516460493","name":"arjun - rajpurohit","screen_name":"Arjun45Arjun","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":274,"friends_count":542,"listed_count":10,"created_at":"Tue - Mar 06 11:57:42 +0000 2012","favourites_count":11251,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40452,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606593170382544896\/6mXB5Wam_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606593170382544896\/6mXB5Wam_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560732569605,"id_str":"1234518560732569605","text":"RT - @MajinBoochi: Coronavirus in NY? There''s only one person who can save us - https:\/\/t.co\/mlh1UtwaVm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MajinBoochi","name":"Boochi","id":1232473344026517504,"id_str":"1232473344026517504","indices":[3,15]}],"urls":[],"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234317952213803008,"source_status_id_str":"1234317952213803008","source_user_id":1232473344026517504,"source_user_id_str":"1232473344026517504"}]},"extended_entities":{"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234317952213803008,"source_status_id_str":"1234317952213803008","source_user_id":1232473344026517504,"source_user_id_str":"1232473344026517504"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":430272736,"id_str":"430272736","name":"Celeste.","screen_name":"CeceKabemba","location":"New - York","description":"Michigan State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":327,"friends_count":238,"listed_count":1,"created_at":"Tue - Dec 06 23:47:42 +0000 2011","favourites_count":29580,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28379,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1170396485172834304\/6G_65Rk3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170396485172834304\/6G_65Rk3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/430272736\/1399737460","profile_link_color":"4800B3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 03:21:46 +0000 2020","id":1234317952213803008,"id_str":"1234317952213803008","text":"Coronavirus - in NY? There''s only one person who can save us https:\/\/t.co\/mlh1UtwaVm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232473344026517504,"id_str":"1232473344026517504","name":"Boochi","screen_name":"MajinBoochi","location":"Clouds","description":"Haha - funny without the haha","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":15,"listed_count":0,"created_at":"Wed - Feb 26 01:12:07 +0000 2020","favourites_count":10,"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\/1232531852000452609\/yHmJCnSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232531852000452609\/yHmJCnSP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26767,"favorite_count":93824,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":26767,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560707354625,"id_str":"1234518560707354625","text":"RT - @PatriziaRametta: Il colpo al cuore della globalizzazione fa scoprire una - Cina debole nonostante il progresso. Tutto in discussione ora\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PatriziaRametta","name":"Patrizia - Rametta","id":479810905,"id_str":"479810905","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":391536392,"id_str":"391536392","name":"gretadivona - \ud83c\uddee\ud83c\uddf9","screen_name":"gretadivona","location":"Frosinone, - Lazio","description":"Si vive una volta sola.Ma se lo fai bene,una volta \u00e8 - abbastanza.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":868,"friends_count":860,"listed_count":1,"created_at":"Sat - Oct 15 18:18:35 +0000 2011","favourites_count":1800,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1083,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233442536452128768\/sb22yJT6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233442536452128768\/sb22yJT6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/391536392\/1447508815","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:00:46 +0000 2020","id":1234508957307297805,"id_str":"1234508957307297805","text":"Il - colpo al cuore della globalizzazione fa scoprire una Cina debole nonostante - il progresso. Tutto in discussione\u2026 https:\/\/t.co\/DfrrY7GJN0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DfrrY7GJN0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234508957307297805","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":479810905,"id_str":"479810905","name":"Patrizia - Rametta","screen_name":"PatriziaRametta","location":"https:\/\/telegram.me\/menoeuropa","description":"visceralmente - siciliana, Ortigia me genuit, #noeuro #minibot @LegaSalviniPremier @LegaSovranita - #NoUE\ud83c\uddee\ud83c\uddf9","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35155,"friends_count":2124,"listed_count":445,"created_at":"Tue - Jan 31 20:00:42 +0000 2012","favourites_count":401073,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":451520,"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\/1227663862595493888\/ECCWL75n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227663862595493888\/ECCWL75n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/479810905\/1580333287","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":61,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":30,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560656936963,"id_str":"1234518560656936963","text":"Tips - on preparing for the potential arrival of SARS-Cov 2 in our area. https:\/\/t.co\/h012e8ZmsQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/h012e8ZmsQ","expanded_url":"https:\/\/www.nytimes.com\/article\/prepare-for-coronavirus.html?action=click&module=RelatedLinks&pgtype=Article","display_url":"nytimes.com\/article\/prepar\u2026","indices":[71,94]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1111789832,"id_str":"1111789832","name":"Dr. - Knox","screen_name":"DrKnoxMPMS","location":"Mills Park Middle, Cary, NC","description":"Middle - School science teacher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":202,"friends_count":115,"listed_count":4,"created_at":"Tue - Jan 22 15:09:37 +0000 2013","favourites_count":789,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1708,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/523552270026158080\/QifGZF_S_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/523552270026158080\/QifGZF_S_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1111789832\/1422319140","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560619335681,"id_str":"1234518560619335681","text":"RT - @WHO: @DrTedros @MohamedBinZayed \"If this [#COVID19] was an influenza epidemic, - we would have expected to see widespread community trans\u2026","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[46,54]}],"symbols":[],"user_mentions":[{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[3,7]},{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[9,18]},{"screen_name":"MohamedBinZayed","name":"\u0645\u062d\u0645\u062f - \u0628\u0646 \u0632\u0627\u064a\u062f","id":471010707,"id_str":"471010707","indices":[19,35]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for - Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":285655284,"id_str":"285655284","name":"Gus","screen_name":"ajusttinna","location":"yogyakarta","description":"hanya - mbak2 biasaaa.. mari berteman \ud83d\ude04","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":286,"friends_count":245,"listed_count":2,"created_at":"Thu - Apr 21 15:05:41 +0000 2011","favourites_count":90,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11262,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213450125760069632\/YkVA_HQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213450125760069632\/YkVA_HQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285655284\/1575993779","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:39:46 +0000 2020","id":1234503672727506944,"id_str":"1234503672727506944","text":"@DrTedros - @MohamedBinZayed \"If this [#COVID19] was an influenza epidemic, we would - have expected to see widespread\u2026 https:\/\/t.co\/HZYegcsCK7","truncated":true,"entities":{"hashtags":[{"text":"COVID19","indices":[37,45]}],"symbols":[],"user_mentions":[{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[0,9]},{"screen_name":"MohamedBinZayed","name":"\u0645\u062d\u0645\u062f - \u0628\u0646 \u0632\u0627\u064a\u062f","id":471010707,"id_str":"471010707","indices":[10,26]}],"urls":[{"url":"https:\/\/t.co\/HZYegcsCK7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503672727506944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234503609917857794,"in_reply_to_status_id_str":"1234503609917857794","in_reply_to_user_id":14499829,"in_reply_to_user_id_str":"14499829","in_reply_to_screen_name":"WHO","user":{"id":14499829,"id_str":"14499829","name":"World - Health Organization (WHO)","screen_name":"WHO","location":"Geneva, Switzerland","description":"We - are the #UnitedNations\u2019 health agency. We are committed to achieving - better health for everyone, everywhere - #HealthForAll","url":"https:\/\/t.co\/wVulKuROWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wVulKuROWG","expanded_url":"http:\/\/www.who.int","display_url":"who.int","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5601267,"friends_count":1716,"listed_count":27213,"created_at":"Wed - Apr 23 19:56:27 +0000 2008","favourites_count":10494,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":48212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D0ECF8","profile_background_image_url":"http:\/\/abs.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\/875476478988886016\/_l61qZdR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875476478988886016\/_l61qZdR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14499829\/1582794472","profile_link_color":"0396DB","profile_sidebar_border_color":"8C8C8C","profile_sidebar_fill_color":"D9D9D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116,"favorite_count":164,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":116,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560489250816,"id_str":"1234518560489250816","text":"RT - @SpeakerPelosi: The ACA is a pillar of health & economic security for - American families \u2014 and even more critical during an epidemic. But\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2746386413,"id_str":"2746386413","name":"Nancy - guilfoyle","screen_name":"Nguilfoy48Nancy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":311,"friends_count":1641,"listed_count":0,"created_at":"Mon - Aug 18 14:26:41 +0000 2014","favourites_count":116389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64649,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:33:02 +0000 2020","id":1234517079757332483,"id_str":"1234517079757332483","text":"The - ACA is a pillar of health & economic security for American families \u2014 - and even more critical during an epidemic\u2026 https:\/\/t.co\/r0aAfDQBSu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r0aAfDQBSu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517079757332483","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15764644,"id_str":"15764644","name":"Nancy - Pelosi","screen_name":"SpeakerPelosi","location":"San Francisco","description":"Speaker - of the House, focused on strengthening America''s middle class and creating - jobs; mother, grandmother, dark chocolate connoisseur.","url":"https:\/\/t.co\/jztVqrP3x5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jztVqrP3x5","expanded_url":"https:\/\/www.speaker.gov\/","display_url":"speaker.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4016036,"friends_count":362,"listed_count":18419,"created_at":"Thu - Aug 07 15:35:02 +0000 2008","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10087,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"385BA3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15764644\/1572273026","profile_link_color":"4B12E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3236,"favorite_count":8130,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3236,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560443002880,"id_str":"1234518560443002880","text":"https:\/\/t.co\/vcsj8kaLSe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vcsj8kaLSe","expanded_url":"https:\/\/www.forbes.com\/sites\/tarahaelle\/2020\/02\/29\/no-you-do-not-need-face-masks-for-coronavirus-they-might-increase-your-infection-risk\/amp\/?__twitter_impression=true","display_url":"forbes.com\/sites\/tarahael\u2026","indices":[0,23]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80020232,"id_str":"80020232","name":"HANIF","screen_name":"hanifhaidar31","location":"Padang","description":"\ud83d\udc27 - | Jus''t a guy who''s hard to talk to and has a hard time at talking | Random - opinions from random point of views | INTP","url":"https:\/\/t.co\/KWHNRFqLpE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KWHNRFqLpE","expanded_url":"http:\/\/www.instagram.com\/crime_suspect","display_url":"instagram.com\/crime_suspect","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":342,"friends_count":302,"listed_count":0,"created_at":"Mon - Oct 05 13:19:58 +0000 2009","favourites_count":158,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/abs.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\/1221794185218379776\/D5ZIjd9M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221794185218379776\/D5ZIjd9M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80020232\/1581513013","profile_link_color":"696969","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":"regular"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560375857152,"id_str":"1234518560375857152","text":"RT - @Amy_Siskind: This is the reason reporting of coronavirus cases in the US - is so low: tests are not available to identify positives. \n\n\u201c\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":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406054373,"id_str":"406054373","name":"Paging_DrYardsale","screen_name":"DrYardSale","location":"California","description":"Saving - lives . . . . from overpricing.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1243,"friends_count":1905,"listed_count":27,"created_at":"Sun - Nov 06 05:37:10 +0000 2011","favourites_count":236857,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":183885,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1713130524\/8P67H905_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1713130524\/8P67H905_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/406054373\/1493445225","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:03:45 +0000 2020","id":1234479512135618562,"id_str":"1234479512135618562","text":"This - is the reason reporting of coronavirus cases in the US is so low: tests are - not available to identify positiv\u2026 https:\/\/t.co\/a14qWObazI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a14qWObazI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234479512135618562","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15976705,"id_str":"15976705","name":"Amy - Siskind \ud83c\udff3\ufe0f\u200d\ud83c\udf08","screen_name":"Amy_Siskind","location":"New - York","description":"Activist, feminist, author. The Weekly List website, - podcast https:\/\/t.co\/tsD5bH0kXa & book. POLITICO 50. Pres @TheNewAgenda. - Former Wall St exec. CAA repped.","url":"https:\/\/t.co\/rSgrr8d7ky","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rSgrr8d7ky","expanded_url":"https:\/\/AmySiskind.com","display_url":"AmySiskind.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/tsD5bH0kXa","expanded_url":"http:\/\/theweeklylist.org","display_url":"theweeklylist.org","indices":[61,84]}]}},"protected":false,"followers_count":407157,"friends_count":294,"listed_count":4023,"created_at":"Mon - Aug 25 02:52:25 +0000 2008","favourites_count":58305,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":67232,"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\/1184904368107245569\/xd4-jgzB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184904368107245569\/xd4-jgzB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15976705\/1583191468","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3084,"favorite_count":5014,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3084,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560283807745,"id_str":"1234518560283807745","text":"RT - @JaiPasLinspiLa: Le coronavirus apparait\n\nPersonne:\n\nVraiment personne:\n\nL\u2019huile - de Nigelle:","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JaiPasLinspiLa","name":"\ud83c\udf49Tata - Nesma \ud83c\udf49","id":1062772554241323008,"id_str":"1062772554241323008","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":853647247329943552,"id_str":"853647247329943552","name":"\u30eb\u30d5\u30a3","screen_name":"flm2tt","location":"","description":"\ud83c\udde9\ud83c\uddff - \u00ab et qu\u2019en v\u00e9rit\u00e9 l\u2019Homme n\u2019obtient que le fruit - de ses efforts \u00bb S53V39","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2332,"friends_count":1667,"listed_count":1,"created_at":"Sun - Apr 16 16:32:18 +0000 2017","favourites_count":14768,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4687,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233763793290899456\/MHJnMKl__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233763793290899456\/MHJnMKl__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853647247329943552\/1582986758","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:15:37 +0000 2020","id":1234467397962280965,"id_str":"1234467397962280965","text":"Le - coronavirus apparait\n\nPersonne:\n\nVraiment personne:\n\nL\u2019huile de - Nigelle: https:\/\/t.co\/LBxaM8T1XK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LBxaM8T1XK","expanded_url":"https:\/\/twitter.com\/keyanchrist\/status\/1229197453435572226","display_url":"twitter.com\/keyanchrist\/st\u2026","indices":[76,99]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1062772554241323008,"id_str":"1062772554241323008","name":"\ud83c\udf49Tata - Nesma \ud83c\udf49","screen_name":"JaiPasLinspiLa","location":"","description":"Akhi, - d\u00e9laisse instahram et fait ton devoir de mahram | Mon compte @nesmamakeup - \ud83d\udc49\ud83c\udffc\ud83d\udc48\ud83c\udffc","url":"https:\/\/t.co\/pJ6JcyPWm8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pJ6JcyPWm8","expanded_url":"https:\/\/curiouscat.me\/JaiPasLinspiLa","display_url":"curiouscat.me\/JaiPasLinspiLa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3105,"friends_count":842,"listed_count":6,"created_at":"Wed - Nov 14 18:21:37 +0000 2018","favourites_count":30421,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7915,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232440729336778756\/lgTtxm_x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232440729336778756\/lgTtxm_x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1062772554241323008\/1583174613","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1229197453435572226,"quoted_status_id_str":"1229197453435572226","quoted_status":{"created_at":"Mon - Feb 17 00:14:44 +0000 2020","id":1229197453435572226,"id_str":"1229197453435572226","text":"Bomboclaat - https:\/\/t.co\/vQkBFXgPt0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1229197340076118016,"id_str":"1229197340076118016","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1229197340076118016\/pu\/img\/PGQWRnfvxAdG8BZE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1229197340076118016\/pu\/img\/PGQWRnfvxAdG8BZE.jpg","url":"https:\/\/t.co\/vQkBFXgPt0","display_url":"pic.twitter.com\/vQkBFXgPt0","expanded_url":"https:\/\/twitter.com\/KeyanChrist\/status\/1229197453435572226\/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":1229197340076118016,"id_str":"1229197340076118016","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1229197340076118016\/pu\/img\/PGQWRnfvxAdG8BZE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1229197340076118016\/pu\/img\/PGQWRnfvxAdG8BZE.jpg","url":"https:\/\/t.co\/vQkBFXgPt0","display_url":"pic.twitter.com\/vQkBFXgPt0","expanded_url":"https:\/\/twitter.com\/KeyanChrist\/status\/1229197453435572226\/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":2068,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1229197340076118016\/pu\/vid\/360x640\/Mzq-JqRowUH4tvDh.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1229197340076118016\/pu\/vid\/320x568\/n_j-33p0ysidZYo1.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1229197340076118016\/pu\/pl\/b6eYRWHSuH0pDauK.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1229197340076118016\/pu\/vid\/720x1280\/3ybkKhlo1QBoEJz6.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237082947,"id_str":"237082947","name":"KEY\ud83e\ude90","screen_name":"KeyanChrist","location":"Nawf - ATL - HTX","description":"1 of 1 \ud83d\udd11 Green Hearted \ud83d\udc9a\ud83e\udd32\ud83c\udffe\ud83d\udcb0 - New $ingle CASH Official Video out now \ud83d\udc47\ud83c\udffe","url":"https:\/\/t.co\/GycKGBWV3a","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GycKGBWV3a","expanded_url":"https:\/\/youtu.be\/ft4_VSY1n0A","display_url":"youtu.be\/ft4_VSY1n0A","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12191,"friends_count":791,"listed_count":78,"created_at":"Wed - Jan 12 01:40:17 +0000 2011","favourites_count":25476,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":56397,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232184838662348800\/s8OjQL5x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232184838662348800\/s8OjQL5x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237082947\/1575095727","profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13792,"favorite_count":80563,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"retweet_count":3408,"favorite_count":9159,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1229197453435572226,"quoted_status_id_str":"1229197453435572226","retweet_count":3408,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560225079297,"id_str":"1234518560225079297","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":930184726400212994,"id_str":"930184726400212994","name":"mommyanna","screen_name":"eunoic_metanoia","location":"","description":"We - are all infinite spiritual beings living a temporary human experience \u270c\ud83c\udffc - Proud mommy to Nova Grace \ud83c\udf31","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":62,"listed_count":0,"created_at":"Mon - Nov 13 21:24:55 +0000 2017","favourites_count":6840,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8518,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227736754184245250\/WONilg6__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227736754184245250\/WONilg6__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930184726400212994\/1510787003","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153505,"favorite_count":478705,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560183128065,"id_str":"1234518560183128065","text":"RT - @infobae: Seg\u00fan la OCDE el coronavirus har\u00e1 m\u00e1s profunda a - la recesi\u00f3n de la Argentina https:\/\/t.co\/nsT05SJdNt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"infobae","name":"infobae","id":69416519,"id_str":"69416519","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/nsT05SJdNt","expanded_url":"http:\/\/bit.ly\/2vnbMhS","display_url":"bit.ly\/2vnbMhS","indices":[90,113]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146519689,"id_str":"146519689","name":"MENCIA","screen_name":"REINA_MENCIA","location":"","description":"VOY - LIBRE EN MI PENSAMIENTO Y VOY A MI AIRE,LA LIBERTAD MI META EN EL PAIS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2268,"friends_count":868,"listed_count":45,"created_at":"Fri - May 21 16:52:09 +0000 2010","favourites_count":292340,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":342765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/761973895960363008\/quERGAZK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/761973895960363008\/quERGAZK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146519689\/1398540351","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:28:38 +0000 2020","id":1234515972607954946,"id_str":"1234515972607954946","text":"Seg\u00fan - la OCDE el coronavirus har\u00e1 m\u00e1s profunda a la recesi\u00f3n de la - Argentina https:\/\/t.co\/nsT05SJdNt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nsT05SJdNt","expanded_url":"http:\/\/bit.ly\/2vnbMhS","display_url":"bit.ly\/2vnbMhS","indices":[77,100]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":69416519,"id_str":"69416519","name":"infobae","screen_name":"infobae","location":"","description":"Hacemos - periodismo, lo hacemos con pasi\u00f3n. @infobaeamerica \ud83c\udf0e @infobaedeportes - \u26bd @teleshowcom \ud83c\udfa5 @infobaeeconomia \ud83c\udfe6 @infobaetrends - \ud83d\udcf8 @infobaemexico \ud83c\uddf2\ud83c\uddfd","url":"https:\/\/t.co\/uuwuylYR2x","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uuwuylYR2x","expanded_url":"http:\/\/infobae.com","display_url":"infobae.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2678059,"friends_count":12923,"listed_count":8922,"created_at":"Thu - Aug 27 21:57:01 +0000 2009","favourites_count":919,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":595136,"lang":null,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144805808963805184\/eIA3EGA__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144805808963805184\/eIA3EGA__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69416519\/1571754344","profile_link_color":"F28209","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518560099180544,"id_str":"1234518560099180544","text":"RT - @TrumpWarRoom: \u201cThe coronavirus has yet again exposed the strong contrast - between President Trump \u2013 who is working ardently for the Amer\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TrumpWarRoom","name":"Trump - War Room - Text WOKE to 88022","id":1108472017144201216,"id_str":"1108472017144201216","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":980161575305785346,"id_str":"980161575305785346","name":"Mncpo(ret)","screen_name":"care_myers","location":"South - Carolina, USA","description":"MAGA and KAG!! Retired Navy Chief, Paralegal, - Member of the Truth & Justice Research Team, (LtGen Flynn) Wheelchair warrior - for our President!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3790,"friends_count":2307,"listed_count":2,"created_at":"Sat - Mar 31 19:15:04 +0000 2018","favourites_count":289837,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":139397,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185697873926721541\/_F3gOzeR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185697873926721541\/_F3gOzeR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 13:32:33 +0000 2020","id":1234109271257821185,"id_str":"1234109271257821185","text":"\u201cThe - coronavirus has yet again exposed the strong contrast between President Trump - \u2013 who is working ardently for th\u2026 https:\/\/t.co\/C5ESHKq9SY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C5ESHKq9SY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234109271257821185","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1108472017144201216,"id_str":"1108472017144201216","name":"Trump - War Room - Text WOKE to 88022","screen_name":"TrumpWarRoom","location":"MAGA - Country","description":"Highlighting @realDonaldTrump''s #PromisesKept, fighting - #FakeNews. This account punches back 10x harder. Managed by the #TeamTrump - 2020 campaign. #MAGA","url":"https:\/\/t.co\/mVHOxzYUNT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mVHOxzYUNT","expanded_url":"https:\/\/www.donaldjtrump.com\/","display_url":"donaldjtrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":512411,"friends_count":194,"listed_count":1767,"created_at":"Wed - Mar 20 20:54:58 +0000 2019","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7824,"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\/1109170568950095879\/Q5nCWHLB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1109170568950095879\/Q5nCWHLB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1108472017144201216\/1565806661","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1902,"favorite_count":5524,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1902,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559994392581,"id_str":"1234518559994392581","text":"RT - @Education4Libs: Dear libs,\n\nI\u2019ve found a simple & effective way - to stay safe from the Coronavirus....\n\nIt\u2019s called turning off the - Fake\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Education4Libs","name":"Educating - Liberals","id":817661098988019712,"id_str":"817661098988019712","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1162890985111719942,"id_str":"1162890985111719942","name":"Steven - A Nihipali","screen_name":"a_nihipali","location":"","description":"like to - piss off liberals, democrats and flat out idiots","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":134,"listed_count":0,"created_at":"Sun - Aug 18 00:56:39 +0000 2019","favourites_count":4005,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2848,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1162891102791393280\/Xu9sA-EO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162891102791393280\/Xu9sA-EO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:54 +0000 2020","id":1234518050017349633,"id_str":"1234518050017349633","text":"Dear - libs,\n\nI\u2019ve found a simple & effective way to stay safe from the - Coronavirus....\n\nIt\u2019s called turning off the\u2026 https:\/\/t.co\/VT6kEravcu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VT6kEravcu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518050017349633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":817661098988019712,"id_str":"817661098988019712","name":"Educating - Liberals","screen_name":"Education4Libs","location":"Minnesota, USA","description":"Digital - soldier. Followed by @GenFlynn. Mentioned by Q. Retweeted by Trump. Shadowbanned - by Twitter. #WWG1WGA \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/rW7JqtLh0G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rW7JqtLh0G","expanded_url":"http:\/\/Patreon.com\/E4L","display_url":"Patreon.com\/E4L","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":477784,"friends_count":280124,"listed_count":2129,"created_at":"Sat - Jan 07 09:16:12 +0000 2017","favourites_count":130074,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9378,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127981592696115202\/WBcMbFd-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127981592696115202\/WBcMbFd-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/817661098988019712\/1563879746","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1636,"favorite_count":5215,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1636,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559885340674,"id_str":"1234518559885340674","text":"RT - @zacjanderson: Explosive moment in media conference when surgeon general says - the Florida Department of Health waited 24 hours after fin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zacjanderson","name":"Zac - Anderson","id":472938331,"id_str":"472938331","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":56050211,"id_str":"56050211","name":"Wicked - Big RU Mob Thug In The WH Blues \ud83d\udc4e\u2696\ufe0f\u2728\ud83c\uddfa\ud83c\uddf8","screen_name":"RhapsodysBIues","location":"","description":"Photography, - Human Rights, Animal Rights, Special Education. Likes are markers, not always - affirmation. Patriot. Allergic to drama.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4266,"friends_count":4999,"listed_count":65,"created_at":"Sun - Jul 12 08:26:08 +0000 2009","favourites_count":488024,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186246,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116518218963746816\/5o75Ag8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116518218963746816\/5o75Ag8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/56050211\/1494807676","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:06:39 +0000 2020","id":1234510438865522689,"id_str":"1234510438865522689","text":"Explosive - moment in media conference when surgeon general says the Florida Department - of Health waited 24 hours aft\u2026 https:\/\/t.co\/j2SJBIBgHn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j2SJBIBgHn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510438865522689","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":472938331,"id_str":"472938331","name":"Zac - Anderson","screen_name":"zacjanderson","location":"Sarasota","description":"@heraldtribune - political editor. Illinois native raising 2 native Floridians. Chicago\/Tampa - sports fan. Proud Illini.","url":"https:\/\/t.co\/fChND1Dxom","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fChND1Dxom","expanded_url":"http:\/\/www.heraldtribune.com","display_url":"heraldtribune.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3403,"friends_count":1061,"listed_count":138,"created_at":"Tue - Jan 24 13:25:44 +0000 2012","favourites_count":1410,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8671,"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\/1045469677265326080\/jO0gYh68_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1045469677265326080\/jO0gYh68_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/472938331\/1498844247","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1580,"favorite_count":2134,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1580,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559839195136,"id_str":"1234518559839195136","text":"RT - @CoronaTurkey: \u2623\ufe0f @WHO Tedros, son 24 saat i\u00e7inde \u00c7in - d\u0131\u015f\u0131nda bildirilen neredeyse dokuz kat daha fazla #coronavirus - vakas\u0131 oldu\u011funu s\u00f6y\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[107,119]}],"symbols":[],"user_mentions":[{"screen_name":"CoronaTurkey","name":"Coronavirus - \u2623\ufe0f Turkish Agency","id":2753159139,"id_str":"2753159139","indices":[3,16]},{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[21,25]}],"urls":[]},"metadata":{"result_type":"recent","iso_language_code":"tr"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":829738706974212097,"id_str":"829738706974212097","name":"Osman - Karakaya","screen_name":"OsmanKa222","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":547,"friends_count":1012,"listed_count":0,"created_at":"Thu - Feb 09 17:08:18 +0000 2017","favourites_count":13073,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15658,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/829744038379134976\/Kf1lZZGd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/829744038379134976\/Kf1lZZGd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/829738706974212097\/1486661598","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:54:58 +0000 2020","id":1234507499744759823,"id_str":"1234507499744759823","text":"\u2623\ufe0f - @WHO Tedros, son 24 saat i\u00e7inde \u00c7in d\u0131\u015f\u0131nda bildirilen - neredeyse dokuz kat daha fazla #coronavirus vakas\u0131 oldu\u011fu\u2026 - https:\/\/t.co\/ATWd3sPgN7","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[89,101]}],"symbols":[],"user_mentions":[{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[3,7]}],"urls":[{"url":"https:\/\/t.co\/ATWd3sPgN7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234507499744759823","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"result_type":"recent","iso_language_code":"tr"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2753159139,"id_str":"2753159139","name":"Coronavirus - \u2623\ufe0f Turkish Agency","screen_name":"CoronaTurkey","location":"T\u00fcrkiye","description":"\u25ab\ufe0f - https:\/\/t.co\/dpxvsipqej - \u25ab\ufe0fcoronaturkey@consultant.com |#coronavirus - \u25ab\ufe0fhttps:\/\/t.co\/DBSCpaGLCA | #COVID19 |\ud83c\uddfa\ud83c\uddf8: - @CoronaTurkeyEN","url":"https:\/\/t.co\/CTSWsiZbqa","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CTSWsiZbqa","expanded_url":"http:\/\/instagram.com\/CoronaTurkeyAgency","display_url":"instagram.com\/CoronaTurkeyAg\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/dpxvsipqej","expanded_url":"http:\/\/t.me\/TurkishAgency","display_url":"t.me\/TurkishAgency","indices":[3,26]},{"url":"https:\/\/t.co\/DBSCpaGLCA","expanded_url":"http:\/\/Change.org\/CoronaTurkey","display_url":"Change.org\/CoronaTurkey","indices":[75,98]}]}},"protected":false,"followers_count":22988,"friends_count":17,"listed_count":56,"created_at":"Thu - Aug 28 09:26:43 +0000 2014","favourites_count":1800,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4134,"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\/1232408144678195200\/4EWwDhz7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232408144678195200\/4EWwDhz7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2753159139\/1582824201","profile_link_color":"0C167D","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":44,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559839137792,"id_str":"1234518559839137792","text":"RT - @SpeakerPelosi: The ACA is a pillar of health & economic security for - American families \u2014 and even more critical during an epidemic. But\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":17653405,"id_str":"17653405","name":"M. - Defarge","screen_name":"csiswim","location":"USA","description":"270 to WIN - THE ELECTORAL COLLEGE 2020...the only rule for Blue. Vote out the GOP and - the IMPOTUS. Go Red Sox!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":641,"friends_count":679,"listed_count":62,"created_at":"Wed - Nov 26 16:41:11 +0000 2008","favourites_count":92495,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":166032,"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\/1229181677869682690\/C8aMoAqg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229181677869682690\/C8aMoAqg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17653405\/1581894557","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:33:02 +0000 2020","id":1234517079757332483,"id_str":"1234517079757332483","text":"The - ACA is a pillar of health & economic security for American families \u2014 - and even more critical during an epidemic\u2026 https:\/\/t.co\/r0aAfDQBSu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r0aAfDQBSu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517079757332483","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15764644,"id_str":"15764644","name":"Nancy - Pelosi","screen_name":"SpeakerPelosi","location":"San Francisco","description":"Speaker - of the House, focused on strengthening America''s middle class and creating - jobs; mother, grandmother, dark chocolate connoisseur.","url":"https:\/\/t.co\/jztVqrP3x5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jztVqrP3x5","expanded_url":"https:\/\/www.speaker.gov\/","display_url":"speaker.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4016036,"friends_count":362,"listed_count":18419,"created_at":"Thu - Aug 07 15:35:02 +0000 2008","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10087,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"385BA3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15764644\/1572273026","profile_link_color":"4B12E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3236,"favorite_count":8130,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3236,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559746875392,"id_str":"1234518559746875392","text":"RT - @SUTERM_NACIONAL: Coronavirus Covid-2019 https:\/\/t.co\/Lc1orXtxDU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SUTERM_NACIONAL","name":"SUTERM - NACIONAL","id":2167553197,"id_str":"2167553197","indices":[3,19]}],"urls":[],"media":[{"id":1233545049780244481,"id_str":"1233545049780244481","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/ER5ur-qX0AEGdPW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER5ur-qX0AEGdPW.jpg","url":"https:\/\/t.co\/Lc1orXtxDU","display_url":"pic.twitter.com\/Lc1orXtxDU","expanded_url":"https:\/\/twitter.com\/SUTERM_NACIONAL\/status\/1233545055656390657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":484,"h":680,"resize":"fit"},"large":{"w":750,"h":1054,"resize":"fit"},"medium":{"w":750,"h":1054,"resize":"fit"}},"source_status_id":1233545055656390657,"source_status_id_str":"1233545055656390657","source_user_id":2167553197,"source_user_id_str":"2167553197"}]},"extended_entities":{"media":[{"id":1233545049780244481,"id_str":"1233545049780244481","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/ER5ur-qX0AEGdPW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER5ur-qX0AEGdPW.jpg","url":"https:\/\/t.co\/Lc1orXtxDU","display_url":"pic.twitter.com\/Lc1orXtxDU","expanded_url":"https:\/\/twitter.com\/SUTERM_NACIONAL\/status\/1233545055656390657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":484,"h":680,"resize":"fit"},"large":{"w":750,"h":1054,"resize":"fit"},"medium":{"w":750,"h":1054,"resize":"fit"}},"source_status_id":1233545055656390657,"source_status_id_str":"1233545055656390657","source_user_id":2167553197,"source_user_id_str":"2167553197"}]},"metadata":{"result_type":"recent","iso_language_code":"ca"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1184105800853098500,"id_str":"1184105800853098500","name":"Corbel","screen_name":"Corbel39441861","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":20,"listed_count":0,"created_at":"Tue - Oct 15 13:56:46 +0000 2019","favourites_count":5,"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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 00:10:34 +0000 2020","id":1233545055656390657,"id_str":"1233545055656390657","text":"Coronavirus - Covid-2019 https:\/\/t.co\/Lc1orXtxDU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233545049780244481,"id_str":"1233545049780244481","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/ER5ur-qX0AEGdPW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER5ur-qX0AEGdPW.jpg","url":"https:\/\/t.co\/Lc1orXtxDU","display_url":"pic.twitter.com\/Lc1orXtxDU","expanded_url":"https:\/\/twitter.com\/SUTERM_NACIONAL\/status\/1233545055656390657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":484,"h":680,"resize":"fit"},"large":{"w":750,"h":1054,"resize":"fit"},"medium":{"w":750,"h":1054,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233545049780244481,"id_str":"1233545049780244481","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/ER5ur-qX0AEGdPW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER5ur-qX0AEGdPW.jpg","url":"https:\/\/t.co\/Lc1orXtxDU","display_url":"pic.twitter.com\/Lc1orXtxDU","expanded_url":"https:\/\/twitter.com\/SUTERM_NACIONAL\/status\/1233545055656390657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":484,"h":680,"resize":"fit"},"large":{"w":750,"h":1054,"resize":"fit"},"medium":{"w":750,"h":1054,"resize":"fit"}}}]},"metadata":{"result_type":"recent","iso_language_code":"ca"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2167553197,"id_str":"2167553197","name":"SUTERM - NACIONAL","screen_name":"SUTERM_NACIONAL","location":"M\u00e9xico","description":"Sindicato - \u00danico de Trabajadores Electricistas de la Rep\u00fablica Mexicana","url":"http:\/\/t.co\/yF4M5X8Q0l","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/yF4M5X8Q0l","expanded_url":"http:\/\/www.suterm.org.mx\/","display_url":"suterm.org.mx","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7941,"friends_count":45,"listed_count":22,"created_at":"Fri - Nov 01 01:34:22 +0000 2013","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BA191E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/696797822545301505\/Iui48Ii3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/696797822545301505\/Iui48Ii3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2167553197\/1454965017","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":66,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ca"},"is_quote_status":false,"retweet_count":72,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ca"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559520415745,"id_str":"1234518559520415745","text":"RT - @DeAnna4Congress: What was @SpeakerPelosi busy with last week that she didn\u2019t - schedule a vote on coronavirus funding?\n\nShe said they\u2019ll\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeAnna4Congress","name":"DeAnna - for Congress\ud83c\uddfa\ud83c\uddf8vs Nancy","id":16740433,"id_str":"16740433","indices":[3,19]},{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[30,44]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1079778406684901376,"id_str":"1079778406684901376","name":"Mtrike","screen_name":"ManuelM21736554","location":"Houston, - TX","description":"I am proudly Cuban American, Texan of heart and republican - of conviction, against socialism. my support for TRUMP 2020 \ud83c\uddfa\ud83c\uddf8 - POTUS \ud83c\uddfa\ud83c\uddf8\u2764\u2764Build the wall.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2647,"friends_count":3271,"listed_count":1,"created_at":"Mon - Dec 31 16:36:48 +0000 2018","favourites_count":31231,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32210,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1150799856262438912\/VDS8CN9w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1150799856262438912\/VDS8CN9w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1079778406684901376\/1549424364","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:18:45 +0000 2020","id":1234498385257721861,"id_str":"1234498385257721861","text":"What - was @SpeakerPelosi busy with last week that she didn\u2019t schedule a vote - on coronavirus funding?\n\nShe said they\u2019\u2026 https:\/\/t.co\/OZNoEtCLnN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[9,23]}],"urls":[{"url":"https:\/\/t.co\/OZNoEtCLnN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234498385257721861","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16740433,"id_str":"16740433","name":"DeAnna - for Congress\ud83c\uddfa\ud83c\uddf8vs Nancy","screen_name":"DeAnna4Congress","location":"San - Francisco, CA","description":"\ud83c\udf1fCongressional Candidate vs Nancy - Pelosi (CA-12)\ud83c\uddfa\ud83c\uddf8Republican\/Christian #MAGA \u27a1\ufe0f - See my PLATFORM, Donate. Join me in the fight of our lives!\ud83d\udc47\ud83c\udffd - I check DMs","url":"https:\/\/t.co\/sY6W5RWYWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sY6W5RWYWZ","expanded_url":"https:\/\/www.deannaforcongress.com","display_url":"deannaforcongress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":138995,"friends_count":63334,"listed_count":424,"created_at":"Tue - Oct 14 16:08:50 +0000 2008","favourites_count":26438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12534,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D11A29","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\/1225268456162902016\/uow_e0Da_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225268456162902016\/uow_e0Da_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16740433\/1577728148","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5FAC2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3470,"favorite_count":6694,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3470,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559507832833,"id_str":"1234518559507832833","text":"@FrescoMalibu - @Josefin30503998 Gilipollas, su abuela est\u00e1 en la zona restringida por - el coronavirus.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FrescoMalibu","name":"malibu_fresco - \ud83c\udf31\ud83e\udd89","id":1206647129860648966,"id_str":"1206647129860648966","indices":[0,13]},{"screen_name":"Josefin30503998","name":"finashaki","id":1212562198142177281,"id_str":"1212562198142177281","indices":[14,30]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1233908457679544322,"in_reply_to_status_id_str":"1233908457679544322","in_reply_to_user_id":1206647129860648966,"in_reply_to_user_id_str":"1206647129860648966","in_reply_to_screen_name":"FrescoMalibu","user":{"id":971519684158910465,"id_str":"971519684158910465","name":"aniti42 - 79%\ud83c\uddee\ud83c\uddf9\u2708\ufe0f\ud83d\udc9c\ud83d\udc3b\ud83d\udc99","screen_name":"aniti42","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":108,"listed_count":0,"created_at":"Wed - Mar 07 22:55:17 +0000 2018","favourites_count":8110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224425172725309440\/NBVYYn3R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224425172725309440\/NBVYYn3R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/971519684158910465\/1582744509","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559402840066,"id_str":"1234518559402840066","text":"RT - @RepSpeier: We are the richest country in the world. We know now that the - Coronavirus has been in Washington state for 6 weeks. Where ar\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepSpeier","name":"Jackie - Speier","id":24913074,"id_str":"24913074","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785151535755821056,"id_str":"785151535755821056","name":"doreen - anderson","screen_name":"batlaw55","location":"","description":"tweet snark - mostly RT good news but more often WTF & political cartoons when words fail. - cannot believe trump is prez & remain outraged #votebluenomatterwho","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1467,"friends_count":39,"listed_count":5,"created_at":"Sun - Oct 09 16:14:48 +0000 2016","favourites_count":8954,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22526,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/788037219449614337\/zkOQzbWX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/788037219449614337\/zkOQzbWX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785151535755821056\/1534031036","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 20:30:31 +0000 2020","id":1234214457351516161,"id_str":"1234214457351516161","text":"We - are the richest country in the world. We know now that the Coronavirus has - been in Washington state for 6 weeks.\u2026 https:\/\/t.co\/A5cSg58CIb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A5cSg58CIb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234214457351516161","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24913074,"id_str":"24913074","name":"Jackie - Speier","screen_name":"RepSpeier","location":"","description":"Fearless fighter - for women\u2019s equality, LGBTQ rights & the disenfranchised. Proud mom of - 2 kids & puppy Emma, wife & Rep for CA14, America''s economic powerhouse!","url":"https:\/\/t.co\/kqVDVfirna","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kqVDVfirna","expanded_url":"http:\/\/speier.house.gov","display_url":"speier.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":168176,"friends_count":21740,"listed_count":2333,"created_at":"Tue - Mar 17 17:02:38 +0000 2009","favourites_count":496,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6369,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216755169163202560\/7Y1JaC3s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216755169163202560\/7Y1JaC3s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24913074\/1581636652","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11777,"favorite_count":34804,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11777,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559373643777,"id_str":"1234518559373643777","text":"RT - @maldita_ciencia: Ante la cercan\u00eda de la Semana Santa y el brote de coronavirus - est\u00e1n surgiendo dudas sobre el riesgo que suponen alguna\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maldita_ciencia","name":"MALDITA - CIENCIA","id":1011892809132015617,"id_str":"1011892809132015617","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":545385868,"id_str":"545385868","name":"Iv\u00e1n - Gnell.","screen_name":"Ivan_Tvt","location":"San Vicente del Raspeig","description":"Ex - estudiante de Geograf\u00eda en la @UA_Universidad Me gustan los fen\u00f3menos - naturales (con inter\u00e9s en los extremos), la fotograf\u00eda y comentar - sobre temas sociales.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":338,"friends_count":1095,"listed_count":2,"created_at":"Wed - Apr 04 19:36:33 +0000 2012","favourites_count":17383,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11353,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1062816310827065352\/vrQirppB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062816310827065352\/vrQirppB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/545385868\/1398823361","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:25:29 +0000 2020","id":1234409480479281153,"id_str":"1234409480479281153","text":"Ante - la cercan\u00eda de la Semana Santa y el brote de coronavirus est\u00e1n surgiendo - dudas sobre el riesgo que suponen alg\u2026 https:\/\/t.co\/gPCRZcSYpF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gPCRZcSYpF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234409480479281153","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1011892809132015617,"id_str":"1011892809132015617","name":"MALDITA - CIENCIA","screen_name":"maldita_ciencia","location":"","description":"Ciencia - para que no te la cuelen. De @maldita_es Puedes enviarnos todo lo que te suene - raro a nuestro WhatsApp: 655 19 85 38","url":"https:\/\/t.co\/cUENoJpOk2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cUENoJpOk2","expanded_url":"https:\/\/maldita.es\/malditaciencia","display_url":"maldita.es\/malditaciencia","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":97744,"friends_count":12,"listed_count":788,"created_at":"Wed - Jun 27 08:43:40 +0000 2018","favourites_count":2429,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5532,"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\/1011897531989680128\/04GDJzvt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1011897531989680128\/04GDJzvt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011892809132015617\/1569236325","profile_link_color":"4CAF50","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":103,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":88,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559344164866,"id_str":"1234518559344164866","text":"RT - @fiscalfreedomct: Calls Grow to Quarantine Senator Chris Murphy after Secret - Meeting with Coronavirus Carriers from Iranian Regime - #li\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fiscalfreedomct","name":"Fiscal - Freedom for CT","id":980993739069050880,"id_str":"980993739069050880","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1211754137995530240,"id_str":"1211754137995530240","name":"Dianne - Townsend","screen_name":"DianneT06564576","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":245,"friends_count":440,"listed_count":0,"created_at":"Mon - Dec 30 21:01:42 +0000 2019","favourites_count":19746,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8393,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211754423346700288\/Qmrwx_rA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211754423346700288\/Qmrwx_rA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:16:48 +0000 2020","id":1234497893907734529,"id_str":"1234497893907734529","text":"Calls - Grow to Quarantine Senator Chris Murphy after Secret Meeting with Coronavirus - Carriers from Iranian Regime -\u2026 https:\/\/t.co\/BZSkwww73X","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BZSkwww73X","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234497893907734529","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":980993739069050880,"id_str":"980993739069050880","name":"Fiscal - Freedom for CT","screen_name":"fiscalfreedomct","location":"Greenwich, CT","description":"If - you\u2019re tired of the tax and spend politics as usual then follow us and - subscribe to our website. Keep Connecticut Free!","url":"https:\/\/t.co\/okYg4KlPXb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/okYg4KlPXb","expanded_url":"http:\/\/www.fiscalfreedomct.com","display_url":"fiscalfreedomct.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":454,"friends_count":320,"listed_count":3,"created_at":"Tue - Apr 03 02:21:48 +0000 2018","favourites_count":8554,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4011,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981673116043808774\/jfV6t5Ew_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981673116043808774\/jfV6t5Ew_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/980993739069050880\/1527876441","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":10,"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"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559281287169,"id_str":"1234518559281287169","text":"RT - @politico: Elizabeth Warren is calling on Trump officials to explain its handling - of the evacuation of the Diamond Princess cruise ship,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"politico","name":"POLITICO","id":9300262,"id_str":"9300262","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":595301136,"id_str":"595301136","name":"Chris","screen_name":"RAV3RXTZ","location":"Fayetteville, - AR","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":347,"listed_count":2,"created_at":"Thu - May 31 06:04:52 +0000 2012","favourites_count":10308,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5150,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986790975719829504\/q2wO795v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986790975719829504\/q2wO795v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/595301136\/1522169190","profile_link_color":"DD2E44","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 27 00:30:04 +0000 2020","id":1232825189936910341,"id_str":"1232825189936910341","text":"Elizabeth - Warren is calling on Trump officials to explain its handling of the evacuation - of the Diamond Princess cr\u2026 https:\/\/t.co\/ilS2sxgLCN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ilS2sxgLCN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1232825189936910341","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":9300262,"id_str":"9300262","name":"POLITICO","screen_name":"politico","location":"Washington, - D.C.","description":"Nobody knows politics like POLITICO. Got a news tip for - us? \n\ud83d\udc49 https:\/\/t.co\/fp9nugJuND","url":"https:\/\/t.co\/PPMyQsPlIg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PPMyQsPlIg","expanded_url":"http:\/\/politico.com","display_url":"politico.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fp9nugJuND","expanded_url":"https:\/\/politi.co\/2LcOtt5","display_url":"politi.co\/2LcOtt5","indices":[63,86]}]}},"protected":false,"followers_count":4072966,"friends_count":1500,"listed_count":40587,"created_at":"Mon - Oct 08 00:29:38 +0000 2007","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":324984,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E6E6E6","profile_background_image_url":"http:\/\/abs.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\/677177503694237697\/y6yTzWn6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677177503694237697\/y6yTzWn6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9300262\/1479760803","profile_link_color":"DD2E44","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":521,"favorite_count":1555,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":521,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559201677315,"id_str":"1234518559201677315","text":"Los - miedosos del coronavirus,no se dejen enga\u00f1ar con los barbijos,ofrecen - unos en\n $ 950,y estoy viendo un empresar\u2026 https:\/\/t.co\/phsnmKyuwR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/phsnmKyuwR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518559201677315","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1202864943974043648,"id_str":"1202864943974043648","name":"neron - 2(el aut\u00e9ntico)","screen_name":"neron50outlook1","location":"","description":"me - hackearon la cuenta soy Ner\u00f3n","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2480,"friends_count":3233,"listed_count":2,"created_at":"Fri - Dec 06 08:18:59 +0000 2019","favourites_count":16548,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231891589229948929\/zKMgYaGS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231891589229948929\/zKMgYaGS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559168114695,"id_str":"1234518559168114695","text":"RT - @ewarren: My new plan for coronavirus response:\n1. Ensure every American - can get all recommended care for coronavirus for free.\n2. Creat\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243948258,"id_str":"243948258","name":"Shana - D","screen_name":"DebbiesHotMama","location":"Wisconsin, USA","description":"Woke - American citizen. Liberal & feminist. Women''s rights are human rights. Still - with Her and all in for Warren....and, yeah, I love \ud83d\udc08\ud83d\udc31","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":381,"friends_count":1078,"listed_count":1,"created_at":"Fri - Jan 28 04:37:39 +0000 2011","favourites_count":140347,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42322,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222133143827812352\/xs-LlHsC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222133143827812352\/xs-LlHsC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243948258\/1580214225","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:05:17 +0000 2020","id":1234510093963624448,"id_str":"1234510093963624448","text":"My - new plan for coronavirus response:\n1. Ensure every American can get all recommended - care for coronavirus for fre\u2026 https:\/\/t.co\/6Afxl67CH4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6Afxl67CH4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510093963624448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357606935,"id_str":"357606935","name":"Elizabeth - Warren","screen_name":"ewarren","location":"Massachusetts","description":"U.S. - Senator, former teacher, and candidate for president. Wife, mom (Amelia, Alex, - Bailey, @CFPB), grandmother, and Okie. She\/her. Official campaign account.","url":"https:\/\/t.co\/5jpXuSnwli","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5jpXuSnwli","expanded_url":"http:\/\/ewar.ren\/chip-in","display_url":"ewar.ren\/chip-in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3831314,"friends_count":521,"listed_count":15758,"created_at":"Thu - Aug 18 16:43:48 +0000 2011","favourites_count":116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9199,"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\/1215406626049413121\/LiVKh64l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215406626049413121\/LiVKh64l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357606935\/1578610497","profile_link_color":"232444","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"7DA6D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5538,"favorite_count":22071,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5538,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518559029710850,"id_str":"1234518559029710850","text":"RT - @monicaguerzoni: Negli Usa il tampone per il #coronavirus pu\u00f3 costarti - 1400 euro (oltre 3000 se non hai un\u2019assicurazione). In Italia \u00e8 - g\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[48,60]}],"symbols":[],"user_mentions":[{"screen_name":"monicaguerzoni","name":"monica - guerzoni","id":384986685,"id_str":"384986685","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922539118340530176,"id_str":"922539118340530176","name":"Ierofante","screen_name":"Ierofante5","location":"Firenze, - Toscana","description":"paziente, errante, non smetto mai di sognare per vincere","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":1232,"listed_count":0,"created_at":"Mon - Oct 23 19:04:00 +0000 2017","favourites_count":11259,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3269,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/965687696545976320\/RH-4y7_w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/965687696545976320\/RH-4y7_w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922539118340530176\/1514366534","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 08:09:09 +0000 2020","id":1234390272219504640,"id_str":"1234390272219504640","text":"Negli - Usa il tampone per il #coronavirus pu\u00f3 costarti 1400 euro (oltre 3000 - se non hai un\u2019assicurazione). In Italia\u2026 https:\/\/t.co\/QfMHconcL3","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[28,40]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QfMHconcL3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234390272219504640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384986685,"id_str":"384986685","name":"monica - guerzoni","screen_name":"monicaguerzoni","location":"","description":"Corriere - della Sera","url":"https:\/\/t.co\/h9cEgjpww3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/h9cEgjpww3","expanded_url":"http:\/\/www.corriere.it","display_url":"corriere.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11945,"friends_count":1052,"listed_count":145,"created_at":"Tue - Oct 04 17:35:55 +0000 2011","favourites_count":1106,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3289,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165897274309906434\/lr7jPmdC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165897274309906434\/lr7jPmdC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384986685\/1511590979","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4534,"favorite_count":19382,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":4534,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558832357376,"id_str":"1234518558832357376","text":"RT - @PreventionTips: California coronavirus patient had to wait days to be tested - because of restrictive federal criteria, despite doctors''\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PreventionTips","name":"TIPS: - The Infection Prevention Strategy","id":2991634220,"id_str":"2991634220","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241761927,"id_str":"241761927","name":"Lisa - Ri","screen_name":"Lisari23","location":"Carlsbad, CA","description":"I think - you can be all you want to be..!! :))) Like to know new people .... & I am - a CA girl!!! & an Accountant","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7977,"friends_count":8389,"listed_count":34,"created_at":"Sun - Jan 23 02:41:10 +0000 2011","favourites_count":270,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25380,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223337575\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223337575\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241761927\/1359764633","profile_link_color":"4D12E3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 27 12:55:35 +0000 2020","id":1233012804887760897,"id_str":"1233012804887760897","text":"California - coronavirus patient had to wait days to be tested because of restrictive federal - criteria, despite docto\u2026 https:\/\/t.co\/QCOHMRwaFD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QCOHMRwaFD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233012804887760897","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2991634220,"id_str":"2991634220","name":"TIPS: - The Infection Prevention Strategy","screen_name":"PreventionTips","location":"http:\/\/www.IC.tips","description":"Official - account of the #PanAccess Journal on #InfectionControl & #Prevention. #OpenAccess - #PeerReview Join. Contribute. Make a Difference #SARSCoV2 #COVID19","url":"https:\/\/t.co\/XCBuOi9yT4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XCBuOi9yT4","expanded_url":"http:\/\/www.Infectioncontrol.tips","display_url":"Infectioncontrol.tips","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12712,"friends_count":2086,"listed_count":207,"created_at":"Wed - Jan 21 15:24:16 +0000 2015","favourites_count":7048,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22678,"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\/1171497180890140672\/tMbxjZ1O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171497180890140672\/tMbxjZ1O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2991634220\/1581076108","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1868,"favorite_count":2256,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1868,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558639394816,"id_str":"1234518558639394816","text":"RT - @Surgeon_General: Seriously people- STOP BUYING MASKS! \n\nThey are NOT effective - in preventing general public from catching #Coronavirus\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[127,139]}],"symbols":[],"user_mentions":[{"screen_name":"Surgeon_General","name":"U.S. - Surgeon General","id":455024343,"id_str":"455024343","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":233367891,"id_str":"233367891","name":"sara - e","screen_name":"saraestensen","location":"Carlsbad, CA","description":"True - beauty captures our hearts, not just our eyes.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":281,"friends_count":638,"listed_count":9,"created_at":"Mon - Jan 03 01:53:20 +0000 2011","favourites_count":2010,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3994,"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\/378800000796382047\/5fb672bdc2d06ae4cae11b0cbe6e2943_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000796382047\/5fb672bdc2d06ae4cae11b0cbe6e2943_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/233367891\/1374865004","profile_link_color":"038543","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 12:08:43 +0000 2020","id":1233725785283932160,"id_str":"1233725785283932160","text":"Seriously - people- STOP BUYING MASKS! \n\nThey are NOT effective in preventing general - public from catching\u2026 https:\/\/t.co\/6oEg8qlu5E","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6oEg8qlu5E","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233725785283932160","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":455024343,"id_str":"455024343","name":"U.S. - Surgeon General","screen_name":"Surgeon_General","location":"Washington, DC","description":"U.S. - Surgeon General VADM Jerome M. Adams. (Note: Tweets prior to 9\/12\/17 were - from previous Surgeons General.)","url":"https:\/\/t.co\/7X9rbDmMWX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7X9rbDmMWX","expanded_url":"http:\/\/www.surgeongeneral.gov\/","display_url":"surgeongeneral.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":632606,"friends_count":213,"listed_count":1863,"created_at":"Wed - Jan 04 17:08:18 +0000 2012","favourites_count":1706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8997,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932614359880171522\/tLq-t-Se_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932614359880171522\/tLq-t-Se_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/455024343\/1557037765","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41333,"favorite_count":65649,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":41333,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558614396928,"id_str":"1234518558614396928","text":"#EstadosUnidos - Reportan brote de #coronavirus en centro de adultos mayores de Washington\n\nhttps:\/\/t.co\/WN8My338GK - https:\/\/t.co\/aoP0pIjUW0","truncated":false,"entities":{"hashtags":[{"text":"EstadosUnidos","indices":[0,14]},{"text":"coronavirus","indices":[33,45]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WN8My338GK","expanded_url":"https:\/\/mundotamaulipas.com\/noticia.php?idnoticia=22534","display_url":"mundotamaulipas.com\/noticia.php?id\u2026","indices":[90,113]}],"media":[{"id":1234518542156025856,"id_str":"1234518542156025856","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkEsXX0AAWyrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkEsXX0AAWyrz.jpg","url":"https:\/\/t.co\/aoP0pIjUW0","display_url":"pic.twitter.com\/aoP0pIjUW0","expanded_url":"https:\/\/twitter.com\/MundoTamaulipas\/status\/1234518558614396928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":680,"h":420,"resize":"fit"},"medium":{"w":680,"h":420,"resize":"fit"},"small":{"w":680,"h":420,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518542156025856,"id_str":"1234518542156025856","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkEsXX0AAWyrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkEsXX0AAWyrz.jpg","url":"https:\/\/t.co\/aoP0pIjUW0","display_url":"pic.twitter.com\/aoP0pIjUW0","expanded_url":"https:\/\/twitter.com\/MundoTamaulipas\/status\/1234518558614396928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":680,"h":420,"resize":"fit"},"medium":{"w":680,"h":420,"resize":"fit"},"small":{"w":680,"h":420,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2457109722,"id_str":"2457109722","name":"Mundo - Tamaulipas","screen_name":"MundoTamaulipas","location":"Tamaulipas, M\u00e9xico","description":"Portal - de noticias con la informaci\u00f3n m\u00e1s relevante de todo Tamaulipas.","url":"http:\/\/t.co\/QnPROiEWyJ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QnPROiEWyJ","expanded_url":"http:\/\/www.mundotamaulipas.com","display_url":"mundotamaulipas.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2791,"friends_count":1590,"listed_count":62,"created_at":"Mon - Apr 21 20:52:44 +0000 2014","favourites_count":50,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28232,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1010183760938057728\/jrFksP7Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1010183760938057728\/jrFksP7Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2457109722\/1529685690","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558580842497,"id_str":"1234518558580842497","text":"RT - @SakuraiMitsukii: Another anti-asian attack, A Hispanic man dumped water on - this Asian man because of the racist mentality that \u201call Asi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SakuraiMitsukii","name":"\ubbfc\uc9c0 - | \u30df\u30f3\u30b8 | Minji\u2077\ud83c\udf19","id":1232178020963602434,"id_str":"1232178020963602434","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":897011647230996480,"id_str":"897011647230996480","name":"JENNIE - \ud83d\udc98","screen_name":"sauceyjen","location":"Texa$","description":"(CODEY)ine - dreamin. \ud83d\udcad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":575,"friends_count":394,"listed_count":0,"created_at":"Mon - Aug 14 08:26:57 +0000 2017","favourites_count":18541,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21565,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1210612223179186178\/qP9x-o9X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210612223179186178\/qP9x-o9X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/897011647230996480\/1582001160","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 03:25:15 +0000 2020","id":1233956439946747905,"id_str":"1233956439946747905","text":"Another - anti-asian attack, A Hispanic man dumped water on this Asian man because of - the racist mentality that \u201call\u2026 https:\/\/t.co\/qTqqJLR57n","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qTqqJLR57n","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233956439946747905","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232178020963602434,"id_str":"1232178020963602434","name":"\ubbfc\uc9c0 - | \u7f8e\u6708 | Minji\u2077\ud83c\udf19","screen_name":"SakuraiMitsukii","location":"#BlackLivesMatter","description":"\ud83c\uddf0\ud83c\uddf7\ubb38 - \ubbfc\uc9c0 \ubbf8\uce20\ud0a4 \uc0ac\ub098 | \u30e0\u30f3\u30df\u30f3\u30b8\u7f8e\u6708\u54b2\u611b\ud83c\uddef\ud83c\uddf5Muslim, - Pro-Asian, Anti-Racist, 15, she\/her, Australian-based. Taurus\u2600\ufe0fScorpio\ud83c\udf11Aries\u2b06\ufe0f - \uc544\ubbf8 | \ube14\ub9c1\ud06c | \uc6d0\uc2a4 | \ub808\ubca0\ub7fd | Barb - | \ub098\ub294 \ubbf8\uad6d\uc778\uc744 \uc2eb\uc5b4\ud55c\ub2e4","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":270,"friends_count":318,"listed_count":0,"created_at":"Tue - Feb 25 05:38:36 +0000 2020","favourites_count":3661,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234719723692015617\/DGQXkrY9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234719723692015617\/DGQXkrY9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232178020963602434\/1583215098","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2799,"favorite_count":7775,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2799,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558559948801,"id_str":"1234518558559948801","text":"RT - @palmeriodoria: Weintraub deve recorrer a tropas da GLO pra interromper pesquisa - dos cientistas da Fapesp e de Oxford, que sequenciaram\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"palmeriodoria","name":"Palm\u00e9rio - D\u00f3ria","id":163296619,"id_str":"163296619","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2811462838,"id_str":"2811462838","name":"Enio - Taniguti","screen_name":"EnioTaniguti","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":207,"listed_count":0,"created_at":"Mon - Oct 06 20:18:29 +0000 2014","favourites_count":7938,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":45772,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1100232586163617794\/NVKsaD5M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1100232586163617794\/NVKsaD5M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2811462838\/1551150865","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:14 +0000 2020","id":1234517883432165377,"id_str":"1234517883432165377","text":"Weintraub - deve recorrer a tropas da GLO pra interromper pesquisa dos cientistas da Fapesp - e de Oxford, que sequenci\u2026 https:\/\/t.co\/si7yhOoxQF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/si7yhOoxQF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517883432165377","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163296619,"id_str":"163296619","name":"Palm\u00e9rio - D\u00f3ria","screen_name":"palmeriodoria","location":"S\u00e3o Paulo, Brasil","description":"Jornalista - e escritor","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81439,"friends_count":19617,"listed_count":500,"created_at":"Tue - Jul 06 01:55:49 +0000 2010","favourites_count":61899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69796,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1053953268\/palmerio_doria_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053953268\/palmerio_doria_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163296619\/1579722123","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":75,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558534553600,"id_str":"1234518558534553600","text":"RT - @habil: \u0622\u06cc\u0627 \u0622\u0628 \u0648 \u0647\u0648\u0627\u06cc \u06af\u0631\u0645\u200c\u062a\u0631 - \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u0646\u062a\u0634\u0627\u0631 - \u0648\u06cc\u0631\u0648\u0633 \u06a9\u0631\u0648\u0646\u0627 \u0631\u0627 - \u0645\u062a\u0648\u0642\u0641 \u06a9\u0646\u062f\u061f \n\u06a9\u0627\u0631\u0634\u0646\u0627\u0633\u0627\u0646 - \u0645\u06cc\u200c\u06af\u0648\u06cc\u0646\u062f \u0631\u0648\u06cc \u0622\u0646 - \u062d\u0633\u0627\u0628 \u0628\u0627\u0632 \u0646\u06a9\u0646\u06cc\u062f\n\nhttps:\/\/t.co\/wH6R8JEU1q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"habil","name":"Meysam - Ramezanali","id":17272701,"id_str":"17272701","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/wH6R8JEU1q","expanded_url":"https:\/\/time.com\/5790880\/coronavirus-warm-weather-summer\/","display_url":"time.com\/5790880\/corona\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fa","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1102074283,"id_str":"1102074283","name":"\u0645\u062d\u0645\u062f - \u0627\u062d\u0645\u062f\u06cc \u0646\u0698\u0627\u062f \u0634\u0644\u0645\u0627\u0646\u06cc","screen_name":"qomnn","location":"\u062c\u0645\u0647\u0648\u0631\u06cc - \u0627\u0633\u0644\u0627\u0645\u06cc \u0627\u06cc\u0631\u0627\u0646","description":"\u200f\u0639\u0644\u0627\u0642\u0645\u0646\u062f - \u0628\u0647 \u0631\u0633\u0627\u0646\u0647 \u0648 \u0631\u0648\u0632\u0646\u0627\u0645\u0647","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":183,"listed_count":1,"created_at":"Fri - Jan 18 21:28:19 +0000 2013","favourites_count":241,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226011602622742528\/Zf709QLj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226011602622742528\/Zf709QLj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 11:59:00 +0000 2020","id":1234448115035496449,"id_str":"1234448115035496449","text":"\u0622\u06cc\u0627 - \u0622\u0628 \u0648 \u0647\u0648\u0627\u06cc \u06af\u0631\u0645\u200c\u062a\u0631 - \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u0646\u062a\u0634\u0627\u0631 - \u0648\u06cc\u0631\u0648\u0633 \u06a9\u0631\u0648\u0646\u0627 \u0631\u0627 - \u0645\u062a\u0648\u0642\u0641 \u06a9\u0646\u062f\u061f \n\u06a9\u0627\u0631\u0634\u0646\u0627\u0633\u0627\u0646 - \u0645\u06cc\u200c\u06af\u0648\u06cc\u0646\u062f \u0631\u0648\u06cc \u0622\u0646 - \u062d\u0633\u0627\u0628 \u0628\u0627\u0632 \u0646\u06a9\u0646\u06cc\u062f\n\nhttps:\/\/t.co\/wH6R8JEU1q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wH6R8JEU1q","expanded_url":"https:\/\/time.com\/5790880\/coronavirus-warm-weather-summer\/","display_url":"time.com\/5790880\/corona\u2026","indices":[106,129]}]},"metadata":{"iso_language_code":"fa","result_type":"recent"},"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,"user":{"id":17272701,"id_str":"17272701","name":"Meysam - Ramezanali","screen_name":"habil","location":"TEHRAN, IRAN","description":"\u0637\u0644\u0628\u0647\u061b - \u062f\u0627\u0646\u0634\u062c\u0648\u06cc \u0627\u0631\u0634\u062f \u0645\u062f\u06cc\u0631\u06cc\u062a - \u0631\u0633\u0627\u0646\u0647","url":"https:\/\/t.co\/4ho5LItgad","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4ho5LItgad","expanded_url":"https:\/\/www.instagram.com\/meysam.ramezanali","display_url":"instagram.com\/meysam.ramezan\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":26699,"friends_count":589,"listed_count":238,"created_at":"Sun - Nov 09 19:30:39 +0000 2008","favourites_count":309410,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":58666,"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\/1214844730753912832\/tv66BeeC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214844730753912832\/tv66BeeC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17272701\/1578336333","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":280,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fa"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fa"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558337589249,"id_str":"1234518558337589249","text":"British - Airways has cancelled hundreds more flights because of the coronavirus, saying - it''s having to \"match reduced demand.\"","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.burli.com\" rel=\"nofollow\"\u003eBurli\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2329058035,"id_str":"2329058035","name":"LBC - News","screen_name":"LBCNews","location":"UK","description":"Where The News - Never Stops. The UK\u2019s first rolling radio news channel and 24\/7 digital - news service. For opinion and debate, follow @LBC.\nInstagram @LBCNewsfeed","url":"https:\/\/t.co\/o60LcI5fOO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/o60LcI5fOO","expanded_url":"http:\/\/www.lbcnews.co.uk\/","display_url":"lbcnews.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53661,"friends_count":85,"listed_count":659,"created_at":"Wed - Feb 05 16:34:00 +0000 2014","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":32252,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186710398386556929\/2_jvgTp7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186710398386556929\/2_jvgTp7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2329058035\/1571768783","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558161412097,"id_str":"1234518558161412097","text":"RT - @CuenteroMuisne: \u201cEl primer caso de coronavirus del pa\u00eds fue la - se\u00f1ora que lleg\u00f3 a Guayaquil procedente de Espa\u00f1a. Y el segundo, - Jaime V\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CuenteroMuisne","name":"Cuentero - de Muisne","id":3361771708,"id_str":"3361771708","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":219889247,"id_str":"219889247","name":"Xavier - Mela","screen_name":"xmela18","location":"Guayaquil","description":"Guitarrista!, - Barcelonista, Socio Activo, Padre de Axl! Wrestling. Rock!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":247,"friends_count":708,"listed_count":2,"created_at":"Fri - Nov 26 05:05:25 +0000 2010","favourites_count":14810,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15032,"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\/755061368164843520\/_mXZNw2C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/755061368164843520\/_mXZNw2C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219889247\/1494529857","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 01:00:26 +0000 2020","id":1234282381269401600,"id_str":"1234282381269401600","text":"\u201cEl - primer caso de coronavirus del pa\u00eds fue la se\u00f1ora que lleg\u00f3 - a Guayaquil procedente de Espa\u00f1a. Y el segundo, Jai\u2026 https:\/\/t.co\/CRCwkcIzBG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CRCwkcIzBG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234282381269401600","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":3361771708,"id_str":"3361771708","name":"Cuentero - de Muisne","screen_name":"CuenteroMuisne","location":"Muisne City","description":"Labioso - profesional. Pol\u00edtico amateur.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37809,"friends_count":57,"listed_count":85,"created_at":"Mon - Jul 06 02:41:48 +0000 2015","favourites_count":7325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3008,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618221893200572416\/7aao2o2P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618221893200572416\/7aao2o2P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3361771708\/1456781157","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":401,"favorite_count":1476,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":401,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558157107200,"id_str":"1234518558157107200","text":"RT - @DrDenaGrayson: ALL costs of #coronavirus testing and treatment should be - covered for ALL.\n\n#COVID19 #CoronavirusOutbreak","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[32,44]},{"text":"COVID19","indices":[95,103]},{"text":"CoronavirusOutbreak","indices":[104,124]}],"symbols":[],"user_mentions":[{"screen_name":"DrDenaGrayson","name":"Dr. - Dena Grayson","id":1651522832,"id_str":"1651522832","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3981744089,"id_str":"3981744089","name":"fox4life - (birth name, never network\ud83d\ude31)","screen_name":"Gilsav_Becky","location":"Pennsylvania, - USA","description":"socially liberal, fiscally responsible \ud83c\uddfa\ud83c\uddf8 \ud83c\udf0d\ud83c\udf33ecology, - \ud83d\udd2dscience, \ud83e\uddd2\ud83c\udffd\ud83d\udc67\ud83c\udfffhumanity - \ud83e\udd89\ud83e\udd88\ud83e\udd8b\ud83d\udc30\ud83d\udc35\ud83d\udc36\ud83d\udc31 - spirituality\u262f\ufe0f allconnected. \n\nNana to 17 1\/2...the future\u2764","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":269,"listed_count":0,"created_at":"Sat - Oct 17 19:40:48 +0000 2015","favourites_count":21462,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7703,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/997936329294987264\/-A7IxMcF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/997936329294987264\/-A7IxMcF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:06:46 +0000 2020","id":1234495369133928448,"id_str":"1234495369133928448","text":"ALL - costs of #coronavirus testing and treatment should be covered for ALL.\n\n#COVID19 - #CoronavirusOutbreak https:\/\/t.co\/20qGEkN0la","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[13,25]},{"text":"COVID19","indices":[76,84]},{"text":"CoronavirusOutbreak","indices":[85,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/20qGEkN0la","expanded_url":"https:\/\/twitter.com\/aharrison763\/status\/1234494096032587777","display_url":"twitter.com\/aharrison763\/s\u2026","indices":[106,129]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1651522832,"id_str":"1651522832","name":"Dr. - Dena Grayson","screen_name":"DrDenaGrayson","location":"Florida","description":"Patriotic - liberal. Former Democratic candidate for U.S. Congress, physician (MD) and - scientist (PhD). Expert on #Ebola and other #pandemic threats.","url":"https:\/\/t.co\/5BmBFaFyit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5BmBFaFyit","expanded_url":"http:\/\/denagrayson.com","display_url":"denagrayson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":231244,"friends_count":333,"listed_count":1443,"created_at":"Tue - Aug 06 23:34:40 +0000 2013","favourites_count":157303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":63563,"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\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1651522832\/1541350200","profile_link_color":"0000E5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234494096032587777,"quoted_status_id_str":"1234494096032587777","quoted_status":{"created_at":"Mon - Mar 02 15:01:42 +0000 2020","id":1234494096032587777,"id_str":"1234494096032587777","text":"@DrDenaGrayson - And with our high deductible plan, we would still pay thousands out of pocket. - That with Insurance \u201ccovering\u201d it.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrDenaGrayson","name":"Dr. - Dena Grayson","id":1651522832,"id_str":"1651522832","indices":[0,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234492714667868162,"in_reply_to_status_id_str":"1234492714667868162","in_reply_to_user_id":1651522832,"in_reply_to_user_id_str":"1651522832","in_reply_to_screen_name":"DrDenaGrayson","user":{"id":4262975175,"id_str":"4262975175","name":"A - Harrison","screen_name":"aharrison763","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":37,"listed_count":0,"created_at":"Tue - Nov 24 07:16:56 +0000 2015","favourites_count":46,"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:\/\/pbs.twimg.com\/profile_images\/669053456498499584\/_FOqZwky_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/669053456498499584\/_FOqZwky_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":49,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":219,"favorite_count":684,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234494096032587777,"quoted_status_id_str":"1234494096032587777","retweet_count":219,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558152982529,"id_str":"1234518558152982529","text":"RT - @galvanochoa: \ud83d\udd35#Twiteratti\n\n\ud83d\udd35Escribe: Alejandro Puerto - \/@ea_puerto\n\nComo medida de prevenci\u00f3n contra el coronavirus, me estar\u00e9 - refugiand\u2026","truncated":false,"entities":{"hashtags":[{"text":"Twiteratti","indices":[18,29]}],"symbols":[],"user_mentions":[{"screen_name":"galvanochoa","name":"\ud835\ude40\ud835\ude63\ud835\ude67\ud835\ude5e\ud835\ude66\ud835\ude6a\ud835\ude5a - \ud835\ude42\ud835\ude56\ud835\ude61\ud835\ude6b\u00e1\ud835\ude63 \ud835\ude4a\ud835\ude58\ud835\ude5d\ud835\ude64\ud835\ude56","id":36109768,"id_str":"36109768","indices":[3,15]},{"screen_name":"ea_puerto","name":"Alejandro - Puerto","id":2869870912,"id_str":"2869870912","indices":[59,69]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2242803950,"id_str":"2242803950","name":"Enrique - Alfonso","screen_name":"eechazarreti","location":"","description":"Si los - extraterrestres nos visitaran, ocurrir\u00eda lo mismo que cuando Crist\u00f3bal - Col\u00f3n desembarc\u00f3 en Am\u00e9rica y nada sali\u00f3 bien para los - nativos americanos: Hawking","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":853,"listed_count":0,"created_at":"Thu - Dec 12 19:14:56 +0000 2013","favourites_count":7810,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4812,"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\/378800000863659425\/4c7HDa8H_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000863659425\/4c7HDa8H_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2242803950\/1548731447","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:07:55 +0000 2020","id":1234465457622724608,"id_str":"1234465457622724608","text":"\ud83d\udd35#Twiteratti\n\n\ud83d\udd35Escribe: - Alejandro Puerto \/@ea_puerto\n\nComo medida de prevenci\u00f3n contra el - coronavirus, me estar\u00e9 re\u2026 https:\/\/t.co\/noTAgUbtbt","truncated":true,"entities":{"hashtags":[{"text":"Twiteratti","indices":[1,12]}],"symbols":[],"user_mentions":[{"screen_name":"ea_puerto","name":"Alejandro - Puerto","id":2869870912,"id_str":"2869870912","indices":[42,52]}],"urls":[{"url":"https:\/\/t.co\/noTAgUbtbt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234465457622724608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36109768,"id_str":"36109768","name":"\ud835\ude40\ud835\ude63\ud835\ude67\ud835\ude5e\ud835\ude66\ud835\ude6a\ud835\ude5a - \ud835\ude42\ud835\ude56\ud835\ude61\ud835\ude6b\u00e1\ud835\ude63 \ud835\ude4a\ud835\ude58\ud835\ude5d\ud835\ude64\ud835\ude56","screen_name":"galvanochoa","location":"Penthouse - de la Realidad","description":"Espacio plural pero ser\u00e1n bloqueados insultos, - agresiones y fake news.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":184107,"friends_count":8459,"listed_count":1432,"created_at":"Tue - Apr 28 16:30:06 +0000 2009","favourites_count":10128,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":82907,"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\/1213909966576181248\/WjB5LncM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213909966576181248\/WjB5LncM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36109768\/1546825207","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":700,"favorite_count":1579,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":700,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518558148890626,"id_str":"1234518558148890626","text":"RT - @novaeramidia: \ud83c\udde9\ud83c\uddea | O ministro do Interior alem\u00e3o - recusou-se a cumprimentar a chanceler Angela Merkel nesta segunda-feira, em - um momento\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"novaeramidia","name":"Nova - Era M\u00eddia","id":928093930624901122,"id_str":"928093930624901122","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":139196599,"id_str":"139196599","name":"Paulo","screen_name":"Pcdavid2","location":"S\u00e3o - Paulo, Brasil","description":"Brasileiro, Engenheiro e conservador.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":523,"listed_count":0,"created_at":"Sat - May 01 21:30:47 +0000 2010","favourites_count":6543,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":444,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1187863804916490241\/mMh5iW2b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1187863804916490241\/mMh5iW2b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139196599\/1572043914","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:33:26 +0000 2020","id":1234502079789617152,"id_str":"1234502079789617152","text":"\ud83c\udde9\ud83c\uddea - | O ministro do Interior alem\u00e3o recusou-se a cumprimentar a chanceler - Angela Merkel nesta segunda-feira, em um m\u2026 https:\/\/t.co\/Tu2fVVDHFi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Tu2fVVDHFi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234502079789617152","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":928093930624901122,"id_str":"928093930624901122","name":"Nova - Era M\u00eddia","screen_name":"novaeramidia","location":"S\u00e3o Paulo, Brasil","description":"Buscando - levar informa\u00e7\u00e3o e opini\u00e3o em apenas 280 caracteres.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2237,"friends_count":17,"listed_count":12,"created_at":"Wed - Nov 08 02:56:51 +0000 2017","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":836,"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\/1082862937616855041\/_S2LrcWd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082862937616855041\/_S2LrcWd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/928093930624901122\/1582069700","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557913997312,"id_str":"1234518557913997312","text":"RT - @actiondirector1: Aaaaaandddd, here comes the panic. \n\nHope everyone is - stocked up. \n\nPanic buying hits New York as first coronavirus ca\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"actiondirector1","name":"Film - Ninja","id":40814572,"id_str":"40814572","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":736600789314076673,"id_str":"736600789314076673","name":"Vicki - Wireman","screen_name":"wireman_vicki","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":268,"listed_count":0,"created_at":"Sat - May 28 16:51:28 +0000 2016","favourites_count":3042,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1438,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736607525546655745\/4M1YdiTA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736607525546655745\/4M1YdiTA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:43:31 +0000 2020","id":1234489517186453506,"id_str":"1234489517186453506","text":"Aaaaaandddd, - here comes the panic. \n\nHope everyone is stocked up. \n\nPanic buying hits - New York as first coronavirus\u2026 https:\/\/t.co\/XJj4z4t93Y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XJj4z4t93Y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234489517186453506","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40814572,"id_str":"40814572","name":"Film - Ninja","screen_name":"actiondirector1","location":"","description":"Hollywood - outcast, Husband, Father, Athlete, World traveler, Adventurer, Nature lover. - Riding 1st Class on the Trump Train! #MAGA #WWG1WGA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13588,"friends_count":6608,"listed_count":29,"created_at":"Mon - May 18 04:37:19 +0000 2009","favourites_count":15246,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2531,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185557301895278593\/5dlV4dVB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185557301895278593\/5dlV4dVB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40814572\/1550849200","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":46,"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"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557913907201,"id_str":"1234518557913907201","text":"RT - @EPinternacional: El l\u00edder de una secta se enfrenta a cargos por homicidio - por propagaci\u00f3n del coronavirus en Corea del Sur.\n\nDe los 3.8\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EPinternacional","name":"EP - Internacional","id":2382060517,"id_str":"2382060517","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2195214720,"id_str":"2195214720","name":"Kris","screen_name":"kristel_marh","location":"Medell\u00edn, - Colombia","description":"On good days I am charming as fuck... \nLADIES'' - ROOM.\n\ud83c\uddfb\ud83c\uddea\ud83c\udde8\ud83c\uddf4\nhttps:\/\/t.co\/vRSkct4EBw","url":"https:\/\/t.co\/sFlyUk0qx6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sFlyUk0qx6","expanded_url":"https:\/\/www.instagram.com\/kristel_hh\/","display_url":"instagram.com\/kristel_hh\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/vRSkct4EBw","expanded_url":"http:\/\/vendotartaconlabiablog.wordpress.com","display_url":"vendotartaconlabiablog.wordpress.com","indices":[58,81]}]}},"protected":false,"followers_count":212,"friends_count":304,"listed_count":3,"created_at":"Fri - Nov 15 02:14:43 +0000 2013","favourites_count":32792,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23698,"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\/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\/1163651002463150080\/zuWdeh2P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163651002463150080\/zuWdeh2P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2195214720\/1534288947","profile_link_color":"F58EA8","profile_sidebar_border_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 10:23:23 +0000 2020","id":1234424052883841025,"id_str":"1234424052883841025","text":"El - l\u00edder de una secta se enfrenta a cargos por homicidio por propagaci\u00f3n - del coronavirus en Corea del Sur.\n\nDe los\u2026 https:\/\/t.co\/6GhfqNxlyk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6GhfqNxlyk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234424052883841025","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2382060517,"id_str":"2382060517","name":"EP - Internacional","screen_name":"EPinternacional","location":"","description":"Informaci\u00f3n - internacional las 24 horas del d\u00eda - https:\/\/t.co\/jUXPniNMuV","url":"http:\/\/t.co\/XHJ60EmAe9","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/XHJ60EmAe9","expanded_url":"http:\/\/www.europapress.es\/internacional\/","display_url":"europapress.es\/internacional\/","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jUXPniNMuV","expanded_url":"https:\/\/www.facebook.com\/pages\/Europa-Press-Internacional\/555624881238305","display_url":"facebook.com\/pages\/Europa-P\u2026","indices":[49,72]}]}},"protected":false,"followers_count":44461,"friends_count":547,"listed_count":956,"created_at":"Mon - Mar 10 12:14:32 +0000 2014","favourites_count":136,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":121142,"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\/876774661056589825\/DHUhYu4g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876774661056589825\/DHUhYu4g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2382060517\/1452594300","profile_link_color":"2E6EAE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":211,"favorite_count":323,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":211,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557905629184,"id_str":"1234518557905629184","text":"RT - @LilChelinhotent: Para evitar a transmiss\u00e3o do coronav\u00edrus, evite - fazer festas com mais de 20 pessoas.\n\nApenas COVID-19.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LilChelinhotent","name":"Che - che chelinho","id":902870935174356992,"id_str":"902870935174356992","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1171274050926256129,"id_str":"1171274050926256129","name":"Diogo - Castanheiro","screen_name":"D_Castanheiro16","location":"Entroncamento, Portugal","description":"\u2022entroncamento - \ud83d\udccd\u2022football player\u26bd\ufe0f\n\u202216\/09\ud83c\udf82","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":226,"listed_count":0,"created_at":"Tue - Sep 10 04:07:56 +0000 2019","favourites_count":4475,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5768,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234035470373355523\/9sw5EFhx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234035470373355523\/9sw5EFhx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1171274050926256129\/1583052023","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:50:20 +0000 2020","id":1234476132805881856,"id_str":"1234476132805881856","text":"Para - evitar a transmiss\u00e3o do coronav\u00edrus, evite fazer festas com mais - de 20 pessoas.\n\nApenas COVID-19.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":902870935174356992,"id_str":"902870935174356992","name":"Che - che chelinho","screen_name":"LilChelinhotent","location":"","description":"@sporting - @okcthunder","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":126,"listed_count":2,"created_at":"Wed - Aug 30 12:29:40 +0000 2017","favourites_count":63309,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227929695058112515\/BY-Rh8uW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227929695058112515\/BY-Rh8uW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/902870935174356992\/1575734855","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5089,"favorite_count":12607,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":5089,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557830021120,"id_str":"1234518557830021120","text":"RT - @SatoriCR: Ustedes preocup\u00e1ndose por el Coronavirus y tenemos la cura - para el C\u00e1ncer desde hace 20 a\u00f1os.\nFecha: 13 de enero del 2000\nPer\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SatoriCR","name":"Ricardo","id":181691796,"id_str":"181691796","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39096572,"id_str":"39096572","name":"Izzie - \u2728","screen_name":"Izzytica","location":"Alajuela, Costa Rica","description":"\ud83e\udde9 - Digital Marketing, \ud83e\uddf8 Mom, \ud83d\udc36\ud83d\udc31Animal Lover, - adventures \ud83c\udfd4","url":"https:\/\/t.co\/BIXyBsBcsv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BIXyBsBcsv","expanded_url":"http:\/\/mishcupcake.tumblr.com","display_url":"mishcupcake.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1537,"friends_count":2265,"listed_count":44,"created_at":"Sun - May 10 19:20:07 +0000 2009","favourites_count":41907,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":112072,"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\/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\/1230171205589766147\/bv1B0GwP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230171205589766147\/bv1B0GwP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39096572\/1565739082","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"033649","profile_text_color":"CDCBC7","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:43 +0000 2020","id":1234518005360578563,"id_str":"1234518005360578563","text":"Ustedes - preocup\u00e1ndose por el Coronavirus y tenemos la cura para el C\u00e1ncer - desde hace 20 a\u00f1os.\nFecha: 13 de enero de\u2026 https:\/\/t.co\/U0hNSgRrQq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U0hNSgRrQq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518005360578563","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":181691796,"id_str":"181691796","name":"Ricardo","screen_name":"SatoriCR","location":"San - Jos\u00e9, Costa Rica","description":"Antes sab\u00eda sobre caf\u00e9 y daba - clases, ahora solo me gusta \u2022 Archivista\/Barista \u2022 Fui @Anonimo_07 - hasta que alguien me lo rob\u00f3 \u2022 #Caf\u00e9DeCostaRica \u2615\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2671,"friends_count":2370,"listed_count":19,"created_at":"Sun - Aug 22 20:52:07 +0000 2010","favourites_count":11852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74849,"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\/1215084961822334977\/MD2__LIr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215084961822334977\/MD2__LIr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/181691796\/1553783966","profile_link_color":"344BDB","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"},"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":"es"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557804945411,"id_str":"1234518557804945411","text":"RT - @RepMattGaetz: The country can take great comfort in the fact that @realDonaldTrump - has built teams to solve problems his entire life.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepMattGaetz","name":"Rep. - Matt Gaetz","id":818948638890217473,"id_str":"818948638890217473","indices":[3,16]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[70,86]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":870986930913255424,"id_str":"870986930913255424","name":"Sia","screen_name":"Siasiaiam","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":121,"listed_count":0,"created_at":"Sat - Jun 03 12:54:01 +0000 2017","favourites_count":1538,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1113,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:06:15 +0000 2020","id":1234495240851116033,"id_str":"1234495240851116033","text":"The - country can take great comfort in the fact that @realDonaldTrump has built - teams to solve problems his entire l\u2026 https:\/\/t.co\/MT4viNaNLv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[52,68]}],"urls":[{"url":"https:\/\/t.co\/MT4viNaNLv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234495240851116033","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":818948638890217473,"id_str":"818948638890217473","name":"Rep. - Matt Gaetz","screen_name":"RepMattGaetz","location":"","description":"Official - Twitter for Congressman Matt Gaetz. Proud conservative who is honored to serve - the First District of Florida.","url":"https:\/\/t.co\/GcjK1dZCtR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GcjK1dZCtR","expanded_url":"http:\/\/Gaetz.house.gov","display_url":"Gaetz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":651203,"friends_count":854,"listed_count":2230,"created_at":"Tue - Jan 10 22:32:25 +0000 2017","favourites_count":612,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5227,"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\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818948638890217473\/1546465602","profile_link_color":"BB1A2A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4546,"favorite_count":16027,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4546,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557800747008,"id_str":"1234518557800747008","text":"RT - @RadioSavana: Sopralluogo dei Carabinieri del NAS in ospedale in provincia - di #Napoli. Guardate cosa trovano... Governatore della Campan\u2026","truncated":false,"entities":{"hashtags":[{"text":"Napoli","indices":[81,88]}],"symbols":[],"user_mentions":[{"screen_name":"RadioSavana","name":"RadioSavana","id":1100776937004457984,"id_str":"1100776937004457984","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":2182403667,"id_str":"2182403667","name":"salvatore - sarao \ud83c\uddee\ud83c\uddf9\u0646 stopislam stopinvasione","screen_name":"saraosalvatore","location":"Roma, - Lazio","description":"siculo amante del mare ing per sopravvivere, per stare - tranquillo blocco tutte le zecche rosse","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12757,"friends_count":12388,"listed_count":122,"created_at":"Fri - Nov 15 21:18:36 +0000 2013","favourites_count":98153,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":214754,"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\/1227886423216402433\/KHT3H9it_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227886423216402433\/KHT3H9it_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2182403667\/1534680857","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:54:43 +0000 2020","id":1234416839637204992,"id_str":"1234416839637204992","text":"Sopralluogo - dei Carabinieri del NAS in ospedale in provincia di #Napoli. Guardate cosa - trovano... Governatore della\u2026 https:\/\/t.co\/BdoR38dEYm","truncated":true,"entities":{"hashtags":[{"text":"Napoli","indices":[64,71]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BdoR38dEYm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234416839637204992","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1100776937004457984,"id_str":"1100776937004457984","name":"RadioSavana","screen_name":"RadioSavana","location":"Genova, - Liguria","description":"#AspettandoPrometeo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13047,"friends_count":2028,"listed_count":47,"created_at":"Wed - Feb 27 15:17:28 +0000 2019","favourites_count":145992,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":87353,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167308728195928065\/qefF-4WL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167308728195928065\/qefF-4WL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1100776937004457984\/1566746728","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":210,"favorite_count":300,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":210,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557733507072,"id_str":"1234518557733507072","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":571988788,"id_str":"571988788","name":"Ana","screen_name":"AnaLourdeslz","location":"Sonora, - M\u00e9xico","description":"God''s Not Dead","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":328,"listed_count":1,"created_at":"Sat - May 05 18:57:36 +0000 2012","favourites_count":11451,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43053,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1031029263208570881\/EKskj4tJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1031029263208570881\/EKskj4tJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571988788\/1534973637","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42247,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153505,"favorite_count":478705,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557670526976,"id_str":"1234518557670526976","text":"RT - @ChildCareAware: Are you wondering how you can prevent #coronavirus from impacting - children in your care? We''re sharing the latest infor\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[58,70]}],"symbols":[],"user_mentions":[{"screen_name":"ChildCareAware","name":"Child - Care Aware of America","id":24243150,"id_str":"24243150","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1120067796,"id_str":"1120067796","name":"Washington - State Department of Commerce","screen_name":"WAStateCommerce","location":"Olympia, - WA","description":"Washington State Department of Commerce official news and - information. Our mission is to strengthen communities in our state. RTs & - follows \u2260 endorsement","url":"http:\/\/t.co\/GlK0oCRW","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GlK0oCRW","expanded_url":"http:\/\/www.commerce.wa.gov","display_url":"commerce.wa.gov","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":3998,"friends_count":485,"listed_count":184,"created_at":"Fri - Jan 25 19:19:44 +0000 2013","favourites_count":2786,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":6082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4E85C6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207040244584865792\/H36pQ1KF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207040244584865792\/H36pQ1KF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1120067796\/1548800245","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 28 21:39:59 +0000 2020","id":1233507160950177794,"id_str":"1233507160950177794","text":"Are - you wondering how you can prevent #coronavirus from impacting children in - your care? We''re sharing the latest i\u2026 https:\/\/t.co\/MbuHoTxVVY","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[38,50]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MbuHoTxVVY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233507160950177794","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":24243150,"id_str":"24243150","name":"Child - Care Aware of America","screen_name":"ChildCareAware","location":"Arlington, - VA","description":"Our nation\u2019s leading voice for #ChildCare. Advocating - for affordable, high-quality #ECE for working families. Undertakes research - & reports on child care data.","url":"https:\/\/t.co\/E4TlCreHaH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/E4TlCreHaH","expanded_url":"https:\/\/childcareaware.org\/priceofcare","display_url":"childcareaware.org\/priceofcare","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12403,"friends_count":617,"listed_count":280,"created_at":"Fri - Mar 13 20:13:23 +0000 2009","favourites_count":4243,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"004990","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\/1004712413277515776\/juoMy2ES_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1004712413277515776\/juoMy2ES_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24243150\/1576852166","profile_link_color":"EE3124","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DEED","profile_text_color":"0715AD","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"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"},{"created_at":"Mon - Mar 02 16:38:55 +0000 2020","id":1234518557658099712,"id_str":"1234518557658099712","text":"#SaudiArabia - reported its first #coronavirus case. That''s 70\/195 global countries now. - https:\/\/t.co\/DuBJrftVTr","truncated":false,"entities":{"hashtags":[{"text":"SaudiArabia","indices":[0,12]},{"text":"coronavirus","indices":[32,44]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DuBJrftVTr","expanded_url":"https:\/\/twitter.com\/WilliamYang120\/status\/1234516253269643264","display_url":"twitter.com\/WilliamYang120\u2026","indices":[87,110]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":194622014,"id_str":"194622014","name":"Saskia - Steinhorst","screen_name":"scruffy65","location":"Near the Wadden Sea.","description":"WYSIWYG. - Namely, me. - Fiercely opposed to untruths & injustice. I''ll call your bullshit - no matter what creed\/politics\/color you are!\nBlocked by Wikileaks.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":336,"friends_count":54,"listed_count":150,"created_at":"Fri - Sep 24 15:55:50 +0000 2010","favourites_count":6702,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34701,"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\/1234576016410017798\/5sqGHxqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234576016410017798\/5sqGHxqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194622014\/1481055735","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234516253269643264,"quoted_status_id_str":"1234516253269643264","quoted_status":{"created_at":"Mon - Mar 02 16:29:45 +0000 2020","id":1234516253269643264,"id_str":"1234516253269643264","text":"And - Saudi Arabia reported its first #COVID19 case on Monday. The patient traveled - from Iran, through Bahrain then t\u2026 https:\/\/t.co\/4jyJSDAC7J","truncated":true,"entities":{"hashtags":[{"text":"COVID19","indices":[36,44]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4jyJSDAC7J","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234516253269643264","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234515550027468804,"in_reply_to_status_id_str":"1234515550027468804","in_reply_to_user_id":365216346,"in_reply_to_user_id_str":"365216346","in_reply_to_screen_name":"WilliamYang120","user":{"id":365216346,"id_str":"365216346","name":"William - Yang","screen_name":"WilliamYang120","location":"Taipei, Taiwan","description":"East - Asia Correspondent for @dwnews. Words also in @BuzzFeedNews, @Guardian, and - @qz. @TUKleincollege alum. hao-wei.yang@dw.com Views are my own.","url":"https:\/\/t.co\/fJHMDVU4t9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fJHMDVU4t9","expanded_url":"https:\/\/williamyang.contently.com\/","display_url":"williamyang.contently.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24854,"friends_count":4455,"listed_count":779,"created_at":"Wed - Aug 31 01:49:04 +0000 2011","favourites_count":23788,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10760,"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\/1127864499103457282\/7aWTvhGy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127864499103457282\/7aWTvhGy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/365216346\/1399600388","profile_link_color":"2FC2EF","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"},"geo":null,"coordinates":null,"place":{"id":"00180402799fed03","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00180402799fed03.json","place_type":"city","name":"Taipei - City","full_name":"Taipei City, Taiwan","country_code":"TW","country":"Taiwan","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[121.457132,24.960508],[121.66582,24.960508],[121.66582,25.211004],[121.457132,25.211004]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518557263831040,"id_str":"1234518557263831040","text":"RT - @WHO: @DrTedros @MohamedBinZayed \"We appreciate that people are debating - whether this is a pandemic or not. We are monitoring the situat\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[3,7]},{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[9,18]},{"screen_name":"MohamedBinZayed","name":"\u0645\u062d\u0645\u062f - \u0628\u0646 \u0632\u0627\u064a\u062f","id":471010707,"id_str":"471010707","indices":[19,35]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175594809,"id_str":"175594809","name":"Nadine","screen_name":"NadineNonny","location":"","description":"\u201cNothing - makes the earth seem so spacious as to have friends at a distance; they make - the latitudes and longitudes.\u201d... Henry David Thoreau","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1438,"friends_count":57,"listed_count":17,"created_at":"Sat - Aug 07 01:43:07 +0000 2010","favourites_count":106,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":119844,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526882353176907777\/8zPd0Wda_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526882353176907777\/8zPd0Wda_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175594809\/1440857110","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:40:32 +0000 2020","id":1234503866085003272,"id_str":"1234503866085003272","text":"@DrTedros - @MohamedBinZayed \"We appreciate that people are debating whether this is - a pandemic or not. We are monito\u2026 https:\/\/t.co\/2HjfRarI6h","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[0,9]},{"screen_name":"MohamedBinZayed","name":"\u0645\u062d\u0645\u062f - \u0628\u0646 \u0632\u0627\u064a\u062f","id":471010707,"id_str":"471010707","indices":[10,26]}],"urls":[{"url":"https:\/\/t.co\/2HjfRarI6h","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503866085003272","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234503746530500608,"in_reply_to_status_id_str":"1234503746530500608","in_reply_to_user_id":14499829,"in_reply_to_user_id_str":"14499829","in_reply_to_screen_name":"WHO","user":{"id":14499829,"id_str":"14499829","name":"World - Health Organization (WHO)","screen_name":"WHO","location":"Geneva, Switzerland","description":"We - are the #UnitedNations\u2019 health agency. We are committed to achieving - better health for everyone, everywhere - #HealthForAll","url":"https:\/\/t.co\/wVulKuROWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wVulKuROWG","expanded_url":"http:\/\/www.who.int","display_url":"who.int","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5601267,"friends_count":1716,"listed_count":27213,"created_at":"Wed - Apr 23 19:56:27 +0000 2008","favourites_count":10494,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":48212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D0ECF8","profile_background_image_url":"http:\/\/abs.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\/875476478988886016\/_l61qZdR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875476478988886016\/_l61qZdR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14499829\/1582794472","profile_link_color":"0396DB","profile_sidebar_border_color":"8C8C8C","profile_sidebar_fill_color":"D9D9D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":96,"favorite_count":184,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":96,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518557234515968,"id_str":"1234518557234515968","text":"RT - @DeAnna4Congress: What was @SpeakerPelosi busy with last week that she didn\u2019t - schedule a vote on coronavirus funding?\n\nShe said they\u2019ll\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeAnna4Congress","name":"DeAnna - for Congress\ud83c\uddfa\ud83c\uddf8vs Nancy","id":16740433,"id_str":"16740433","indices":[3,19]},{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[30,44]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160072794,"id_str":"160072794","name":"G-ma","screen_name":"terrilee3","location":"Texas","description":"MAGA\/KAG - support President Trump!!! I love my family, my God and my country! I am a - wife, mom, grandma and animal lover! No dm\u2019s please!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":398,"friends_count":484,"listed_count":0,"created_at":"Sun - Jun 27 03:31:45 +0000 2010","favourites_count":43991,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4935,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/721206842613870592\/DNUCRkyu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/721206842613870592\/DNUCRkyu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160072794\/1564785201","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:18:45 +0000 2020","id":1234498385257721861,"id_str":"1234498385257721861","text":"What - was @SpeakerPelosi busy with last week that she didn\u2019t schedule a vote - on coronavirus funding?\n\nShe said they\u2019\u2026 https:\/\/t.co\/OZNoEtCLnN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[9,23]}],"urls":[{"url":"https:\/\/t.co\/OZNoEtCLnN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234498385257721861","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16740433,"id_str":"16740433","name":"DeAnna - for Congress\ud83c\uddfa\ud83c\uddf8vs Nancy","screen_name":"DeAnna4Congress","location":"San - Francisco, CA","description":"\ud83c\udf1fCongressional Candidate vs Nancy - Pelosi (CA-12)\ud83c\uddfa\ud83c\uddf8Republican\/Christian #MAGA \u27a1\ufe0f - See my PLATFORM, Donate. Join me in the fight of our lives!\ud83d\udc47\ud83c\udffd - I check DMs","url":"https:\/\/t.co\/sY6W5RWYWZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sY6W5RWYWZ","expanded_url":"https:\/\/www.deannaforcongress.com","display_url":"deannaforcongress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":138995,"friends_count":63334,"listed_count":424,"created_at":"Tue - Oct 14 16:08:50 +0000 2008","favourites_count":26438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":12534,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D11A29","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\/1225268456162902016\/uow_e0Da_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225268456162902016\/uow_e0Da_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16740433\/1577728148","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5FAC2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3470,"favorite_count":6694,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3470,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518557171515394,"id_str":"1234518557171515394","text":"RT - @frasesdem3rda: Coronav\u00edrus, prepare your anus... https:\/\/t.co\/4a3JiWtpgv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"frasesdem3rda","name":"frases - de m3rda","id":2803925250,"id_str":"2803925250","indices":[3,17]}],"urls":[],"media":[{"id":1234494453005590528,"id_str":"1234494453005590528","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHOKhSWoAAsj4l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHOKhSWoAAsj4l.jpg","url":"https:\/\/t.co\/4a3JiWtpgv","display_url":"pic.twitter.com\/4a3JiWtpgv","expanded_url":"https:\/\/twitter.com\/frasesdem3rda\/status\/1234494502376742912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1138,"h":1200,"resize":"fit"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1138,"h":1200,"resize":"fit"}},"source_status_id":1234494502376742912,"source_status_id_str":"1234494502376742912","source_user_id":2803925250,"source_user_id_str":"2803925250"}]},"extended_entities":{"media":[{"id":1234494453005590528,"id_str":"1234494453005590528","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHOKhSWoAAsj4l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHOKhSWoAAsj4l.jpg","url":"https:\/\/t.co\/4a3JiWtpgv","display_url":"pic.twitter.com\/4a3JiWtpgv","expanded_url":"https:\/\/twitter.com\/frasesdem3rda\/status\/1234494502376742912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1138,"h":1200,"resize":"fit"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1138,"h":1200,"resize":"fit"}},"source_status_id":1234494502376742912,"source_status_id_str":"1234494502376742912","source_user_id":2803925250,"source_user_id_str":"2803925250"}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1032661351397838848,"id_str":"1032661351397838848","name":"Barbosa","screen_name":"JoaoB079","location":"Fafe, - Portugal","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":162,"listed_count":0,"created_at":"Thu - Aug 23 16:10:26 +0000 2018","favourites_count":3244,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8598,"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\/1223496414950543360\/RiGkqJ7K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223496414950543360\/RiGkqJ7K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1032661351397838848\/1580539250","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:03:19 +0000 2020","id":1234494502376742912,"id_str":"1234494502376742912","text":"Coronav\u00edrus, - prepare your anus... https:\/\/t.co\/4a3JiWtpgv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234494453005590528,"id_str":"1234494453005590528","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHOKhSWoAAsj4l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHOKhSWoAAsj4l.jpg","url":"https:\/\/t.co\/4a3JiWtpgv","display_url":"pic.twitter.com\/4a3JiWtpgv","expanded_url":"https:\/\/twitter.com\/frasesdem3rda\/status\/1234494502376742912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1138,"h":1200,"resize":"fit"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1138,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234494453005590528,"id_str":"1234494453005590528","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHOKhSWoAAsj4l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHOKhSWoAAsj4l.jpg","url":"https:\/\/t.co\/4a3JiWtpgv","display_url":"pic.twitter.com\/4a3JiWtpgv","expanded_url":"https:\/\/twitter.com\/frasesdem3rda\/status\/1234494502376742912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1138,"h":1200,"resize":"fit"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1138,"h":1200,"resize":"fit"}}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2803925250,"id_str":"2803925250","name":"frases - de m3rda","screen_name":"frasesdem3rda","location":"Cona da m\u00e3e.","description":"","url":"https:\/\/t.co\/4XfwICsKYL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4XfwICsKYL","expanded_url":"http:\/\/bit.ly\/ReportaAqui","display_url":"bit.ly\/ReportaAqui","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":138735,"friends_count":19,"listed_count":87,"created_at":"Thu - Sep 11 16:28:39 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4060,"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\/1035594270567288832\/TWTvcAnR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1035594270567288832\/TWTvcAnR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2803925250\/1571068246","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":176,"favorite_count":816,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":176,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518557150478336,"id_str":"1234518557150478336","text":"RT - @TeamLouisNews: Everyone travelling through Europe for Louis\u2019 tour, make - sure to double check the status of your flights every day until\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TeamLouisNews","name":"Team - Louis News","id":41494279,"id_str":"41494279","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2813238024,"id_str":"2813238024","name":"Lads - lads lads","screen_name":"Donnybanter","location":"india","description":"Louis - tomlinson is a top lad and will redefine indie bops.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":182,"friends_count":132,"listed_count":1,"created_at":"Tue - Sep 16 14:53:44 +0000 2014","favourites_count":2563,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1150,"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\/1233481844630392834\/fO84_xxs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233481844630392834\/fO84_xxs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2813238024\/1582919990","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:06 +0000 2020","id":1234518353060024320,"id_str":"1234518353060024320","text":"Everyone - travelling through Europe for Louis\u2019 tour, make sure to double check - the status of your flights every day\u2026 https:\/\/t.co\/XJwG7xcWJr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XJwG7xcWJr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518353060024320","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41494279,"id_str":"41494279","name":"Team - Louis News","screen_name":"TeamLouisNews","location":"","description":"LT - Team here to provide timely updates and promote singer, songwriter @Louis_Tomlinson - \u25df\u033d\u25de\u033d","url":"https:\/\/t.co\/J1mSEH2jLQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J1mSEH2jLQ","expanded_url":"https:\/\/www.louis-tomlinson.com\/","display_url":"louis-tomlinson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":33011,"friends_count":46,"listed_count":307,"created_at":"Thu - May 21 00:56:54 +0000 2009","favourites_count":7329,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9191,"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\/1234610772564725760\/qrKdwlkJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234610772564725760\/qrKdwlkJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41494279\/1583189461","profile_link_color":"D63125","profile_sidebar_border_color":"0048FF","profile_sidebar_fill_color":"001C29","profile_text_color":"2799D6","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116,"favorite_count":490,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":116,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518557100314624,"id_str":"1234518557100314624","text":"RT - @romyellenbogen: Good morning Tampa Bay! What questions do you have about - coronavirus and the recent positive test? Let me know so I can\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"romyellenbogen","name":"Romy - Ellenbogen","id":4847449552,"id_str":"4847449552","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":916015667425550338,"id_str":"916015667425550338","name":"A - Lawyer","screen_name":"mtlawmiami","location":"Miami, FL","description":"Surviving - the Storm is Enough. You Shouldn''t Have to Fight Your Insurance Company Too. - My personal opinions - not the firm. Duh.","url":"https:\/\/t.co\/ashiG7JIme","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ashiG7JIme","expanded_url":"https:\/\/www.mintztruppman.com\/","display_url":"mintztruppman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2119,"friends_count":4979,"listed_count":14,"created_at":"Thu - Oct 05 19:02:08 +0000 2017","favourites_count":124789,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":121362,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092947739384651777\/BBWnwUqp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092947739384651777\/BBWnwUqp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/916015667425550338\/1516131622","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:06:23 +0000 2020","id":1234465071843115008,"id_str":"1234465071843115008","text":"Good - morning Tampa Bay! What questions do you have about coronavirus and the recent - positive test? Let me know so I\u2026 https:\/\/t.co\/JTFyBRxOcG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JTFyBRxOcG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234465071843115008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":4847449552,"id_str":"4847449552","name":"Romy - Ellenbogen","screen_name":"romyellenbogen","location":"","description":"Fellow - @TB_Times. Alumna of @UF, @thealligator. Overthinking email etiquette since - 2009. She\/her. Talk to me: rellenbogen@tampabay.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1196,"friends_count":618,"listed_count":36,"created_at":"Mon - Jan 25 23:58:46 +0000 2016","favourites_count":3077,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1364,"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\/1204829323221450752\/yZI_DuG6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204829323221450752\/yZI_DuG6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4847449552\/1581947624","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234313797566914560,"quoted_status_id_str":"1234313797566914560","quoted_status":{"created_at":"Mon - Mar 02 03:05:16 +0000 2020","id":1234313797566914560,"id_str":"1234313797566914560","text":"BREAKING: - Two people in Florida have tested positive for the coronavirus, Gov. Ron DeSantis - announced Sunday night.\u2026 https:\/\/t.co\/fg0zUDslwF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fg0zUDslwF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234313797566914560","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14304462,"id_str":"14304462","name":"Tampa - Bay Times","screen_name":"TB_Times","location":"St. Petersburg, Florida","description":"Florida''s - largest and best newspaper. Have story ideas or tips? DM us. Become a subscriber - \u27a1\ufe0f https:\/\/t.co\/z5LQiiKg5l.","url":"https:\/\/t.co\/zir2MZGEOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zir2MZGEOQ","expanded_url":"http:\/\/www.tampabay.com\/","display_url":"tampabay.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/z5LQiiKg5l","expanded_url":"http:\/\/subscribe.tampabay.com","display_url":"subscribe.tampabay.com","indices":[94,117]}]}},"protected":false,"followers_count":275667,"friends_count":5744,"listed_count":2848,"created_at":"Fri - Apr 04 17:14:50 +0000 2008","favourites_count":11870,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":211876,"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\/1066713591246725120\/wFmoB0Xs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1066713591246725120\/wFmoB0Xs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14304462\/1579280865","profile_link_color":"208E75","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":378,"favorite_count":323,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":19,"favorite_count":44,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234313797566914560,"quoted_status_id_str":"1234313797566914560","retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518556643074048,"id_str":"1234518556643074048","text":"RT - @darhar981: \ud83d\udea8Calls Grow to Quarantine \n#SenChrisMurphy, After - Secret Meeting With Coronavirus Carriers From Iranian Regime.\nAlso present\u2026","truncated":false,"entities":{"hashtags":[{"text":"SenChrisMurphy","indices":[42,57]}],"symbols":[],"user_mentions":[{"screen_name":"darhar981","name":"Sandpiper\ud83d\udc51\u271d\ufe0f\u2721\ufe0f\ud83d\udc15\ud83d\udc08\u2764\ufe0f","id":187936720,"id_str":"187936720","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1114167564198973441,"id_str":"1114167564198973441","name":"kim","screen_name":"kim47957498","location":"","description":"\u201cDarkness - cannot drive out darkness; only light can do that. Hate cannot drive out - hate; only love can do that.\u201d -Martin Luther King, - Jr.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":210,"friends_count":448,"listed_count":0,"created_at":"Fri - Apr 05 14:07:02 +0000 2019","favourites_count":23732,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18916,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197717490463395841\/uFf6WQJt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197717490463395841\/uFf6WQJt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1114167564198973441\/1573347257","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:30:35 +0000 2020","id":1234501364379738114,"id_str":"1234501364379738114","text":"\ud83d\udea8Calls - Grow to Quarantine \n#SenChrisMurphy, After Secret Meeting With Coronavirus - Carriers From Iranian Regime.\nAls\u2026 https:\/\/t.co\/A0USHOqWzC","truncated":true,"entities":{"hashtags":[{"text":"SenChrisMurphy","indices":[27,42]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A0USHOqWzC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234501364379738114","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187936720,"id_str":"187936720","name":"Sandpiper\ud83d\udc51\u271d\ufe0f\u2721\ufe0f\ud83d\udc15\ud83d\udc08\u2764\ufe0f","screen_name":"darhar981","location":"USA","description":"\u2022Conservative - \u2022Loves Dogs & Cats \u2022Phila Eagles \u2022Jesus \u2022ProIsrael \u2022CCOT - \u2022MAGA \u2022NRA \u2022bluelivesmatter \u2022Veterans \u2022kindnessmatters - \u2022coffeelover\u2022\ud83d\udeabList \u2764\ufe0f\u271d\ufe0f\u2721\ufe0f\u2615\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88319,"friends_count":28346,"listed_count":67,"created_at":"Tue - Sep 07 14:43:38 +0000 2010","favourites_count":409756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":475775,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198643778590060545\/qd2xswm6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198643778590060545\/qd2xswm6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187936720\/1488589266","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1815,"favorite_count":1750,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1815,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518556420653056,"id_str":"1234518556420653056","text":"RT - @AlisonKIRO7: We went to Life Care Center of Kirkland and found these signs - outside. There are about 50 people who have symptoms that co\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlisonKIRO7","name":"Alison - Grande","id":146250468,"id_str":"146250468","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3311873384,"id_str":"3311873384","name":"Evan - Madden","screen_name":"Tanukireader","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":262,"friends_count":710,"listed_count":0,"created_at":"Mon - Aug 10 22:40:56 +0000 2015","favourites_count":14473,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18097,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1002320900186755072\/0a0eyII6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1002320900186755072\/0a0eyII6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3311873384\/1528828401","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 21:13:03 +0000 2020","id":1233862773014028288,"id_str":"1233862773014028288","text":"We - went to Life Care Center of Kirkland and found these signs outside. There - are about 50 people who have symptoms\u2026 https:\/\/t.co\/RxFjrJGVik","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RxFjrJGVik","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233862773014028288","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146250468,"id_str":"146250468","name":"Alison - Grande","screen_name":"AlisonKIRO7","location":"Seattle","description":"l - am an Emmy Award-winning reporter for KIRO-TV (CBS-Seattle). Local girl telling - stories in my hometown, world traveler, coffee lover. agrande@kiro7.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7889,"friends_count":1228,"listed_count":239,"created_at":"Fri - May 21 00:04:58 +0000 2010","favourites_count":2374,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":10402,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564868000512086016\/j94nS1wl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564868000512086016\/j94nS1wl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146250468\/1470679172","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":377,"favorite_count":499,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":377,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518556370440193,"id_str":"1234518556370440193","text":"RT - @FRANCE24: With only three official cases, Africa''s low coronavirus rate - puzzles health experts https:\/\/t.co\/ilWFQXIvEx https:\/\/t.co\/AXb\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FRANCE24","name":"FRANCE - 24","id":1994321,"id_str":"1994321","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/ilWFQXIvEx","expanded_url":"https:\/\/f24.my\/6ERq.t","display_url":"f24.my\/6ERq.t","indices":[99,122]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2945616360,"id_str":"2945616360","name":"YOUTUBE - @LANI 1X","screen_name":"lani1x","location":"","description":"","url":"https:\/\/t.co\/3KUrmv8aSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3KUrmv8aSX","expanded_url":"https:\/\/www.youtube.com\/channel\/UCA70KqxOG44a4YG9tPAJ6sQ","display_url":"youtube.com\/channel\/UCA70K\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1746,"friends_count":1697,"listed_count":1,"created_at":"Sun - Dec 28 01:32:33 +0000 2014","favourites_count":52117,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31879,"lang":null,"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\/1227701387250851841\/2AHP4N7C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227701387250851841\/2AHP4N7C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2945616360\/1580424263","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 13:58:33 +0000 2020","id":1234115814720077826,"id_str":"1234115814720077826","text":"With - only three official cases, Africa''s low coronavirus rate puzzles health experts - https:\/\/t.co\/ilWFQXIvEx https:\/\/t.co\/AXbz4XKIgO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ilWFQXIvEx","expanded_url":"https:\/\/f24.my\/6ERq.t","display_url":"f24.my\/6ERq.t","indices":[85,108]}],"media":[{"id":1234115812425785344,"id_str":"1234115812425785344","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/ESB1yvNU4AAQQpg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESB1yvNU4AAQQpg.jpg","url":"https:\/\/t.co\/AXbz4XKIgO","display_url":"pic.twitter.com\/AXbz4XKIgO","expanded_url":"https:\/\/twitter.com\/FRANCE24\/status\/1234115814720077826\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1240,"h":698,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234115812425785344,"id_str":"1234115812425785344","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/ESB1yvNU4AAQQpg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESB1yvNU4AAQQpg.jpg","url":"https:\/\/t.co\/AXbz4XKIgO","display_url":"pic.twitter.com\/AXbz4XKIgO","expanded_url":"https:\/\/twitter.com\/FRANCE24\/status\/1234115814720077826\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1240,"h":698,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1994321,"id_str":"1994321","name":"FRANCE - 24","screen_name":"FRANCE24","location":"Paris, France","description":"\ud83c\udf0d - International News 24\/7, 4 languages: @France24_fr - @France24_en - \ud83c\udd95 - @France24_es - @France24_ar \ud83d\udcf1 https:\/\/t.co\/xgsitPcWaY \u2709\ufe0f - https:\/\/t.co\/vMl5qdX1G8","url":"https:\/\/t.co\/voM2SW5JHQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/voM2SW5JHQ","expanded_url":"http:\/\/www.france24.com","display_url":"france24.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/xgsitPcWaY","expanded_url":"https:\/\/f24.my\/app","display_url":"f24.my\/app","indices":[102,125]},{"url":"https:\/\/t.co\/vMl5qdX1G8","expanded_url":"https:\/\/f24.my\/contact-us","display_url":"f24.my\/contact-us","indices":[130,153]}]}},"protected":false,"followers_count":3301458,"friends_count":453,"listed_count":10735,"created_at":"Fri - Mar 23 09:40:48 +0000 2007","favourites_count":1159,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":333901,"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\/875646402247901184\/N4GGER3R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875646402247901184\/N4GGER3R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1994321\/1496153302","profile_link_color":"00A7E3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CADAEB","profile_text_color":"013D83","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4321,"favorite_count":11153,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4321,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}],"search_metadata":{"completed_in":0.077,"max_id":1234518564557721604,"max_id_str":"1234518564557721604","next_results":"?max_id=1234518556370440192&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1234518564557721604&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:56 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:57 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/989209800549457920/hdDxycwE_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1192' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:57 GMT - Last-Modified: - - Wed, 25 Apr 2018 18:27:29 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/989209800549457920 - X-Cache: - - HIT - X-Connection-Hash: - - e2552a97b38be689476d72d35e62fdd2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:57 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1131974376730054658/gbW1MS7k_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '86556' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:37:57 GMT - Last-Modified: - - Fri, 24 May 2019 17:22:57 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1131974376730054658 - X-Cache: - - HIT - X-Connection-Hash: - - cb151400e0270ed4abc1de8baee23a26 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '7779' - body: - encoding: ASCII-8BIT - string: !binary |- - iVBORw0KGgoAAAANSUhEUgAAAEkAAABJCAYAAABxcwvcAAAdjklEQVR4Xu1cB5QUVdb+qjpOd08ODMmAqCRRMOEKgooLCgZYMcDquq6AWQzHgIgoq4ACiiJBcFVUBAOICgoCIqAIsgZE0iIgaZg8Palz9f/dV93QjIOOTPOfPf/5r+dR01WvXrjvhu/e90otug9R/D/9JmnHgklRtmgYde8CFot5jcizo+xV1zlojW1E6j459CzZdEyYBA4WKXXuyeBrYDJHnkmdo+nZD/M9d+yaSD6WehansZR0JkXJjOoaDd9vsXNlo+ZEeC8U0nBexwAcTmDDFiuqfDqswqiGkGZKp4XttW0Vht0axervHXDYD7VvGBrOODUIjyfKSdVtoHGUVCYZVAE9FbhnZBqmvJEGqzOqJCZYqWFQ/yq8/JQXTqrcmQNysXGzHXZXtF61rEuiQtK2h/XnTyrF2ecGceM9mXj3IzfsaaLbQNivYeigSkz+ZyWMalP1kkVJa0rsjOYCfvjOitfmuxGOaAiFNfgrdLRuHcSY+6vgdEBNyBfQEazVUU1pqm1AqWHxyd9+XbVpp6o9+6AXJ7NdaV/uSX+vf+DBt/+2qnEou5ckShqTRB00OzBrgQuVRVZKiaHE3k6VGHlbJZq3MhDyaapHZVzlz9j190q8vlwtMmLatpZsb9Qdlap91Q/7qy624o0P3dBs5niSRUlhkqiMlVJSulvD8nX8w2oOMkymnE47dM3lfkS8vG0xR65UzDh0/b0STaivJs/2wxUaru7rR6cz/Kof834Un39jV+OQ8TRElRtCSbFJItoW2qK1X9nQdVAeIhQRZUdoJ557tBTDhtbCqDlkJ4rLaMjDMQn5AyTVMzNAgw3T/lHtXpjhwj2js6HT/gmjdING/a0idPlTCJGqmOQ1kpLDJA7YkgbMfteJQUPzYM2OIExvAzJi00cFaNOGFYIwVYaXJWscKKvUYbc0UC00U5pstijOPyOInBwDRoi3KS1btljQ7vKmSrpEUsMlFrw1vQgDB1B6Kw9hs8ZQUpik7BFd+9iXPHjkn1mwZpJJQR05mWFsW1iIzGwD0ZBZV+PKtrm8Cbb+SHFwm57pd0k4Sz6n0L1/OrUEF1wQQLjaVPHyUh2n9M1DSZkNVruBcLkFY0aU4eE7qhH1/3FprY+SIIwx4mQrq01RUePi7+xMw1zJOstg4z1dVt5qXn+vWORqM987bNJRkZQosjNMZqtHWmwcDWF+Ayl5TIpTfBIiXUdYxQCBpRGk2w6a198rEbkGCCeCMQNdh1Q/8ftH6LMxlBQmqfGxpTQPTG8U+11KD6TwSp2BN8kOIy8/jPwmvDagNIldm+cRbdMuJTIkQtsn/Uh/6rYRG0f8dxIoKTZJeZp0Gu65McOdE1HgTuzI5oU03KdGEA0kSFZjlkZGK3wSSRXDvdWCtn1ouC11DPe1fhiEHfp/i+GOQ4Cvv7Kj26DcQxCAKjJlVCluu4kQoBbKaMv9KW+7sa/ECgdxTUM7F8zjJHAceFktjj8+ggiZbiGynva6C7c9TgjgMCGAJRLFqtnFhADB/y4IIBPQ6ayKinRcfEs2Nv7ohM1DhF2to0c3H5a/VQKDEbogbGHUSZfmY8cGvkBv1SADKxJIOGFh/WUzitG9RwAhxoNWxnIX3ZCDFStTDvbX4TQ/ls0sRV4eYQJhRzJiuCQ0YQ5EVjbvOAPdOnFkQeEGVJiy9jsHln9hV5KmVJDkSYmqSTncBmwNKHa5sn6aO+YtCSdsqVEsX2nH2m8dqh/FSPYr/cs4ZDzJYJBQkpoxSQDf9ZfWIkXAJHGShbjFV2nB0zNS4SewE3cucuuliw5VWRDwWhBqQAnGruVsK0gGGYQDtWxP2pX2pR/pT/q9jv2rMCaJlBR1i5NSuxTgqlszseDjVOipZpAbIVMeG1aOJx+uVmmMvz6ciV07rWYo0ZAJiZSITSJgHX+/F526hjBilAdPTcpUKig5LKNKx5V9q/DBtHJTtZO4/EllUjwT8NNmC/40sAmqasTlmFG6IO4XiITvHEwLTlWISuwmE2kgronSU0p0D3q0yS+7cDeRvYr2lb3SkOqO4KvZhWjflp40aDqIZFES+W0OzCAD2neM4KlhFYj6VEhl2if+cffoLDw+jqpHr6e5Jeaj2glQ5CSjkV8XuS/PI2Gzvp8B8+NjU1U7qmHNvEg/0p/0K/0nk0FCSZUkIZEmaVDsz+2j0jB1ZjosmaZ7FtWK1mq4uHsthg+pwkVdg2a+u9aUrLokjAXdvOSul6+24+npqVi20gWNXi0OJyLlGm67xUuoUUmmmoL5X88kIRU6WCT8AG4dmY7XZ6dBo+0QYCfPDNoonZ7qUsKDPt39uKSLH62PF7CV0AjV6+dfdCz52omFXzjxyaoUGDU6dMlhi8QKwwkDbhxUielPeuEQVRSVTDKDhI4Jk4REakQS5Dr8uVQ8Mz1dJesF20iHakuIuAYpBtLTDGRlSNhhwEPjXM3ofR8xV1mFFd5K1vGxeEz3r0wQpVE2GR4c4sXT91UpqTpo444BHTMmCSlvJ9JBY/veh048PikNm34iF0RdaNBtLGKXIqJqgqFkJFKUzrAwzJAMgET6kseOsoAMatfejyfuqcTVV/iVE1Bh0TFikNAxZZKQmrcwi2CyYI+O19534cW3PSgosJqgUyZnN1VRivBG3pGJS1F1BCawTtOmYdx1fTVu+kstmrYkoq4ypecYaNhhdMyZFKcwJ2ylEInd8RZr+GCZE/OWpWDbThsOlFlQ4dXNjUdhiDCOddPTDeRnRXDqiSH0v9iHKy/2IyM3qmxP2C8B7eF9HCv6X2OSkKifGFbltSSU4CTL9mnYSmC5v8hiInGqno3P02mgm+UJg8LIam4yRlLAYntULvsYqlddajCTEpNdMlH18zfeTPQy8brxe8rDiXfi31bxSsIwuYpkxPVN7JQUMiZML6mC4zp6VV8fB0nqJ/yMU31JO6G6bSfSbzIp3qBqIHHl4m/8RsMq+RZnTLwk3ou3F40xTWyQ+ttMs0jSX95R2CfOoHiJvyqqWbePgw9jz+W2FutX+qxPAmU+sbr10W8ySXUqq8yV9Angi9WULR1fwLQz8byz/C3PxU6IKqSI/aFXk2R8jc90+alEzTrvSwLOJ/YnRvKe3W7mvCWRJtKze7+upKdFcxM/Sagh70iAK31KPw4BoqK6fOZnES8Zlwg771sFiMrkpVBSQ5xDmVeeHuKmSLSMNUO2y4/AiSMySWKiID3LyMkezHzfgwriFZUS4b1PZhRixnsefEmgVxHSqA4aOzHUJJVd4e9cGt37bq7E3dfX4poHMrF2vQPr5hVg8eoUjHohHYWM3uNMDVVoGDeyAg/cVY035zgxks/3FqqABqccF8K4B8rRp3cItw9Pw/xFblSFzVBF0rkj7/DixgF+XHpTFhZ/5oY9PYIwnzn4+lmnBTBtZDlOaRfBs1PcmPxGKmqCusqVCwnuing1XHl5DebMKEeoxLSHdaleJsX30YY/lYoxz2ai05/8OP+cAHRyPULuDe5XhSFPZGLdVy4MvK4KaVlRzF3gQnmxjit61yI3I4q3F7pQy5WTjcLhjNZXrnVg4csFuGVkLg7QSA+5tgp2p0i/hhoi5+v71yiJvfiGPOQ2MTB4QBUCnMxUTkzQ9Ko5B/D8m1ywmRnoy/5lMvM/dCOvZRi7lxVg+jtubNpmR4rLIOTSsH2HBZ/w+eWs+8jganS7ronCZC3I9Oa5YZUbl0UPVmnoeaEPz46qQriifo/5KyaJXZC4q6RMw3nX52HnDjumji7BlZcE4KsRWyHqFkXf27MpHSmo/H4PPK2Bbj1z8eU3dvz4cQHadzNw09/TMevNdLw8oRjvLvZg6TcOzJtYhL8+nMs+oviGk27RlPiIf3uaQqlUvxuz8MF7qZg9owjX3+xThnv0Ux6MfDIHjw8vQTHjtKlTs7F+yT507hzCKZfkUS1t2LtsH3I4Bt9eoNRrgZXj27jFgv7DcpFBiR4x2Iuh9+Yh68Qg3uV4epwXRshnSpLYKREKuziOI9CvzJiyO2RSQaEFNX4dETY05MlsNOncDCd0b4bmZzXH1z9Y4JCcMiVLXHeQIiurLq8WFFsR8krqwjScph2LwvBpaEO8c9OVVfCVW9D+smZI79wcqR1bolmnfCxdaEdhiRgbAx1ODiNQoiHI0rlNCJrFwPa9NlTX6pCgZi/7lLz6v54ox/xJJXA5GcPdmgEX22p5flM0PbsZLrm5CarIMJ1SlZdNLrgj8FZY8CLjyLHTPRj7ihvPvubG0jV2M6bUD9ncuvQrJiltZZt5BHGSeJdhPcqVeHNaKV4bz/JSKdqeZNDumKsgoYVs88SP4slvKQcxkWYacvOECfDiE5VY8mYh3ppYirdfLMWo+8tRsMOBCbM8SHEYVGkdRaW0KcRJcvZoT6EstYbM1IiSYGlPdkUkp971/BAuvTaA9T9Z8SbV7fhWIbw6qRRvsN0XHitDDm1WGVX5wrODeOg2L+1pVEnqo6NyMOqpXAx/PAe9qYYPPMMAXNSsoUwyjTPQ5Pgoo3MfjAodm3fY4OYEsjMjNMhhpbcSrCZmFRXuSfgtqyK/5b6suqyU7I8tWGxHFe1AmieCdFcErpSo8j7pDGAH/LlG1b9nTAYWMtZ7f54TT05JR9Ru4IoefuVVo2xIMZ9jfH6GC0+PdmMfpd7MPwFptEm5DJYz0yJqp0SMuM0u+aYqbFlSiO+X7sc3i/fhp1X7cM/d5YwNNbyzxIUdOy3Ks9Z3EuVXTBIS1yuue8x9Xlx7fSUWr3Ki3+05uPzOXPQZnItN23Wqk6H23uMu10FpsoskyG/ltUR0JHKnZLE4KO6lZPi94zLQn+1IW5cNycWDEzNwwkkB3MJ4bOj1ftxxezn27bOi75AcXH13DnRO/pmRZbjkwqAJGyxhNXlJrr0yz41HJ2Ti5OPD+NvAapQWW/CXuygdt+ThhkdyUFIq44woMGpxyrY7F4bMy6KdcmUZ1BaDiyeaIIw4ghihHsMdJwW+xB1y0hs2WYkvdBP0sZxxagi7Cywo4b2unYJIof1Z/4ON7h84s10YGZlR7OTK7C7S0YYTKCiRJL5O+xLEzv0Sfpiy7bRJ81G0Zp2sluqW2d93Fmz92QZf0OA7YXToaKi4btdeXb1/AY22ZAf+NCgbX29IwfaFBWjVOoKfNlngl8OlqlV6LoXd5KxmCM++6sa0NxhYV1kOakFYUjC1Gm64oRKzJlYcMTd+RCYJxQ2ZJqAt0TXKioo3ECbKiVoRUQFu0oEMkhMdP9ODuXNSMfqxUvS+NKjqvjMnBWPHZ2L4g+U4/ZQgrrsvmw6MNqhMVyAxL4tR/qBq3H5nLTavteCaIdnocn4Q056qUIDx1QUpeOMDN7bsslONgEraGyf7XTf7AEa/nIbVK1ywZ5m7x046lu5n+jB1pBffb7XhzP55HKeOtm0ClCTT6bicBs7qEMSDf69GZnZU5eHjmpFI9fDtEMXhfoR4R876SAmzSJAp98KCXmOrH6kxn4ldkN/b91ixfqMThTTCEfHmVcABiv93m+zY9osV++ihviV22r5bV6dyu3T0UzqtuGNENraQQaKaGzc7sG2XTe3ZjZvpxuC7crFuox3ntPejy+l+eAQTRcxxtqPn7Ng+gNNOCaFz2yDtl4GXZ2Tg5scy6IE5TYLXvKYRfPB8CVYvLcaXi4rx2UelGDO6CpnEeYLR6mOQ0G8ySUjeExsgmEKKGG1pTO4lAq/473hHspI60aeAvvgzpfu0ASkOUTXxUFF06+zHvLdLsfCNMgwlgATd/CaqmnhMjXUFyXv3a5g5n94v08DcCaX4aG4ZFk4pQ9uTaacCAgo1jHi0Gh/PKsHscaWY93wppo8sQUaLID79MgX52VRngsii3Vb0G5aDXn1z0LN/Dq66JgvTp6Uob35Y3FeHfpdJR0vKfsVwktgxVWLeTnk+mPeCDGFCBImRGoY2su2tSRxo2j9RCWFy4QFdYaj8lnT5XQMIlZonScRzKSfDuo8+kQp3++ZwndYC2qktcN7ApqiosiomdqC9mvBwOU4+JYD9JVas/s6BL791YMFCN259JBsTXnerw/P1fWUgdMyYJAsjExBsIxuWEtiqk7IJKxbHUeL95CB7OOZ+44OSZ8JUOb/tckZRWaUr1G1j2CP3hFLdUaz+1oaJM9KQSlz1zwcr8PTDFXh4cCUyMyKKgRGWmwb7sW1lIQ58XoDSVftR9u0+3PkPL3SfFYspbWJjxcjXR0lnkkiHZA7yiXINdjrnEze+WG6jUbUROtgOk2r5O5FpwlSLSEb8uSbZBg35BK9dOwdQyhBpyKhMLCbWWkakLNvewvhKSqGf2CudwW2fC/y4uqcfvRhvupwRpeI79+gYNcqNUeOJsl914dnXXRg7w4O1Pzrpc6I4Lj8Us63xng+n3/Ruf4TiKiQiK5KzeYsV196biU2bKELWWBeyJIQCY54ow/lnBHDBFU3Q9SIfVswtVXHaYxM8GDM+B7OnF+G45kF07ZuPC3v5sXROCbZv0TF4RBZW/tt5yIaQgS56s49fKsb411OxaLG42BjX5ZMNyRScGMbk4aXod2uu8m4HSaSWDD6ZXva9iWU0+mHzFEo9wpQUJqldEYEDknuScUiLnEsVA86vf3Co43/CPInvJD17docQTmgWplF1oEWTCDqfKzlZYPc2Het+cqh9OFGvhascOLFZBKefFVZMDNJ7fvFvShBjMtMxSN4oij93DyhwuYLP5MsBGY/YOtn3EyTfqW0Ia763s4tEXTff7dwuiBYtDbXrciTj3Wgmqf01wvkaivv7ix1YttaJPTS01bUW5aKPJzNOOzmEAZSIlu1No+Mv0NBraBZVRYwvmVljjk6SX25il8oaXYUyabQ3kvsJcYVffrwCHU8PmdiMKrRpvQXvfebC1h0W7CJ0ENWUFEgrTviy833o1j10cPdXHY+u+9WUkMycz4+Ej+LUKCYpCeLEft5uwcD7s7DuB1EF9uav0yMnDq78yDsrMOLOapQV68g/qxkHH8MQcVuQaDhFXQSwih7TSK98owhduwVRTc/22KRUTJqZbqqMv45ZlbQvb/XoVoNXx1agZYuIuYEgz+rOVDPVqz6UnUhHzSSFxi2y26rhiluzsGK5GxrjuWb5YfTt7kNWmmwoAj9ut2LpmhREwrpC568+V4IbrvThyjuzVBKs7gpKu4KRConCv9ngVNG5GOflrxShy0UhTHrOhWEjGNOlycalgT7danHqiabvLiRY/ZRx5gG6eVAae/WqxvsvlSNFvGoMdB4NHTWTlBQRW6xdY0OXa5pQouhd3GG8TyB3YY+gKeJsOUjezJjlwr1jM9VBq1atgljzVjHSM2PH9RIGLgOJciYafXb/+7KwaJlbIeF/DKzE1HFe+IiNLh2ajTXrTAD4ECXzyQerYIsbcjaw8T8WXHVHDnb+Ylftz59WhKsuDxz22cYfpaN8LUYc1J4iTsqQ89ZAk1yDRlky8rHwxDBt+dBBtejYxnSzP2+z45uN8hWTHBTlc0es8G/JSzuJgZ55zYNFS+TTSOA0esGxD1QqUCkpFpGWqGAa/icOwJZBmy5GN9Znh3Mi+GvfGrX7IlL49qcuxej6vFZDqXFM4tuZqVF1wMrmksjfhilz3QjWymYApYiDrmWkIWi2RZOQeaiBAxe0K8ZSoW+J1CPm3prUW7jIjicnp0Ojyrk8Ebw8sgw5TaIqqE5xmiDSIraIgGrGe278spGek2IUFOGVPgk2258UojMxlIlb84MpUY2ZaePUjRJwoFDHudfkYvcvDlgl4IyablcCzIPEAXq9OiEApYDYZmC/Srw1wXvQq6i8OiVp1y86LvpbLnbus0MLRzFxRBmG3VarAmcVL1Iohj2ehkmTM2DPjyDIttwpBlzCOC123FkzoYa3ysL2NaQRYP5n4X7k5cFcpKOQqKPmr+i3YJP8pgYmj6hARnqYk9HVIa0KuuTCXfZD5Wc7/DWWg0dj/KIeQjE7IgMXN3/bExnYyfqCifpdVoPbb6pV2QUJkFVVStz9g2vQtWctgsUWBSZrSq0o/sWGA/G+dtpRURjL6mumnRPUfiQM1BA6akmKk7ws5yS30mB+sdaO/XTvwYhsFJkkEueknZ2zKAVbaI9A+/X3ayrxr7FeteEokmf1MEAdm4qnJ2UoI3bCcUF89WYxmjY3DvuSQGEytuUlDFj+tQObd8hmhTw0K4hnlL2/LTsEQ3mUJGVkRrBr8X6GLLH3Y+P6I9RoJgmpLwJk51UkpW4kLb8zgd4DsrB4qWzhAuMfLcP9Q2sQppRYOfgFHzsw4O4cFevZiY/mTSlG755B83lisg8J6F6ERTQ6cfTSF/k863Un/vZIDr2khnZt/dj4QfHh9f4gHbW6JZJFXFhMdVQGM16E0oANa6xYz3BDYjo5c939LDl+C3UUZxdDkTtGZxIz6eqA+n2DvejdJ6gYoI7q1CHFIClKhHGoL5mJMI6MfUc8mkQ6ZNplXQOxCP9QG3+UGi9JHNy+Ah1FVDOVE09oTba8f/zZhpdme7CFtkIAXu/e1VjwYply+SGO/89DsrFilUtNuMf5tVgyqxQr1ziwd48FzRnS9Dg7qE6eKFUhM6oqNezYa26Rx0lsnWwS7C+2Uq2dmP+Zm/V1MtTAt+8VokOH8BHz1w2hRjFJtorlsPkdw1MxZWo23RqXL5Sg9XHpkhWm7cjJD2HxzBJ07iT+nmCQduiZKenKS+ZkhfHFa8Voc24EXXvn4Esi+HMvqMXSV0rgIcwQhtqomos+taHPrXRVAd2UoLgTjfcljJC/ybRxj5XhwdtqlF1TVY7GICFJ6qbsBl2whfBfYrS6xe6M4HJK0JJXitH5DBNUvvOBA89O46ytBKLEAJMeqUCbdhF6R3ODUypJIq4uqVRwvJ/E/uRvp5kSbts6gFcY/jxwS83Bo89HyyChRklSfNvpx80WehSbykKqpFuMhHnpqQZaMcjMzzPU3pfhNxd84QoHCujGBfA1zY3gyh4BEy/JIdSPnNhKYCpbTf0v8anzB8pg81pUqOHrDTa1LZRIokqSXjmuaQQtCEtccpRGQKRIWiMYJNQoJh2kRGOaSCKnYtTF69CgqlAhNmB1DkkkUN4R5B1z9fHMgmpPjG8cU0lVYWLcs8XVSz2I/RYSpsRCFGmvMRIUp6QwSWUlEwcam0wNDfdnNML5ORF0oZopqCCTZD31qVWMSWKQ1UlbkiBvdXBUUkdxzxWXBqkXC4olw6BO7MojthmW+zHQKf8kgTcHKSk2SVZLBqjONcpvDr6WTBj4UAYWrbLjoYlp9HAudeaphECwuFhTIYbEW3JCrpTxlqiSCnPoKb1eTbl/eS7eTBjm92nYu1e+CAA+YZsPT/So/TiJ16Q9OdUWP1eZTAYJJUWSEkm5aq5sNQ1wz39k49zTQujQOoSz2ofU/zJIAmCxPbJruuxrJzbt0FHBOOv26xijhQzM+sit9vfuvbEa85Y4sWWXFX27+9Ve3LbdNlzbqxYr19vx6VdOzB1Xhnc+c2HvAQuuutjHmNB/+Le+SaKkSFIiqU8YDNmcBKY8ypiOwe7rH7qw+EsH3byBTm1C2M7JfsXo/HuGKZ3bR9CpXRjvf+bE8QxDOp4cwgbeX/+TnXVS0K9nABf1CKmzTaJ2Cz53oV3rCK66MIBNjNW+/NZKxxDCR5874KvSlBQ3BjjWR0lnkhhe+Q7twAEd9z+Thm5nBnFOhxBWfGNXHyjLvnx+ThiBgHlooX0r+aYkolIrY2emqgNa2RkGn0ueO4qLuwSxgd5s5jw3PVcYIbXPb7CeJPyjrKMrr3oGmS8nW5SNS7IkJV3dhOLQYO5CJ1feATfty7031KiU7CerHZSuiNrBKC6zUJLCKKMNOlCkweHQlXtP53M54bb1FysG9Aqo1MdLc1zIIJyQ/byzTwti8uxU3NKvGus2ObDxPzb0vcCPPhcHfjepfzR0TJh0kBiryQd7KkWikvo0tIQCdtm5qBsIx7yXJOzscrBLQKCorsAGCUtk8nE0zRJP4Mnf4tmskshMOPacTDqmTFKYJ+bmlRqK55GJi6TVrYzYfbEpCXjq4H1hUGykib/j76gvleprNAl0TJn0f4X+B/RXQtUmrtFJAAAAAElFTkSuQmCCICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portland,%20OR&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:57 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/866452619220328448/8VyoTlo4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '394224' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:57 GMT - Last-Modified: - - Mon, 22 May 2017 00:34:16 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/866452619220328448 - X-Cache: - - HIT - X-Connection-Hash: - - 8b1a2f994fb44be265f2a2ab87e75533 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4QAFABYAAAAkABJhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAgMBAAAAAAAAAAAAAAAEBQMGAAECB//EABsBAAEFAQEAAAAAAAAAAAAAAAEAAgMEBgUH/9oADAMBAAIQAxAAAAFhWbpV9DyRMIzpUh9z4RBubEodT4RaBaX6BjNCpjbq9FyRssCy5WCw3T2h4ZhFF76B890tqs3lzCZegnUMG5D6oPVLJfqmrJ/PpGreY0Od6L7SN05SmA9xqbJgJwMEYLYDMRn3QlVlGTygCVqttRwr5gJ2GdKyCP/EACYQAAEEAgEDBAMBAAAAAAAAAAMAAQIEERIFExQiIzEzQRUhJET/2gAIAQEAAQUCv0h9rhYWFhYWFhYWFxz/AMcxvCeFhYWFhYWFhcVbFafkBxZV6xDyIGcFqtVqtVqtVULMUySDYpDrTaDHYyegaItVqtVqtU0m16rsq3LWRwmAZ64rE6aJYpXCT440YV6cykNxxht0pqPi02d3/egbJhJ+TKYU7E9+I5s9OJucaTn56Aqv5zlUztrIkYtEnjHLqEn6k2bOMOe285W7BDE3USRZFf1uo+KUmNBnh0xl8WmN0erF09OTv2UkwvCdRnk1SOBVWi8acnXYl1NSOJSkVnE83f1ky+/uPsJf6TfK3sH5V//EACARAAICAgICAwAAAAAAAAAAAAECAAMEEBESICExMkH/2gAIAQMBAT8BzKgpDDxtrFq9TLcY1xkZfnZ09St6j4tanmHFVvr4Ej9nZRONMIQNf//EACERAAICAgEEAwAAAAAAAAAAAAECAAMEETEFEiFBFCAy/9oACAECAQE/AenXlwUb19cTKNb9wmPmi086iWo/5M3NwcxbNSvM7DsHzKc620HU+a6eHiV7MZe0bmvYlIcnxDU55is0BMqMDNxN7n//xAAyEAABAwEFBQYFBQAAAAAAAAABAAIRAxITISIxMkFRYXEEECCBocEjMDNCkTRSYpLh/9oACAEBAAY/Ah2igIjaHynUqrXQ2QfdFp3fJc47btR5YlMeD/FWWR5rM0jx26boKvnRlh5CLqJJjRY1CeqvH2Gt6+KdI4qGuIG/mgy8LfiT/iZXDbN4M/I8V8Rl5d/a4x5prezmxVOrY91awdyCsbPMqRn6L6b/AOqjbUQsdJWR5V3VbaI38USzKCFdVG3rC7ecQsaJH7Ycic4fuB4r9T6Lkua95VoLH0XIrHUKnpkWbSe6zMorLoiPuj8q83aEIAtc4DHRC1h7KaXaKax7TSJ5FfUarI371Nr0UWypa50rKVOBRwpnCdpQ6oB0RAJw4Bb/AMeEpvRVOqd3/wD/xAAnEAEAAgIBAwMEAwEAAAAAAAABABEhMVFBYXEQgaEgMJHBsdHw8f/aAAgBAQABPyEYhabiuT7QAQ7mGreRzkm4JV9n+FSmAs2Ye5KBEbb3NfH8Stul2qJ8vh9YHmYbtTiC7RQ+ByQ7dZFvwxbIOacvXSvOU8fp41FdhuZTIHYOJVaAvuz9Icmhidv5TK3X0Lw9odzcai/CGR3kyTgYWhCAh611P+giFRTS3qFlj2cSngqGhvGcficzB6/KFBQjfEFWvb3G6hky+VT8wshDqL4Tsfxik74Mvd30E0GsbGBBaK0czIdXO5SUYJiWvRATAW63XMrN8y+ZbmEAVtozPt76sQsHyyQRY3C4/pHVVR5Qyn2JxCLMnruN3DuyriRZHUfbXoYGAOyLmhPiOiHxEwC6kSflJdR47zEAUM4Jq8JAGR3qlekHq38bP9PM+Q/U/wAPM/d6f//aAAwDAQACAAMAAAAQdSlOfhl9OrKOR1s424MHUBnCu//EAB4RAAMAAQQDAAAAAAAAAAAAAAABESEQMUFRYZGx/9oACAEDAQE/EFIxP6UpS6ZFUjflbeiDMHo2CrkQtlhihlOuxnbSEMlVIQkMMgaUE8ieYNJH/8QAIBEAAwABBAIDAAAAAAAAAAAAAAERMRBBUYEhYXGx8P/aAAgBAgEBPxB/FeHwQhCG/wCWfaKZp6PPT3KvkhJGk3MgORsLCLzx1uR1V/cCfJoh2+AfIfQzqNsqyMZdGSr6HshOf//EACYQAQACAgEDBAMAAwAAAAAAAAEAESExQVFhcYGxwfAQkaEg0eH/2gAIAQEAAT8Qxr0WcVc2nf8Az8PCD6f4S3SX6S8GrzqkAC2AzbMQNc5PD0Ts7ngTwnhPCeE8I9k8YXdu5gCGEFVlYgFWTNmei9YZywl/ScvYiNE2g4GmX6TTUtLTwnjD7gKtYNqtdMR0KkLbWrKyLh7eZUwGQqi6TqWXym4DGOlXPrjmXgjn8tFBvX7izcPZLS34LtMs0ftTG6QWlzoc59pgdIrRiXt4VR1qNSyAMlqpdUDB1b3D11MsQaq2zliqsl1jhtzmnpOtwk03iD136RORKIaK475lRZq0GvZy+k+o/EsKVoL2UOodwA06Dr2iG7kVkU5D0hdVpgNCm/2hsb8FFWixq91nUUUGC211ZoOPBBXqqcy7O7bTDrTQRHdKN+JXuJRtYAvdtxoZ9l+I3QoNFZ5uW4RsfYvOeM8zXaMxl2y5mLTzpxvtziFFOIXsZ9PeFDYjOc4cQefGxWQ1afalvT1ql056sUftlsgQKKUYTtQT7gimU2C09e3SMp1NMh1FjwawNkHhrr0jDtIKw6rFwqPX2yByc4UgYNhdaLgLbWNalhagXvx2u4I2vYb+y1PkAFBVr6cYn1n/AFF9kDmpvURNWCwS3xcK0qzQIRWM0HxMCAqpydWveNN5Epmxet+sSnEKlKtq28aThISB0sdgJ1N/vcJOoAk2wtKvfM7f18z5M2eJw8nvNHn4n1+0fs7Pwl/QRq+tfj//2SAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Portland,%20OR&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Minneapolis,%20MN&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:57 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1228443627493502981/uoP_3e3F_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '90499' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:58 GMT - Last-Modified: - - Fri, 14 Feb 2020 22:17:18 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1228443627493502981 - X-Cache: - - HIT - X-Connection-Hash: - - 4a271b5b9afd42de8c3d28b7342d3a80 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:58 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Minneapolis,%20MN&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:58 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:58 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234518334965764110.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="61be5b2f74b2211fc0d17e84a6c59a45", - oauth_signature="Zks%2FTSYwFyO7iEqB9%2BUdpjMW7uA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257078", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2767' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:58 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:58 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325707862802863; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:58 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_2Qy4ZKf2uLEPMCBAFhD95w=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:58 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 7214fd30a27ab5824d803a0aad7265b3 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '865' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '123' - X-Transaction: - - '008c8746006aad5f' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:38:01 +0000 2020","id":1234518334965764110,"id_str":"1234518334965764110","text":"Gov. - Walz: \u201cPreparation is not panic.\u201d #coronavirus","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[39,51]}],"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":1234518032401207303,"in_reply_to_status_id_str":"1234518032401207303","in_reply_to_user_id":172788180,"in_reply_to_user_id_str":"172788180","in_reply_to_screen_name":"rljourno","user":{"id":172788180,"id_str":"172788180","name":"Ricardo - Lopez","screen_name":"rljourno","location":"Minneapolis, MN","description":"Senior - political reporter for @MNReformer, a @StatesNewsroom outlet. Alumnus of @latimes - @StarTribune @Variety @MyDesert Email: ricardo@minnesotareformer.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5479,"friends_count":2641,"listed_count":237,"created_at":"Fri - Jul 30 16:21:51 +0000 2010","favourites_count":3265,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13636,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228443627493502981\/uoP_3e3F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228443627493502981\/uoP_3e3F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172788180\/1411221649","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"},"geo":null,"coordinates":null,"place":{"id":"60e2c37980197297","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/60e2c37980197297.json","place_type":"city","name":"St - Paul","full_name":"St Paul, MN","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-93.207783,44.8907521],[-93.003514,44.8907521],[-93.003514,44.992279],[-93.207783,44.992279]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:58 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Minneapolis,%20MN&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:58 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1228443627493502981/uoP_3e3F_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '90499' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:58 GMT - Last-Modified: - - Fri, 14 Feb 2020 22:17:18 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1228443627493502981 - X-Cache: - - HIT - X-Connection-Hash: - - 4a271b5b9afd42de8c3d28b7342d3a80 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:58 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234518032401207303.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="48b7b8cd8ad3901ccbb37a55d1757280", - oauth_signature="5zaE4nqm6egWBFhF7ODoVTeIsfo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257078", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '3048' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:37:59 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:37:59 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325707952662531; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:37:59 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_COGXrphmJ2CwHNaqnmuqtw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:37:59 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - bfa0532442f1ba395cfa1c808a96a556 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '864' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '124' - X-Transaction: - - '00856e830074356c' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:36:49 +0000 2020","id":1234518032401207303,"id_str":"1234518032401207303","text":"MDH - Commissioner Jan Malcolm says state labs are now ready to conduct #coronavirus - confirmation tests; \u201cIt\u2019s likely\u2026 https:\/\/t.co\/mYR7rQslnW","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[70,82]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mYR7rQslnW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518032401207303","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234516197963632641,"in_reply_to_status_id_str":"1234516197963632641","in_reply_to_user_id":172788180,"in_reply_to_user_id_str":"172788180","in_reply_to_screen_name":"rljourno","user":{"id":172788180,"id_str":"172788180","name":"Ricardo - Lopez","screen_name":"rljourno","location":"Minneapolis, MN","description":"Senior - political reporter for @MNReformer, a @StatesNewsroom outlet. Alumnus of @latimes - @StarTribune @Variety @MyDesert Email: ricardo@minnesotareformer.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5479,"friends_count":2641,"listed_count":237,"created_at":"Fri - Jul 30 16:21:51 +0000 2010","favourites_count":3265,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13636,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228443627493502981\/uoP_3e3F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228443627493502981\/uoP_3e3F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172788180\/1411221649","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"},"geo":null,"coordinates":null,"place":{"id":"60e2c37980197297","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/60e2c37980197297.json","place_type":"city","name":"St - Paul","full_name":"St Paul, MN","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-93.207783,44.8907521],[-93.003514,44.8907521],[-93.003514,44.992279],[-93.207783,44.992279]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:59 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Minneapolis,%20MN&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:37:59 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:59 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1228443627493502981/uoP_3e3F_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '90500' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:37:59 GMT - Last-Modified: - - Fri, 14 Feb 2020 22:17:18 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1228443627493502981 - X-Cache: - - HIT - X-Connection-Hash: - - 4a271b5b9afd42de8c3d28b7342d3a80 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:37:59 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234516197963632641.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="3acfc5810b9309d9087162435b0e3772", - oauth_signature="ageBs%2BBpTsHOFCWEBevc2dSp2Xk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257079", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2994' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:00 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:00 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325708042303656; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:00 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_wSYm0sPt0RpEYlF/peer4w=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:00 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 45c5e1bf4ddd949922116b755ab9b660 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '863' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '125' - X-Transaction: - - '00748269005ae2cd' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:29:32 +0000 2020","id":1234516197963632641,"id_str":"1234516197963632641","text":"Gov. - Tim Walz and legislative leaders are minutes away from briefing media on the - state\u2019s #coronavirus preparations\u2026 https:\/\/t.co\/r6HpNHah2j","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[90,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r6HpNHah2j","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234516197963632641","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":172788180,"id_str":"172788180","name":"Ricardo - Lopez","screen_name":"rljourno","location":"Minneapolis, MN","description":"Senior - political reporter for @MNReformer, a @StatesNewsroom outlet. Alumnus of @latimes - @StarTribune @Variety @MyDesert Email: ricardo@minnesotareformer.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5479,"friends_count":2641,"listed_count":237,"created_at":"Fri - Jul 30 16:21:51 +0000 2010","favourites_count":3265,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13636,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228443627493502981\/uoP_3e3F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228443627493502981\/uoP_3e3F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172788180\/1411221649","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"},"geo":null,"coordinates":null,"place":{"id":"60e2c37980197297","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/60e2c37980197297.json","place_type":"city","name":"St - Paul","full_name":"St Paul, MN","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-93.207783,44.8907521],[-93.003514,44.8907521],[-93.003514,44.992279],[-93.207783,44.992279]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Minneapolis,%20MN&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1228443627493502981/uoP_3e3F_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '90501' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:00 GMT - Last-Modified: - - Fri, 14 Feb 2020 22:17:18 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1228443627493502981 - X-Cache: - - HIT - X-Connection-Hash: - - 4a271b5b9afd42de8c3d28b7342d3a80 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/606593170382544896/6mXB5Wam_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '44251' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:01 GMT - Last-Modified: - - Thu, 04 Jun 2015 22:45:36 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/606593170382544896 - X-Cache: - - HIT - X-Connection-Hash: - - 831a1d6114482a9f3c1b287ea0f2750a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2083' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mills%20Park%20Middle,%20Cary,%20NC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:01 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/523552270026158080/QifGZF_S_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1186' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:01 GMT - Last-Modified: - - Sat, 18 Oct 2014 19:10:42 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/523552270026158080 - X-Cache: - - HIT - X-Connection-Hash: - - ceae6173bfd52102d7f9afc62fc6d491 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '1731' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mills%20Park%20Middle,%20Cary,%20NC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:01 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Padang&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:01 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1221794185218379776/D5ZIjd9M_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '180188' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:01 GMT - Last-Modified: - - Mon, 27 Jan 2020 13:54:48 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1221794185218379776 - X-Cache: - - HIT - X-Connection-Hash: - - 9182f3c42419d24a3d0a29c0892b5886 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1224425172725309440/NBVYYn3R_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '126872' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:06 GMT - Last-Modified: - - Mon, 03 Feb 2020 20:09:24 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1224425172725309440 - X-Cache: - - HIT - X-Connection-Hash: - - 07a3adc3c73968481d8d44b92d07f106 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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ASBA/9oACAEDAQE/EJSn/8QAGBEBAQEBAQAAAAAAAAAAAAAAARAgETD/2gAIAQIBAT8QYZKwxzx//8QAJBABAAICAgICAgMBAAAAAAAAAQARITFBURBhcYGhsSCRwfD/2gAIAQEAAT8QJ0t3b4SgJbxtcf8APWIaEFMNfwui4WsweJByiUKPv3LJwAI0euSI6jpNW6fuK5ZL8X7jhx7hZbl+NzfD0hIPsXyQnSDQKw7zHUYpaBKS3E5gAg0S1Zqlq+IuJmtYnvxU3PY42wACwIb3V3yPVylFzkPqtxz678BWLbbwfep/1PzBkuv6i1GeKO4UKh9IKI7LkOyBSGYlilVi5aF4VRqnVQkgYwHEOyxlODQLr6qLa02Xcn7mY/o6PKHA7gfThCvQWuMwwoK+i1pEpHcu6dyoxl6nGEgrqz9oZ1FVBDDNXEHpWC3DXxLYOyKFkB8AEuamGlfQwbghPznI+pfqb06mCkfFRMwply6GXypTTD2/4Zj4GrDdRyND7lSkXGrNHcUmGCORv6l34uoTbmO3eefcyrWgCVTgNRdLMIC65a6fYe4lTqi7fxiIlqwTHlWLUv1KiQJyPIJQA137Yg1mGWhOa7qz7lSqm/gjDXg8s38f/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:06 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1233908457679544322.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="d06fe811abe1e67752bf1c22581c7095", - oauth_signature="0eaH7gpav6dWrVI6tDlN8WYFEvQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257087", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2389' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:07 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:07 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325708755268186; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:07 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_Kmn2HWcvYimmIDcLxJzpjQ=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:07 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 2ca5d30cff8666d8d2b551e55a415f8d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '862' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '135' - X-Transaction: - - 00a21a3400f2b326 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Sun Mar 01 00:14:35 +0000 2020","id":1233908457679544322,"id_str":"1233908457679544322","text":"Gianmarco - dec\u00eda que no pod\u00eda ir a ver a su abuela de 100 a\u00f1os pero si - tiene tiempo para estar sentado en un plat\u00f3 d\u2026 https:\/\/t.co\/DeHcapyiRg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DeHcapyiRg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233908457679544322","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":1206647129860648966,"id_str":"1206647129860648966","name":"malibu_fresco - \ud83c\udf31\ud83e\udd89","screen_name":"FrescoMalibu","location":"","description":"Estoy - aqu\u00ed de paso, solo disfruto para problemas ya est\u00e1 la vida. Luchador - de ideales, ecologista, y amante de los animales.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":967,"friends_count":2618,"listed_count":0,"created_at":"Mon - Dec 16 18:48:08 +0000 2019","favourites_count":13758,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10717,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232673612299198464\/rOHtNYLa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232673612299198464\/rOHtNYLa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":31,"favorited":false,"retweeted":false,"lang":"es"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1232673612299198464/rOHtNYLa_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '133154' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:07 GMT - Last-Modified: - - Wed, 26 Feb 2020 14:25:45 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1232673612299198464 - X-Cache: - - HIT - X-Connection-Hash: - - 887811a33dc0311353f4dc510001c8b6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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yak0/kBeeshm3QrgQfKG8GM2rH00P2wKSQBI+bjbdRg760Z7sg+sQbGgvuYnJ4hKFGdHB4NTAoTu8W0FujVy/gAIXk8rhSHrtOzTsfHjBUkU1h0sPkvbkCGvJvERWxWD085KQokD0rz13+voFQ5UCgRK0iI3Z4uEvONIKo7g2Py63cOswFcOXxcelSKBdaKThd83I1hlgN7KicevHvEWwis8lq/lPWESLySNoJxcBFThVAgvrf2xjVDGFyLz6Gf9n/WCgoQV5fnIIFIPpLzhA690AvvEoNd7PJ7XxjsXke1w+zYBMS6dwvHvD0xZgrxhVzSVaXb04c/7rP0/5Z/j+efv8/rneHFn+319KP8AX6+n/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1231891589229948929/zKMgYaGS_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '222049' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:08 GMT - Last-Modified: - - Mon, 24 Feb 2020 10:38:16 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1231891589229948929 - X-Cache: - - HIT - X-Connection-Hash: - - 76bb69a5affb7acc40093ec2df5ac73b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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rUYFSnk49MhoLGYiO6tDrARSRqU9/GUBdyd01gEU3yHC2E6OheC5OeRKNvGV/wCXE2u1VWNiLx2mJKQII11N0TXjEauIDN840CEIhO85rUXKmidYvGsEdAe+DYGRrt3844UVEQlvHGOddChzuZ/3mKUC9F+XAY/hmOT50gxVnGb+HXfOfnLtlDLR49DLouImOcrUdk9sBs0Um47uvOG9ESGT0/niEzeQuQATzi7AjKQKp0W42d0IC7QaX4xFEBvo55FwSLE1cK7Y4Uc9mPyYOmCGqeujvxgN7xAhWR8x/H0C5EvA18YCWPsY4TmFDRycbjjEoMCUkqOSauaDIoaDRKvrg0DaEHW02IB3k6TWoA6TR7ZoJVCuxvf3mVsYLO3Wfuv95a5FoRwdjl5jgRleg9zCcNoMJKKPIUjfbCbwo6Xy7yMVIEeeskQAN1xPyawii24pe/pVbh0Hxv8AjHwuxAXf2y35VrJXmF0v4wmFwDo+8wQ+5rzh1sdb5DeRLAgDxB5JvuZERjKyU30Gftn9ZrEONkTW8YfmUYZ8xXWzKseoE9+sj/GSViayGqHsytMV/wAxRERs4uCm3vFE7eFOc27A08e+f9t/mfE/t9bD4T+TP1Xrn8n9Z+r5z9TwZx+/+fT/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tamaulipas,%20M%C3%A9xico&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:08 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1010183760938057728/jrFksP7Q_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '98556' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:08 GMT - Last-Modified: - - Fri, 22 Jun 2018 15:30:31 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1010183760938057728 - X-Cache: - - HIT - X-Connection-Hash: - - 42939192dd5b794bd64c26ef48f3092e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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uTdx7mN1ofRVCpRiJzgFTivFAD7o/hz34cuCudwKiLv3iuKAplsSbAB84aT2j2MBAVdkK9YI8sNpLQ1qLVuFDzuCCWFEhOGdGPEPDAqIdkeZw+sZPxwQRK4xdNJzkg+BgZJWgQ3wG+M3jAdr1Uuw4z1f3gJpRsrmU1jzOhaEWEZMtpBEaJhohGdXBsajg9uh1U88Y2VQswUZOh12cZt5M/FBEtdGkjlCAuAsa9hLTb73jGC9buoVWdtXircRaq5HkD6H+me5x4cdaGKgkLfI4wx44iXIDQmXK0Y6ms4dYMhnQHegICuGdZSnOnnmBjkS+LSmx012qB2mT4a+5sFUa7YSGLwjRbPL7X9aPmFsPhupE2YbtfrLy4BUs2KNzi7sIXNt9BQcIFyPapBVdqtXb1nhcNC+Xy+3AAh/W//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tamaulipas,%20M%C3%A9xico&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:08 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1186710398386556929/2_jvgTp7_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '124317' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:08 GMT - Last-Modified: - - Tue, 22 Oct 2019 18:24:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1186710398386556929 - X-Cache: - - HIT - X-Connection-Hash: - - 9dfa882f2fd94303bb1d56ff539bb46a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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ND/NySLCHzZAM5JFqEYrHHe6YzjccGoHW2++aaGcAqgppY4LS+wKLt47+xSw8XArOMes1+sSygclh5AJGaF5uFThVsAhyOGSy+DdIa15npxi7EAC0IRRGyPLMDC3kJF0PRp7fW4aHNPCs3XVf3glUpi8QPWlhbABo7I3r+8IXrMySBSkabwRussCm+gPG8Iz8E7YD2GsmmUIRXjmXLly5+N/JkegZeEzfSmHGP8AgSC5bnWC/ukAJhyne/OWWI0JS7gYKeVJCHU9M57+X9OMrlz8sQWEb5QfJOMWG1OiKpOUeMJzBVzw9DDyIlxPZ5GjBkVHwNfg4P1nHvT85y/2xF66Lmhtr4+iPOT5yPORkZORkZORkececMOM6M7+x4+n/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Near%20the%20Wadden%20Sea.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:08 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234576016410017798/5sqGHxqC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '68662' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:09 GMT - Last-Modified: - - Mon, 02 Mar 2020 20:25:14 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1234576016410017798 - X-Cache: - - HIT - X-Connection-Hash: - - 8065b8209e90e3c0ba3f2798c7d84457 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Near%20the%20Wadden%20Sea.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:09 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1234518556370440192&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="739c0d0c766e1ff35f8a45c91d6cd3ed", - oauth_signature="lFcCaV7xK7CsIkRkMc18mp%2BNNEM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257089", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '564804' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:09 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:09 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325708977508333; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:09 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_u5NDFA+rn4CQQbpOT8aCPQ=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:09 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 16df5088f2833bc00f7328df0c529936 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '170' - X-Rate-Limit-Reset: - - '1583257471' - X-Response-Time: - - '259' - X-Transaction: - - '009b5c0d00426465' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Mar 02 16:38:54 +0000 2020","id":1234518556307443713,"id_str":"1234518556307443713","text":"RT - @JoaquinCastrotx: If reports are true, the CDC\u2019s premature release of - a quarantined patient carrying the coronavirus into San Antonio ra\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoaquinCastrotx","name":"Joaquin - Castro","id":231510077,"id_str":"231510077","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":982564830,"id_str":"982564830","name":"Denys - Zilm","screen_name":"dazilmz","location":"Bay Area","description":"California - Zilm family","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":546,"friends_count":1118,"listed_count":47,"created_at":"Sat - Dec 01 13:44:18 +0000 2012","favourites_count":171370,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":212249,"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\/378800000721146377\/655f2cba38bf08efcd19098f7d042c29_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000721146377\/655f2cba38bf08efcd19098f7d042c29_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/982564830\/1555849124","profile_link_color":"0D8585","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 03:28:55 +0000 2020","id":1234319748667670528,"id_str":"1234319748667670528","text":"If - reports are true, the CDC\u2019s premature release of a quarantined patient - carrying the coronavirus into San Antonio\u2026 https:\/\/t.co\/PWV1UVGt0p","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PWV1UVGt0p","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234319748667670528","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231510077,"id_str":"231510077","name":"Joaquin - Castro","screen_name":"JoaquinCastrotx","location":"San Antonio, Texas","description":"TX - Congressman; Chair @HispanicCaucus; Vice Chair @HouseForeign; Chair @HouseForeign - Oversight & Investigations Subcommittee; Member @HouseIntel @EdLaborCmte.","url":"https:\/\/t.co\/kGmhJFxmq0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kGmhJFxmq0","expanded_url":"http:\/\/castro.house.gov","display_url":"castro.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":223018,"friends_count":2112,"listed_count":2547,"created_at":"Tue - Dec 28 18:41:02 +0000 2010","favourites_count":6362,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":15870,"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\/1268126174\/Joaquin_Castro_in_2008_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268126174\/Joaquin_Castro_in_2008_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231510077\/1524233697","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1505,"favorite_count":3208,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518556169166855,"id_str":"1234518556169166855","text":"RT - @ActualidadRT: Un taxista en Pek\u00edn se protege del coronavirus con una - ''burbuja''\n\nUn taxista en Pek\u00edn fue filmado conduciendo con una \"bu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ActualidadRT","name":"RT - en Espa\u00f1ol","id":100731315,"id_str":"100731315","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1084850636,"id_str":"1084850636","name":"Carmen - Vazquez","screen_name":"karur13","location":"Estado de Mexico","description":"Trabajo - en transporte, me gustan los gatos","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":120,"listed_count":18,"created_at":"Sun - Jan 13 03:24:30 +0000 2013","favourites_count":16752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54456,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3101573263\/eb7ec8c1ddc951d5799bcd19bde4a918_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3101573263\/eb7ec8c1ddc951d5799bcd19bde4a918_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1084850636\/1397272214","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 01:00:00 +0000 2020","id":1234282273312329730,"id_str":"1234282273312329730","text":"Un - taxista en Pek\u00edn se protege del coronavirus con una ''burbuja''\n\nUn - taxista en Pek\u00edn fue filmado conduciendo con u\u2026 https:\/\/t.co\/zQukK0mR6B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zQukK0mR6B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234282273312329730","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":100731315,"id_str":"100731315","name":"RT - en Espa\u00f1ol","screen_name":"ActualidadRT","location":"","description":"El - primer canal de TV ruso en espa\u00f1ol con alcance mundial. Les brindamos - las noticias que realmente importan. Lo m\u00e1s relevante del panorama internacional, - en RT","url":"http:\/\/t.co\/NvQkmzIWCT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/NvQkmzIWCT","expanded_url":"http:\/\/actualidad.rt.com\/","display_url":"actualidad.rt.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3278380,"friends_count":69,"listed_count":12515,"created_at":"Thu - Dec 31 09:33:16 +0000 2009","favourites_count":199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":608359,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"005E15","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/979275073038225408\/LNizh4B9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979275073038225408\/LNizh4B9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100731315\/1552993338","profile_link_color":"5CBA1D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"042107","profile_text_color":"FFFFFF","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":554,"favorite_count":1350,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":554,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518556160778241,"id_str":"1234518556160778241","text":"RT - @FIGHT_2_KAG: TOP IRANIAN OFFICIAL DIES OF #CORONAVIRUS\ud83e\udda0\n\nHis - death comes after the gov\u2019t on Monday rejected help from Secretary of - Stat\u2026","truncated":false,"entities":{"hashtags":[{"text":"CORONAVIRUS","indices":[46,58]}],"symbols":[],"user_mentions":[{"screen_name":"FIGHT_2_KAG","name":"Nancy\u2019s - Fight 4 Freedom TEXT TRUMP 88022","id":454513795,"id_str":"454513795","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913416571548205057,"id_str":"913416571548205057","name":"\ud83c\udf38\ud835\udc6a\ud835\udc82\ud835\udc8b\ud835\udc96\ud835\udc8f\u2661\ud835\udc6a\ud835\udc89\ud835\udc8a\ud835\udc84\ud835\udc8c\u2122\ufe0f\ud83c\udf38","screen_name":"cajun4trump","location":"Baton - Rouge, LA","description":"I Love my Country, Cherish my Freedoms, Stand for - my Flag, Back the Blue, Honor the Fallen, Respect our Vets and damn Proud - to be an American! \ud835\udd4b\u211d\ud835\udd4c\ud835\udd44\u21192020 #LSU","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78816,"friends_count":51268,"listed_count":48,"created_at":"Thu - Sep 28 14:54:15 +0000 2017","favourites_count":67263,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":248139,"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\/1228717394480242690\/KQHT6wL9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228717394480242690\/KQHT6wL9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913416571548205057\/1582689584","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:45:07 +0000 2020","id":1234459721492389890,"id_str":"1234459721492389890","text":"TOP - IRANIAN OFFICIAL DIES OF #CORONAVIRUS\ud83e\udda0\n\nHis death comes after - the gov\u2019t on Monday rejected help from Secretary\u2026 https:\/\/t.co\/UleF4KEexT","truncated":true,"entities":{"hashtags":[{"text":"CORONAVIRUS","indices":[29,41]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UleF4KEexT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234459721492389890","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":454513795,"id_str":"454513795","name":"Nancy\u2019s - Fight 4 Freedom TEXT TRUMP 88022","screen_name":"FIGHT_2_KAG","location":"USA","description":"\ud83d\udd04RETWEETS - get SEEN\ud83d\udd04 \u2605 PATRIOT\u2605ProLife\u2605NRA\u26052A\u2605NAVY - MOM\u2605BuildTheWall \u2605MAGA\u2605KAG\u2605Schoolw\/\u00d8bama\ud83d\ude48 - \u2605NOT a BOT\u2605 FB:@DineshDSouza @GenFlynn @PragerU @DailySignal","url":"https:\/\/t.co\/BoWhMn5ex8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BoWhMn5ex8","expanded_url":"https:\/\/www.promiseskept.com","display_url":"promiseskept.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":77996,"friends_count":51653,"listed_count":304,"created_at":"Wed - Jan 04 02:38:05 +0000 2012","favourites_count":67715,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":137246,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230745224495820803\/RpeTIqDa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230745224495820803\/RpeTIqDa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454513795\/1582229353","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":177,"favorite_count":144,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":177,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518556160745480,"id_str":"1234518556160745480","text":"The - Coronavirus can live outside the body on inanimate objects such as paper, - metal, plastic, for well over a week,\u2026 https:\/\/t.co\/ibDzLsRMMA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ibDzLsRMMA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518556160745480","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4194694239,"id_str":"4194694239","name":"Jeremy","screen_name":"jeremy1971z","location":"Florida, - USA","description":"I live in Florida, my talent in life is inventing, I hold - Patents and Copyrights, my online hobbie is political writing in TRUMP TALKING - POINTS JOURNAL& Twitter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":370,"listed_count":2,"created_at":"Sun - Nov 15 15:09:36 +0000 2015","favourites_count":1488,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2877,"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\/935509039492091904\/WHIrGP5p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/935509039492091904\/WHIrGP5p_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518556160745478,"id_str":"1234518556160745478","text":"RT - @EmeraldRobinson: The ultimate cure for coronavirus: America First policies.\n\nCrucial - medicines must be made in the USA.\n\nOur borders mu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmeraldRobinson","name":"Emerald - Robinson \u271d\ufe0f","id":3932768472,"id_str":"3932768472","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":932120671823585280,"id_str":"932120671823585280","name":"Plague - Doctor John, MD","screen_name":"J_WellingtonIII","location":"Out seeking a - righteous cause","description":"All my childhood heroes were machines. And - Tesla (the man, not the car).\n\nRTs =\/= endorsement blah blah blah","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":234,"friends_count":667,"listed_count":0,"created_at":"Sun - Nov 19 05:37:40 +0000 2017","favourites_count":33335,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18402,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232887879971561474\/rwNg1vG2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232887879971561474\/rwNg1vG2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/932120671823585280\/1583024041","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:17 +0000 2020","id":1234518399109206018,"id_str":"1234518399109206018","text":"The - ultimate cure for coronavirus: America First policies.\n\nCrucial medicines - must be made in the USA.\n\nOur borders\u2026 https:\/\/t.co\/qZ4sGIFUpt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qZ4sGIFUpt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518399109206018","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3932768472,"id_str":"3932768472","name":"Emerald - Robinson \u271d\ufe0f","screen_name":"EmeraldRobinson","location":"Washington - D.C.","description":"@Newsmax White House Correspondent. Former @OANN. \"Politics - is downstream of culture & culture is downstream of religion.\" 127M Twitter - impressions in 2019.","url":"https:\/\/t.co\/pVMhoiuVK6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pVMhoiuVK6","expanded_url":"http:\/\/emeraldrobinson.com","display_url":"emeraldrobinson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":150381,"friends_count":12032,"listed_count":745,"created_at":"Sun - Oct 18 05:57:46 +0000 2015","favourites_count":13753,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1047149053677514754\/fbtPJUYI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1047149053677514754\/fbtPJUYI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3932768472\/1538494894","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":390,"favorite_count":1022,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":390,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555707740160,"id_str":"1234518555707740160","text":"RT - @SquawkCNBC: The lack of tests for #coronavirus is a \u201cnational scandal,\u201d - says @DrMattMcCarthy https:\/\/t.co\/4Fh7pCIFQR","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[38,50]}],"symbols":[],"user_mentions":[{"screen_name":"SquawkCNBC","name":"Squawk - Box","id":404422077,"id_str":"404422077","indices":[3,14]},{"screen_name":"DrMattMcCarthy","name":"Matt - McCarthy","id":1862822629,"id_str":"1862822629","indices":[81,96]}],"urls":[],"media":[{"id":1234461684720427008,"id_str":"1234461684720427008","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGwcfMXUAA3NfB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGwcfMXUAA3NfB.jpg","url":"https:\/\/t.co\/4Fh7pCIFQR","display_url":"pic.twitter.com\/4Fh7pCIFQR","expanded_url":"https:\/\/twitter.com\/SquawkCNBC\/status\/1234461782376419328\/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":1234461782376419328,"source_status_id_str":"1234461782376419328","source_user_id":404422077,"source_user_id_str":"404422077"}]},"extended_entities":{"media":[{"id":1234461684720427008,"id_str":"1234461684720427008","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGwcfMXUAA3NfB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGwcfMXUAA3NfB.jpg","url":"https:\/\/t.co\/4Fh7pCIFQR","display_url":"pic.twitter.com\/4Fh7pCIFQR","expanded_url":"https:\/\/twitter.com\/SquawkCNBC\/status\/1234461782376419328\/video\/1","type":"video","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":1234461782376419328,"source_status_id_str":"1234461782376419328","source_user_id":404422077,"source_user_id_str":"404422077","video_info":{"aspect_ratio":[16,9],"duration_millis":72873,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234461684720427008\/vid\/480x270\/0tTgir_DYbOp5iwU.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234461684720427008\/vid\/1280x720\/6v8N7NsTvvi2cMUP.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234461684720427008\/vid\/640x360\/-fg9tyLBpHcKPsww.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234461684720427008\/pl\/W1IoiMry0G-ztQ-O.m3u8?tag=13"}]},"additional_media_info":{"embeddable":true,"monetizable":false,"source_user":{"id":404422077,"id_str":"404422077","name":"Squawk - Box","screen_name":"SquawkCNBC","location":"New York, NY","description":"Start - your morning with Joe Kernen, Becky Quick, and Andrew Ross Sorkin - Monday - through Friday from 6-9a ET.","url":"http:\/\/t.co\/AMPUczhT7a","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/AMPUczhT7a","expanded_url":"http:\/\/squawkbox.cnbc.com","display_url":"squawkbox.cnbc.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":202349,"friends_count":554,"listed_count":2631,"created_at":"Thu - Nov 03 22:17:10 +0000 2011","favourites_count":1894,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":23025,"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\/1197996990644310018\/jBN0g0AI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197996990644310018\/jBN0g0AI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404422077\/1574459715","profile_link_color":"3473A3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E3E3","profile_text_color":"5E5E5E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4018056135,"id_str":"4018056135","name":"witch - hunter","screen_name":"ciajudene","location":"Oh","description":"Seeking truth. - Looking for the white hats saving the republic one tweet at a time. Passionate - democrat. Sick of misogynists and psychopaths. #resist.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1358,"friends_count":2179,"listed_count":2,"created_at":"Thu - Oct 22 16:37:06 +0000 2015","favourites_count":83750,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24728,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1051334875389792257\/a0dSB6qh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1051334875389792257\/a0dSB6qh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4018056135\/1571288301","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:53:18 +0000 2020","id":1234461782376419328,"id_str":"1234461782376419328","text":"The - lack of tests for #coronavirus is a \u201cnational scandal,\u201d says @DrMattMcCarthy - https:\/\/t.co\/4Fh7pCIFQR","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[22,34]}],"symbols":[],"user_mentions":[{"screen_name":"DrMattMcCarthy","name":"Matt - McCarthy","id":1862822629,"id_str":"1862822629","indices":[65,80]}],"urls":[],"media":[{"id":1234461684720427008,"id_str":"1234461684720427008","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGwcfMXUAA3NfB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGwcfMXUAA3NfB.jpg","url":"https:\/\/t.co\/4Fh7pCIFQR","display_url":"pic.twitter.com\/4Fh7pCIFQR","expanded_url":"https:\/\/twitter.com\/SquawkCNBC\/status\/1234461782376419328\/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":1234461684720427008,"id_str":"1234461684720427008","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGwcfMXUAA3NfB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGwcfMXUAA3NfB.jpg","url":"https:\/\/t.co\/4Fh7pCIFQR","display_url":"pic.twitter.com\/4Fh7pCIFQR","expanded_url":"https:\/\/twitter.com\/SquawkCNBC\/status\/1234461782376419328\/video\/1","type":"video","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"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":72873,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234461684720427008\/vid\/480x270\/0tTgir_DYbOp5iwU.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234461684720427008\/vid\/1280x720\/6v8N7NsTvvi2cMUP.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234461684720427008\/vid\/640x360\/-fg9tyLBpHcKPsww.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234461684720427008\/pl\/W1IoiMry0G-ztQ-O.m3u8?tag=13"}]},"additional_media_info":{"embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":404422077,"id_str":"404422077","name":"Squawk - Box","screen_name":"SquawkCNBC","location":"New York, NY","description":"Start - your morning with Joe Kernen, Becky Quick, and Andrew Ross Sorkin - Monday - through Friday from 6-9a ET.","url":"http:\/\/t.co\/AMPUczhT7a","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/AMPUczhT7a","expanded_url":"http:\/\/squawkbox.cnbc.com","display_url":"squawkbox.cnbc.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":202349,"friends_count":554,"listed_count":2631,"created_at":"Thu - Nov 03 22:17:10 +0000 2011","favourites_count":1894,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":23025,"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\/1197996990644310018\/jBN0g0AI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197996990644310018\/jBN0g0AI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404422077\/1574459715","profile_link_color":"3473A3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E3E3","profile_text_color":"5E5E5E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1811,"favorite_count":2838,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1811,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555682537473,"id_str":"1234518555682537473","text":"RT - @MajinBoochi: Coronavirus in NY? There''s only one person who can save us - https:\/\/t.co\/mlh1UtwaVm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MajinBoochi","name":"Boochi","id":1232473344026517504,"id_str":"1232473344026517504","indices":[3,15]}],"urls":[],"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234317952213803008,"source_status_id_str":"1234317952213803008","source_user_id":1232473344026517504,"source_user_id_str":"1232473344026517504"}]},"extended_entities":{"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234317952213803008,"source_status_id_str":"1234317952213803008","source_user_id":1232473344026517504,"source_user_id_str":"1232473344026517504"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374249738,"id_str":"374249738","name":"Raya.K - \u2728","screen_name":"RayaJanei","location":"Jersey City, NJ","description":"IG: - @raya.janei \ud83d\udc95","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1556,"friends_count":1402,"listed_count":1,"created_at":"Fri - Sep 16 00:01:31 +0000 2011","favourites_count":1942,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20620,"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\/1208857045128110086\/86rOgJ_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208857045128110086\/86rOgJ_1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374249738\/1577043714","profile_link_color":"9266CC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 03:21:46 +0000 2020","id":1234317952213803008,"id_str":"1234317952213803008","text":"Coronavirus - in NY? There''s only one person who can save us https:\/\/t.co\/mlh1UtwaVm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232473344026517504,"id_str":"1232473344026517504","name":"Boochi","screen_name":"MajinBoochi","location":"Clouds","description":"Haha - funny without the haha","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":15,"listed_count":0,"created_at":"Wed - Feb 26 01:12:07 +0000 2020","favourites_count":10,"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\/1232531852000452609\/yHmJCnSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232531852000452609\/yHmJCnSP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26768,"favorite_count":93826,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":26768,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555636445184,"id_str":"1234518555636445184","text":"RT - @ethanjsomers: Mike Pence: \"smoking doesn''t kill\"\nMike Pence: gay people - can be converted to straight\nMike Pence: let HIV\/Aids become a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ethanjsomers","name":"Ethan - Somers","id":752186490323472384,"id_str":"752186490323472384","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408842387,"id_str":"408842387","name":"Ilyssa - Danielle","screen_name":"ilyssa_danielle","location":"New York, USA","description":"Wanderlusting - bibliophile wizard.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":531,"friends_count":1476,"listed_count":18,"created_at":"Wed - Nov 09 23:31:57 +0000 2011","favourites_count":67718,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23530,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/818168575060049925\/foHHZDtI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/818168575060049925\/foHHZDtI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408842387\/1523063312","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:47:19 +0000 2020","id":1234460276159909888,"id_str":"1234460276159909888","text":"Mike - Pence: \"smoking doesn''t kill\"\nMike Pence: gay people can be converted - to straight\nMike Pence: let HIV\/Aids bec\u2026 https:\/\/t.co\/gCAj7Q323I","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gCAj7Q323I","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234460276159909888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752186490323472384,"id_str":"752186490323472384","name":"Ethan - Somers","screen_name":"ethanjsomers","location":"Washington, DC","description":"Chief - Operations @culturemediaco \u2022\u2022 Youth Coordinator @gunsdownamerica - \u2022\u2022 he\/him \u25ca \ud835\ude4e\ud835\ude69\ud835\ude6a\ud835\ude59\ud835\ude6e\ud835\ude5e\ud835\ude63\ud835\ude5c - \ud835\ude42\ud835\ude52 ~ \ud835\ude48\ud835\ude5e\ud835\ude68\ud835\ude68\ud835\ude5e\ud835\ude63\ud835\ude5c - \ud83c\udfd4 \ud835\ude3e\ud835\ude4a","url":"https:\/\/t.co\/dVsFttUezy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dVsFttUezy","expanded_url":"http:\/\/watch.ethanjsomers.com","display_url":"watch.ethanjsomers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18954,"friends_count":12752,"listed_count":33,"created_at":"Sun - Jul 10 17:03:29 +0000 2016","favourites_count":21784,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1691,"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\/1220841133607092224\/Vs0x60Bm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220841133607092224\/Vs0x60Bm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752186490323472384\/1582202322","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":151,"favorite_count":489,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":151,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555523198983,"id_str":"1234518555523198983","text":"RT - @rafampicin: El coronavirus llega a urgencias y le piden BH, QS, electrolitos, - PFH, TP, TPT, procalcitonina, EGO, hemocultivo y uroculti\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rafampicin","name":"Israfel, - the Plague Knight","id":72954107,"id_str":"72954107","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255097671,"id_str":"255097671","name":"Mario","screen_name":"_MarioSalg","location":"Jalisco, - Mexico.","description":"Medico Interno de Pregrado.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":501,"friends_count":388,"listed_count":5,"created_at":"Sun - Feb 20 17:32:08 +0000 2011","favourites_count":8207,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24866,"lang":null,"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\/477185419428126721\/1QtS2PuX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477185419428126721\/1QtS2PuX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255097671\/1412614114","profile_link_color":"89C9FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:00:37 +0000 2020","id":1234493819531472896,"id_str":"1234493819531472896","text":"El - coronavirus llega a urgencias y le piden BH, QS, electrolitos, PFH, TP, TPT, - procalcitonina, EGO, hemocultivo y urocultivo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72954107,"id_str":"72954107","name":"Israfel, - the Plague Knight","screen_name":"rafampicin","location":"Amaurot","description":"Peds - ID\/HIV \ud83e\uddeb Gamer geek retronauta \ud83c\udfae infectomemes e infectotuits.\n\u26a0\ufe0f\u2620 - Esta es una cuenta t\u00f3xica-cat\u00e1rtica \u2620\u26a0\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6035,"friends_count":576,"listed_count":15,"created_at":"Wed - Sep 09 21:20:22 +0000 2009","favourites_count":20619,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19219,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191790655896510464\/NE2Z-Ml7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191790655896510464\/NE2Z-Ml7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72954107\/1573318619","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":125,"favorite_count":789,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":125,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555493748739,"id_str":"1234518555493748739","text":"RT - @BrandonBeckham_: @arnoldsla @realDonaldTrump @drdrew \u27a1\ufe0f @AP fact - check confirms @TheDemocrats presidential candidates are falsely claim\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrandonBeckham_","name":"\u2600\ufe0fBrandon - Beckham, Esq.","id":338473859,"id_str":"338473859","indices":[3,19]},{"screen_name":"arnoldsla","name":"shirley - arnold","id":96059050,"id_str":"96059050","indices":[21,31]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[32,48]},{"screen_name":"drdrew","name":"Dr - Drew","id":14515734,"id_str":"14515734","indices":[49,56]},{"screen_name":"AP","name":"The - Associated Press","id":51241574,"id_str":"51241574","indices":[60,63]},{"screen_name":"TheDemocrats","name":"The - Democrats","id":14377605,"id_str":"14377605","indices":[84,97]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2436000564,"id_str":"2436000564","name":"kim - fike\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","screen_name":"kimfike12","location":"California, - USA","description":"#MAGA #KAG #MAKECALIFORNIAGREATAGAIN\n#MOLONLABE\n#BUILDTHEDAMNWALL!\n#ENDSANCTUARYCITIES\n#NRA\n#chronicpainpatient","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24825,"friends_count":27148,"listed_count":9,"created_at":"Wed - Apr 09 20:11:08 +0000 2014","favourites_count":341843,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":121138,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/966033450888192000\/8mY36aaX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/966033450888192000\/8mY36aaX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2436000564\/1519155296","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:14:27 +0000 2020","id":1234512403519246336,"id_str":"1234512403519246336","text":"@arnoldsla - @realDonaldTrump @drdrew \u27a1\ufe0f @AP fact check confirms @TheDemocrats - presidential candidates are falsely cl\u2026 https:\/\/t.co\/8AmdBgRs9D","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arnoldsla","name":"shirley - arnold","id":96059050,"id_str":"96059050","indices":[0,10]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[11,27]},{"screen_name":"drdrew","name":"Dr - Drew","id":14515734,"id_str":"14515734","indices":[28,35]},{"screen_name":"AP","name":"The - Associated Press","id":51241574,"id_str":"51241574","indices":[39,42]},{"screen_name":"TheDemocrats","name":"The - Democrats","id":14377605,"id_str":"14377605","indices":[63,76]}],"urls":[{"url":"https:\/\/t.co\/8AmdBgRs9D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234512403519246336","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234507543772323845,"in_reply_to_status_id_str":"1234507543772323845","in_reply_to_user_id":96059050,"in_reply_to_user_id_str":"96059050","in_reply_to_screen_name":"arnoldsla","user":{"id":338473859,"id_str":"338473859","name":"\u2600\ufe0fBrandon - Beckham, Esq.","screen_name":"BrandonBeckham_","location":"USA\ud83c\uddfa\ud83c\uddf8 - Tweets=Personal Views","description":"M.Div, Th.M, J.D., Christian Lawyer. - Founder of https:\/\/t.co\/jQL88uqu4p, a voice for biblical conservatism. - \ud835\uddd9\ud835\uddfc\ud835\uddf9\ud835\uddf9\ud835\uddfc\ud835\ude04 for - a Bold Christian Voice.","url":"https:\/\/t.co\/AWZtzVLelC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AWZtzVLelC","expanded_url":"https:\/\/www.instagram.com\/brandonbeckham_","display_url":"instagram.com\/brandonbeckham_","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jQL88uqu4p","expanded_url":"http:\/\/ChristianPolitics.com","display_url":"ChristianPolitics.com","indices":[48,71]}]}},"protected":false,"followers_count":25912,"friends_count":305,"listed_count":222,"created_at":"Tue - Jul 19 16:50:20 +0000 2011","favourites_count":10193,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13456,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232179405180424192\/G-ArNe-k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232179405180424192\/G-ArNe-k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338473859\/1580076767","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":46,"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"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555468582913,"id_str":"1234518555468582913","text":"RT - @EmeraldRobinson: The ultimate cure for coronavirus: America First policies.\n\nCrucial - medicines must be made in the USA.\n\nOur borders mu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmeraldRobinson","name":"Emerald - Robinson \u271d\ufe0f","id":3932768472,"id_str":"3932768472","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4856364013,"id_str":"4856364013","name":"Nationalist - \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0fTrumpGirl","screen_name":"Kellydanes1","location":"Phoenix, - AZ","description":"Patriot & Entrepreneur, Gun Advocate Molon Labe, Tough - & Independent no time for Feminists!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2382,"friends_count":509,"listed_count":166,"created_at":"Wed - Feb 03 23:48:54 +0000 2016","favourites_count":210727,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":217802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/698918121533407232\/gqatOyBu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/698918121533407232\/gqatOyBu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4856364013\/1465063867","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:17 +0000 2020","id":1234518399109206018,"id_str":"1234518399109206018","text":"The - ultimate cure for coronavirus: America First policies.\n\nCrucial medicines - must be made in the USA.\n\nOur borders\u2026 https:\/\/t.co\/qZ4sGIFUpt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qZ4sGIFUpt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518399109206018","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3932768472,"id_str":"3932768472","name":"Emerald - Robinson \u271d\ufe0f","screen_name":"EmeraldRobinson","location":"Washington - D.C.","description":"@Newsmax White House Correspondent. Former @OANN. \"Politics - is downstream of culture & culture is downstream of religion.\" 127M Twitter - impressions in 2019.","url":"https:\/\/t.co\/pVMhoiuVK6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pVMhoiuVK6","expanded_url":"http:\/\/emeraldrobinson.com","display_url":"emeraldrobinson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":150381,"friends_count":12032,"listed_count":745,"created_at":"Sun - Oct 18 05:57:46 +0000 2015","favourites_count":13753,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1047149053677514754\/fbtPJUYI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1047149053677514754\/fbtPJUYI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3932768472\/1538494894","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":390,"favorite_count":1022,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":390,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555460136960,"id_str":"1234518555460136960","text":"RT - @AGWillliamBarr: UNITED STATES STATISTICS 2020\n\n950 people died from Texting - & Driving\n\n18 people died in accidents involving Ladders\n\n1\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AGWillliamBarr","name":"A.G. - Willliam Barr","id":1121883811204214784,"id_str":"1121883811204214784","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1447040658,"id_str":"1447040658","name":"Marie - C","screen_name":"aid_lemon","location":"Georgia, USA","description":"RN Owner - of Lemon Aid Organics Conservative and God Fearing Married","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":285,"friends_count":339,"listed_count":0,"created_at":"Tue - May 21 19:01:57 +0000 2013","favourites_count":9868,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8721,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181731591070060545\/3PExN55O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181731591070060545\/3PExN55O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447040658\/1536442483","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 02:35:19 +0000 2020","id":1234306261828722693,"id_str":"1234306261828722693","text":"UNITED - STATES STATISTICS 2020\n\n950 people died from Texting & Driving\n\n18 - people died in accidents involving Ladder\u2026 https:\/\/t.co\/RXBnliM0bk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RXBnliM0bk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234306261828722693","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1121883811204214784,"id_str":"1121883811204214784","name":"A.G. - Willliam Barr","screen_name":"AGWillliamBarr","location":"Lynching While I - Still Can","description":"The Official PARODY Account of the Attorney General - of the USA \ud83c\uddfa\ud83c\uddf8 Followed by Corn Pop, Blocked by Pierre - Delecto & RT''d by Right Wing Conspiracy Theorists","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47891,"friends_count":8957,"listed_count":134,"created_at":"Fri - Apr 26 21:08:39 +0000 2019","favourites_count":17459,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5741,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1188948210972286976\/BfvEotPd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188948210972286976\/BfvEotPd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1121883811204214784\/1558303373","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":576,"favorite_count":1117,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":576,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555380666382,"id_str":"1234518555380666382","text":"Roma - \u2013 Coronavirus, un positivo a Pomezia: chiuso l''istituto Pascal https:\/\/t.co\/cIpQQaz1BK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cIpQQaz1BK","expanded_url":"https:\/\/www.informazione.it\/a\/D8041AF5-BE59-401E-95CA-95BBC2CBD37A\/Roma-Coronavirus-un-positivo-a-Pomezia-chiuso-l-istituto-Pascal","display_url":"informazione.it\/a\/D8041AF5-BE5\u2026","indices":[68,91]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/home.boiade.it:8300\" rel=\"nofollow\"\u003eRecipesYes\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317671787,"id_str":"317671787","name":"informazione - interno","screen_name":"infoitinterno","location":"Italia","description":"Sezione - Dall''Interno di informazione.it. Notizie di cronaca e politica relative all''Italia","url":"http:\/\/t.co\/y2DyGDHalD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/y2DyGDHalD","expanded_url":"http:\/\/www.informazione.it\/newssection.aspx?sectionid=2cc96883-c65d-4c82-b4ff-87362a8e6497","display_url":"informazione.it\/newssection.as\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4251,"friends_count":4,"listed_count":158,"created_at":"Wed - Jun 15 09:00:41 +0000 2011","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2215981,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660107919522856961\/nnWx2yD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660107919522856961\/nnWx2yD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317671787\/1446217541","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555334328320,"id_str":"1234518555334328320","text":"RT - @CarlosLoret: M\u00e9dicos y enfermeras consideran que los est\u00e1n poniendo - en peligro frente al #Covid19. Denuncian con fotograf\u00edas c\u00f3mo la - a\u2026","truncated":false,"entities":{"hashtags":[{"text":"Covid19","indices":[94,102]}],"symbols":[],"user_mentions":[{"screen_name":"CarlosLoret","name":"Carlos - Loret de Mola","id":68844197,"id_str":"68844197","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":219836656,"id_str":"219836656","name":"Jos\u00e9 - Carlos Gonz\u00e1lez","screen_name":"AliaConvergente","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":285,"friends_count":2385,"listed_count":0,"created_at":"Fri - Nov 26 01:04:23 +0000 2010","favourites_count":42764,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034273713213120513\/YPEjJdlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034273713213120513\/YPEjJdlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219836656\/1530711344","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:45:49 +0000 2020","id":1234459898768809984,"id_str":"1234459898768809984","text":"M\u00e9dicos - y enfermeras consideran que los est\u00e1n poniendo en peligro frente al #Covid19. - Denuncian con fotograf\u00edas c\u00f3\u2026 https:\/\/t.co\/pBvXzIbOXj","truncated":true,"entities":{"hashtags":[{"text":"Covid19","indices":[77,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pBvXzIbOXj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234459898768809984","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":68844197,"id_str":"68844197","name":"Carlos - Loret de Mola","screen_name":"CarlosLoret","location":"M\u00e9xico, DF.","description":"Reportero. - Columna #HistoriasDeReportero #As\u00edLasCosasConLoret en W Radio. Colaborador - del Washington Post. @latinus_us","url":"https:\/\/t.co\/2DU4s8lnNb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2DU4s8lnNb","expanded_url":"http:\/\/carlosloret.com","display_url":"carlosloret.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8263970,"friends_count":1750,"listed_count":20360,"created_at":"Wed - Aug 26 00:00:09 +0000 2009","favourites_count":2560,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":84135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1E1E1E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198810475682766849\/WKQZyeF1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198810475682766849\/WKQZyeF1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68844197\/1565089982","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5660,"favorite_count":9157,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":5660,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555321782273,"id_str":"1234518555321782273","text":"BREAKING: - GB U18s tournaments cancelled by IIHF due to Coronavirus\u00a0concerns https:\/\/t.co\/01jWdDjkcq - https:\/\/t.co\/SU6dweWrxV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/01jWdDjkcq","expanded_url":"https:\/\/chasingthepuck.com\/breaking-gb-u18s-tournaments-cancelled-by-iihf-due-to-coronavirus-concerns\/","display_url":"chasingthepuck.com\/breaking-gb-u1\u2026","indices":[76,99]}],"media":[{"id":1234518554067648512,"id_str":"1234518554067648512","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkFYvUwAAdLh2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkFYvUwAAdLh2.png","url":"https:\/\/t.co\/SU6dweWrxV","display_url":"pic.twitter.com\/SU6dweWrxV","expanded_url":"https:\/\/twitter.com\/HampsonHockey\/status\/1234518555321782273\/photo\/1","type":"photo","sizes":{"small":{"w":632,"h":438,"resize":"fit"},"medium":{"w":632,"h":438,"resize":"fit"},"large":{"w":632,"h":438,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1234518554067648512,"id_str":"1234518554067648512","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkFYvUwAAdLh2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkFYvUwAAdLh2.png","url":"https:\/\/t.co\/SU6dweWrxV","display_url":"pic.twitter.com\/SU6dweWrxV","expanded_url":"https:\/\/twitter.com\/HampsonHockey\/status\/1234518555321782273\/photo\/1","type":"photo","sizes":{"small":{"w":632,"h":438,"resize":"fit"},"medium":{"w":632,"h":438,"resize":"fit"},"large":{"w":632,"h":438,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.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,"user":{"id":1174648064344252416,"id_str":"1174648064344252416","name":"Hampson - on Hockey Podcast","screen_name":"HampsonHockey","location":"Cardiff, Wales","description":"The - home of the Hampson on Hockey podcast, hosted by @OliverJHampson - Presented - by @CTPHockey","url":"https:\/\/t.co\/qBtdpUCOgQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qBtdpUCOgQ","expanded_url":"http:\/\/www.chasingthepuck.com","display_url":"chasingthepuck.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":98,"friends_count":118,"listed_count":0,"created_at":"Thu - Sep 19 11:35:13 +0000 2019","favourites_count":74,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1175018301484937216\/AGTbJWR9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1175018301484937216\/AGTbJWR9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1174648064344252416\/1568982284","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518555242180614,"id_str":"1234518555242180614","text":"RT - @TecNM_MX: #ElTecNMInforma\nConoce los s\u00edntomas que provoca el Coronavirus - y c\u00f3mo puede prevenirse la infecci\u00f3n.\n#ComunidadTecNM https:\/\/\u2026","truncated":false,"entities":{"hashtags":[{"text":"ElTecNMInforma","indices":[14,29]},{"text":"ComunidadTecNM","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"TecNM_MX","name":"TecNM","id":910606424903892993,"id_str":"910606424903892993","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1158448105706143744,"id_str":"1158448105706143744","name":"TECNL - Oficial","screen_name":"TECNLOFICIAL","location":"","description":"Cuenta - oficial del Instituto Tecnol\u00f3gico de Nuevo Le\u00f3n\n\nTel\u00e9fono: - 81 81570500","url":"https:\/\/t.co\/iYhsc5cYCX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iYhsc5cYCX","expanded_url":"http:\/\/www.itnl.edu.mx\/","display_url":"itnl.edu.mx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":430,"friends_count":191,"listed_count":1,"created_at":"Mon - Aug 05 18:42:06 +0000 2019","favourites_count":93,"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\/1158850274431307777\/qz1zzU9N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158850274431307777\/qz1zzU9N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1158448105706143744\/1582840889","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 18:15:10 +0000 2020","id":1233818007563952128,"id_str":"1233818007563952128","text":"#ElTecNMInforma\nConoce - los s\u00edntomas que provoca el Coronavirus y c\u00f3mo puede prevenirse - la infecci\u00f3n.\n#ComunidadTecNM https:\/\/t.co\/vsWAbZbgCZ","truncated":false,"entities":{"hashtags":[{"text":"ElTecNMInforma","indices":[0,15]},{"text":"ComunidadTecNM","indices":[101,116]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233817861950341120,"id_str":"1233817861950341120","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233817861950341120\/pu\/img\/dP0eFpBOjCzDDEJk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233817861950341120\/pu\/img\/dP0eFpBOjCzDDEJk.jpg","url":"https:\/\/t.co\/vsWAbZbgCZ","display_url":"pic.twitter.com\/vsWAbZbgCZ","expanded_url":"https:\/\/twitter.com\/TecNM_MX\/status\/1233818007563952128\/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":1233817861950341120,"id_str":"1233817861950341120","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233817861950341120\/pu\/img\/dP0eFpBOjCzDDEJk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233817861950341120\/pu\/img\/dP0eFpBOjCzDDEJk.jpg","url":"https:\/\/t.co\/vsWAbZbgCZ","display_url":"pic.twitter.com\/vsWAbZbgCZ","expanded_url":"https:\/\/twitter.com\/TecNM_MX\/status\/1233818007563952128\/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":75702,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233817861950341120\/pu\/pl\/PzurCg0OE-Tc-FAz.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233817861950341120\/pu\/vid\/480x270\/-xhdPyQ_EML-ot7S.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233817861950341120\/pu\/vid\/1280x720\/305MKU66LOWOalyE.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233817861950341120\/pu\/vid\/640x360\/B2UvDG1a3X2K_sNI.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910606424903892993,"id_str":"910606424903892993","name":"TecNM","screen_name":"TecNM_MX","location":"M\u00e9xico","description":"El - Tecnol\u00f3gico Nacional de M\u00e9xico es la Instituci\u00f3n de Educaci\u00f3n - Superior Tecnol\u00f3gica m\u00e1s grande de M\u00e9xico, atiende a m\u00e1s - de 608 mil estudiantes en 254 campus.","url":"https:\/\/t.co\/W2uczJ22tm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/W2uczJ22tm","expanded_url":"http:\/\/www.tecnm.mx","display_url":"tecnm.mx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7832,"friends_count":150,"listed_count":22,"created_at":"Wed - Sep 20 20:47:44 +0000 2017","favourites_count":7827,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1806,"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\/1232589777842692098\/-Z_kMKM__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232589777842692098\/-Z_kMKM__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910606424903892993\/1582647298","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":105,"favorite_count":107,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":105,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554982006784,"id_str":"1234518554982006784","text":"\u2018It\u2019s - a very unfortunate conundrum.\u2019 As coronavirus spreads, the CDC urges - sick workers to stay home \u2014 but what if\u2026 https:\/\/t.co\/WK9PJ4O7hb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WK9PJ4O7hb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518554982006784","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":43381817,"id_str":"43381817","name":"dmchodesign","screen_name":"dmchodesign","location":"san - diego","description":"","url":"https:\/\/t.co\/9IkVqy3Ffw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9IkVqy3Ffw","expanded_url":"http:\/\/dmchodesign.com","display_url":"dmchodesign.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":842,"friends_count":2350,"listed_count":8,"created_at":"Fri - May 29 18:31:36 +0000 2009","favourites_count":1504,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18435,"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\/1056309605511413761\/ibiMhYvV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1056309605511413761\/ibiMhYvV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43381817\/1469465166","profile_link_color":"9266CC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554973700098,"id_str":"1234518554973700098","text":"RT - @B52Malmet: Trump is the face of the #coronavirus crisis (with his fake tan - and orange pancake make up) -he and Pence meet with big Phar\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[40,52]}],"symbols":[],"user_mentions":[{"screen_name":"B52Malmet","name":"Barbara - Malmet","id":2876041031,"id_str":"2876041031","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65444249,"id_str":"65444249","name":"MamaChangus","screen_name":"mamachangus","location":"NEW - YORK","description":"One Love, One Life, One God!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":223,"friends_count":353,"listed_count":0,"created_at":"Thu - Aug 13 19:25:31 +0000 2009","favourites_count":83643,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":87215,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000516221129\/c17363adaa9667f41dbb498c2f8dcdad_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000516221129\/c17363adaa9667f41dbb498c2f8dcdad_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65444249\/1380317217","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:49:36 +0000 2020","id":1234491049529237505,"id_str":"1234491049529237505","text":"Trump - is the face of the #coronavirus crisis (with his fake tan and orange pancake - make up) -he and Pence meet with\u2026 https:\/\/t.co\/nPGCcgRmOA","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[25,37]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nPGCcgRmOA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234491049529237505","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2876041031,"id_str":"2876041031","name":"Barbara - Malmet","screen_name":"B52Malmet","location":"New York, NY","description":"Artist, - Activist, TriAthlete, Producer- The democracy you save is your own. #ProtectTheFreePress - #WomensRightsAreHumanRights","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":157274,"friends_count":6798,"listed_count":376,"created_at":"Fri - Nov 14 05:18:51 +0000 2014","favourites_count":655821,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":291641,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179532090888597504\/Sw7RA429_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876041031\/1579491738","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":367,"favorite_count":915,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":367,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554868760576,"id_str":"1234518554868760576","text":"RT - @DWUhlfelderLaw: Florida\u2019s first two coronavirus cases confirmed this - evening. Should we expect trump in SW Florida? https:\/\/t.co\/6bsGOF\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DWUhlfelderLaw","name":"Daniel - Uhlfelder","id":1011970623470489601,"id_str":"1011970623470489601","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84389070,"id_str":"84389070","name":"Ang","screen_name":"angful","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":245,"friends_count":197,"listed_count":1,"created_at":"Thu - Oct 22 18:29:26 +0000 2009","favourites_count":26270,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10077,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558557872146382848\/_vXNK6o1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558557872146382848\/_vXNK6o1_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 04:01:34 +0000 2020","id":1234327964214595584,"id_str":"1234327964214595584","text":"Florida\u2019s - first two coronavirus cases confirmed this evening. Should we expect trump - in SW Florida? https:\/\/t.co\/6bsGOFKySQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234327960242528256,"id_str":"1234327960242528256","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESE2vXaWoAAyT0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESE2vXaWoAAyT0D.jpg","url":"https:\/\/t.co\/6bsGOFKySQ","display_url":"pic.twitter.com\/6bsGOFKySQ","expanded_url":"https:\/\/twitter.com\/DWUhlfelderLaw\/status\/1234327964214595584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1675,"h":486,"resize":"fit"},"medium":{"w":1200,"h":348,"resize":"fit"},"small":{"w":680,"h":197,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234327960242528256,"id_str":"1234327960242528256","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESE2vXaWoAAyT0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESE2vXaWoAAyT0D.jpg","url":"https:\/\/t.co\/6bsGOFKySQ","display_url":"pic.twitter.com\/6bsGOFKySQ","expanded_url":"https:\/\/twitter.com\/DWUhlfelderLaw\/status\/1234327964214595584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1675,"h":486,"resize":"fit"},"medium":{"w":1200,"h":348,"resize":"fit"},"small":{"w":680,"h":197,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1011970623470489601,"id_str":"1011970623470489601","name":"Daniel - Uhlfelder","screen_name":"DWUhlfelderLaw","location":"Santa Rosa Beach, FL","description":"Husband, - Dad, lawyer, entrepreneur, @Stanford & @UFLaw grad, Justice advocate & aspiring - comedian.","url":"https:\/\/t.co\/ZAAQjWQeUh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZAAQjWQeUh","expanded_url":"https:\/\/www.makemydaypac.com\/","display_url":"makemydaypac.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":107000,"friends_count":3068,"listed_count":163,"created_at":"Wed - Jun 27 13:52:52 +0000 2018","favourites_count":16130,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4396,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1011971944491569152\/AEwvVxSE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1011971944491569152\/AEwvVxSE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011970623470489601\/1582125006","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":829,"favorite_count":3719,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":829,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554847825922,"id_str":"1234518554847825922","text":"RT - @davidfrum: With interest rates already at record lows, and fiscal deficits - already at peacetime record highs - Trump has already deple\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidfrum","name":"David - Frum","id":18686907,"id_str":"18686907","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":381666934,"id_str":"381666934","name":"Jacqueline - Hines","screen_name":"JacquelineHine1","location":"Gold Canyon, AZ","description":"There''s - no place like people","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4653,"friends_count":3813,"listed_count":220,"created_at":"Wed - Sep 28 18:36:11 +0000 2011","favourites_count":74320,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":387467,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471709836745256960\/CxybZ2Th_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471709836745256960\/CxybZ2Th_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/381666934\/1401299429","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:11:39 +0000 2020","id":1234466399814406147,"id_str":"1234466399814406147","text":"With - interest rates already at record lows, and fiscal deficits already at peacetime - record highs - Trump has alre\u2026 https:\/\/t.co\/tUgtAHfuQc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tUgtAHfuQc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234466399814406147","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":18686907,"id_str":"18686907","name":"David - Frum","screen_name":"davidfrum","location":"","description":"Author Trumpocalypse: - Restoring American Democracy, on sale May 5, 2020.\nRead more at The Atlantic. - Reach me via https:\/\/t.co\/vh4Jlp8rdP","url":"https:\/\/t.co\/FgD7tvo1zQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FgD7tvo1zQ","expanded_url":"http:\/\/www.davidfrum.com","display_url":"davidfrum.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/vh4Jlp8rdP","expanded_url":"http:\/\/DavidFrum.com","display_url":"DavidFrum.com","indices":[113,136]}]}},"protected":false,"followers_count":836598,"friends_count":856,"listed_count":12332,"created_at":"Tue - Jan 06 18:03:36 +0000 2009","favourites_count":4805,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":69031,"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\/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\/1185949167602065408\/9Sx3tfsp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185949167602065408\/9Sx3tfsp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18686907\/1582126671","profile_link_color":"DD2E44","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3020,"favorite_count":9644,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3020,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554747265024,"id_str":"1234518554747265024","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3207691901,"id_str":"3207691901","name":"Trevor - Minard","screen_name":"TrevorMinard25","location":"Memphis, TN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":305,"listed_count":1,"created_at":"Sun - Apr 26 03:39:43 +0000 2015","favourites_count":2554,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12712,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219134553924628480\/x-BmCKDk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219134553924628480\/x-BmCKDk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3207691901\/1581976007","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153508,"favorite_count":478712,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153508,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554709495810,"id_str":"1234518554709495810","text":"@ewarren - @ewarren claims that @SenSanders started the Coronavirus (big if true)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[0,8]},{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[9,17]},{"screen_name":"SenSanders","name":"Bernie - Sanders","id":29442313,"id_str":"29442313","indices":[30,41]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234510093963624448,"in_reply_to_status_id_str":"1234510093963624448","in_reply_to_user_id":357606935,"in_reply_to_user_id_str":"357606935","in_reply_to_screen_name":"ewarren","user":{"id":1181342989978914817,"id_str":"1181342989978914817","name":"Mr. - Social","screen_name":"ICScomedy","location":"Port Clinton, Ohio","description":"Mostly - jokes | \ud83d\udd1e | Wife guy | #Bernie2020 | https:\/\/t.co\/xpmm5nFvNH","url":"https:\/\/t.co\/rMDhDyuoyE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rMDhDyuoyE","expanded_url":"https:\/\/m.youtube.com\/channel\/UCrViwD3h05mf_VUOFTRtBZA","display_url":"m.youtube.com\/channel\/UCrViw\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/xpmm5nFvNH","expanded_url":"https:\/\/mobile.twitter.com\/search?q=from%3A%40icscomedy%20exclude%3Areplies&src=typed_query","display_url":"mobile.twitter.com\/search?q=from%\u2026","indices":[44,67]}]}},"protected":false,"followers_count":820,"friends_count":1046,"listed_count":0,"created_at":"Mon - Oct 07 22:58:19 +0000 2019","favourites_count":11308,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3959,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222975234573316102\/9IpzbusY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222975234573316102\/9IpzbusY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1181342989978914817\/1581525871","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554629767168,"id_str":"1234518554629767168","text":"Coronavirus, - Sardegna: primo contagio \u00e8 imprenditore 40enne, era stato a Rimini https:\/\/t.co\/Ov2TifAQtP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ov2TifAQtP","expanded_url":"https:\/\/www.informazione.it\/a\/BA40B3C3-7D6F-4B41-9E04-157CA809A1D0\/Coronavirus-Sardegna-primo-contagio-e-imprenditore-40enne-era-stato-a-Rimini","display_url":"informazione.it\/a\/BA40B3C3-7D6\u2026","indices":[80,103]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/home.boiade.it:8300\" rel=\"nofollow\"\u003eRecipesYes\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317671787,"id_str":"317671787","name":"informazione - interno","screen_name":"infoitinterno","location":"Italia","description":"Sezione - Dall''Interno di informazione.it. Notizie di cronaca e politica relative all''Italia","url":"http:\/\/t.co\/y2DyGDHalD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/y2DyGDHalD","expanded_url":"http:\/\/www.informazione.it\/newssection.aspx?sectionid=2cc96883-c65d-4c82-b4ff-87362a8e6497","display_url":"informazione.it\/newssection.as\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4251,"friends_count":4,"listed_count":158,"created_at":"Wed - Jun 15 09:00:41 +0000 2011","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2215981,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660107919522856961\/nnWx2yD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660107919522856961\/nnWx2yD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317671787\/1446217541","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554554314754,"id_str":"1234518554554314754","text":"RT - @diagnosinghc: A Florida man, Osmel Martinez Azcue, who returned from China - and found himself becoming sick. Because of the risk of coro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"diagnosinghc","name":"Diagnosing - Healthcare","id":1201317785508466688,"id_str":"1201317785508466688","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1032830749672726528,"id_str":"1032830749672726528","name":"jks - waffle\ud83e\uddc7","screen_name":"Bangtan18878886","location":"","description":"\ub9c8\ub9ac\uc194~ - * Multistan\ud83e\uddf8","url":"https:\/\/t.co\/wcEzmfmKgZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wcEzmfmKgZ","expanded_url":"https:\/\/www.instagram.com\/bangtanboys_sol\/","display_url":"instagram.com\/bangtanboys_so\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":222,"listed_count":2,"created_at":"Fri - Aug 24 03:23:34 +0000 2018","favourites_count":22268,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3557,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229666019066753033\/ZKVF5lir_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229666019066753033\/ZKVF5lir_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1032830749672726528\/1582249515","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:01:55 +0000 2020","id":1234494148108939264,"id_str":"1234494148108939264","text":"A - Florida man, Osmel Martinez Azcue, who returned from China and found himself - becoming sick. Because of the risk o\u2026 https:\/\/t.co\/FcdVLTJPLA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FcdVLTJPLA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234494148108939264","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1201317785508466688,"id_str":"1201317785508466688","name":"Diagnosing - Healthcare","screen_name":"diagnosinghc","location":"USA","description":"Join - us in inspiring grassroots movement for a better future of US Healthcare. - Our healthcare reform film - #DiagnosingHealthcare \ud83c\udfac - Coming in - Spring 2020.","url":"https:\/\/t.co\/4aAH7F1QLm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4aAH7F1QLm","expanded_url":"https:\/\/www.youtube.com\/watch?v=9JKCHpYDyAo","display_url":"youtube.com\/watch?v=9JKCHp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":1165,"listed_count":4,"created_at":"Mon - Dec 02 01:51:50 +0000 2019","favourites_count":301,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":439,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223521743102345217\/6lb-8bPt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223521743102345217\/6lb-8bPt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201317785508466688\/1578469149","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2817,"favorite_count":6404,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2817,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554520612866,"id_str":"1234518554520612866","text":"RT - @ABCPolitics: \u201cI think it\u2019s very safe,\u201d President Trump says - when asked if it\u2019s safe to hold campaign rallies amid the coronavirus - outbr\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ABCPolitics","name":"ABC - News Politics","id":16815644,"id_str":"16815644","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44212707,"id_str":"44212707","name":"Mary - Webber","screen_name":"fannieprice","location":"Mostly West ","description":"I - love the Gospel of Jesus, Literature & some Movies. Mother of 5. Grandma-\ud83d\udc95\n\nCalifornia - Native-living in the Rocky Mountains-#Independent ExGOP","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":823,"friends_count":1569,"listed_count":18,"created_at":"Tue - Jun 02 21:26:37 +0000 2009","favourites_count":29033,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0B022E","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\/1171543415697412096\/Mi8Ha3HP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171543415697412096\/Mi8Ha3HP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44212707\/1468947473","profile_link_color":"0084B4","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:33:02 +0000 2020","id":1234517077303668736,"id_str":"1234517077303668736","text":"\u201cI - think it\u2019s very safe,\u201d President Trump says when asked if it\u2019s - safe to hold campaign rallies amid the coronaviru\u2026 https:\/\/t.co\/zj5JJum16a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zj5JJum16a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517077303668736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":16815644,"id_str":"16815644","name":"ABC - News Politics","screen_name":"ABCPolitics","location":"Washington, DC","description":"Reports - from @ABC News'' political team.","url":"https:\/\/t.co\/SO3M0qceOH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SO3M0qceOH","expanded_url":"http:\/\/abcnews.go.com\/politics","display_url":"abcnews.go.com\/politics","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":856258,"friends_count":474,"listed_count":6765,"created_at":"Thu - Oct 16 22:43:16 +0000 2008","favourites_count":76,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":144924,"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\/1083377873811984386\/EONbRz3x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083377873811984386\/EONbRz3x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16815644\/1401371089","profile_link_color":"336699","profile_sidebar_border_color":"B7CFDE","profile_sidebar_fill_color":"88A0B3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":8,"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"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554256564224,"id_str":"1234518554256564224","text":"RT - @WHO: @DrTedros @MohamedBinZayed \"We are in unchartered territory. We have - never before seen a respiratory pathogen that is capable of c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[3,7]},{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[9,18]},{"screen_name":"MohamedBinZayed","name":"\u0645\u062d\u0645\u062f - \u0628\u0646 \u0632\u0627\u064a\u062f","id":471010707,"id_str":"471010707","indices":[19,35]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for - Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":285655284,"id_str":"285655284","name":"Gus","screen_name":"ajusttinna","location":"yogyakarta","description":"hanya - mbak2 biasaaa.. mari berteman \ud83d\ude04","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":286,"friends_count":245,"listed_count":2,"created_at":"Thu - Apr 21 15:05:41 +0000 2011","favourites_count":90,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11262,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213450125760069632\/YkVA_HQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213450125760069632\/YkVA_HQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285655284\/1575993779","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:39:31 +0000 2020","id":1234503609917857794,"id_str":"1234503609917857794","text":"@DrTedros - @MohamedBinZayed \"We are in unchartered territory. We have never before seen - a respiratory pathogen that\u2026 https:\/\/t.co\/BBL6ycaaGU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[0,9]},{"screen_name":"MohamedBinZayed","name":"\u0645\u062d\u0645\u062f - \u0628\u0646 \u0632\u0627\u064a\u062f","id":471010707,"id_str":"471010707","indices":[10,26]}],"urls":[{"url":"https:\/\/t.co\/BBL6ycaaGU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503609917857794","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234503545635954691,"in_reply_to_status_id_str":"1234503545635954691","in_reply_to_user_id":14499829,"in_reply_to_user_id_str":"14499829","in_reply_to_screen_name":"WHO","user":{"id":14499829,"id_str":"14499829","name":"World - Health Organization (WHO)","screen_name":"WHO","location":"Geneva, Switzerland","description":"We - are the #UnitedNations\u2019 health agency. We are committed to achieving - better health for everyone, everywhere - #HealthForAll","url":"https:\/\/t.co\/wVulKuROWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wVulKuROWG","expanded_url":"http:\/\/www.who.int","display_url":"who.int","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5601271,"friends_count":1716,"listed_count":27213,"created_at":"Wed - Apr 23 19:56:27 +0000 2008","favourites_count":10494,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":48212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D0ECF8","profile_background_image_url":"http:\/\/abs.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\/875476478988886016\/_l61qZdR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875476478988886016\/_l61qZdR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14499829\/1582794472","profile_link_color":"0396DB","profile_sidebar_border_color":"8C8C8C","profile_sidebar_fill_color":"D9D9D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":146,"favorite_count":195,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":146,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554168348673,"id_str":"1234518554168348673","text":"RT - @SpeakerPelosi: The ACA is a pillar of health & economic security for - American families \u2014 and even more critical during an epidemic. But\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1026160119917105152,"id_str":"1026160119917105152","name":"Mike - Smith","screen_name":"MikeSmi42175848","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":28,"listed_count":0,"created_at":"Sun - Aug 05 17:36:52 +0000 2018","favourites_count":26625,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69320,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1026161613043191808\/hn90G6Jg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1026161613043191808\/hn90G6Jg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1026160119917105152\/1533491110","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:33:02 +0000 2020","id":1234517079757332483,"id_str":"1234517079757332483","text":"The - ACA is a pillar of health & economic security for American families \u2014 - and even more critical during an epidemic\u2026 https:\/\/t.co\/r0aAfDQBSu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r0aAfDQBSu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517079757332483","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15764644,"id_str":"15764644","name":"Nancy - Pelosi","screen_name":"SpeakerPelosi","location":"San Francisco","description":"Speaker - of the House, focused on strengthening America''s middle class and creating - jobs; mother, grandmother, dark chocolate connoisseur.","url":"https:\/\/t.co\/jztVqrP3x5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jztVqrP3x5","expanded_url":"https:\/\/www.speaker.gov\/","display_url":"speaker.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4016037,"friends_count":362,"listed_count":18419,"created_at":"Thu - Aug 07 15:35:02 +0000 2008","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10087,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"385BA3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15764644\/1572273026","profile_link_color":"4B12E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3236,"favorite_count":8130,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3236,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554130690048,"id_str":"1234518554130690048","text":"RT - @Eric_Ericeiri: THIS is what happens when mayor #SadiqKhan prefers bashing - #DonaldTrump instead of taking care of The City.\n\nWhile #Knif\u2026","truncated":false,"entities":{"hashtags":[{"text":"SadiqKhan","indices":[51,61]},{"text":"DonaldTrump","indices":[78,90]}],"symbols":[],"user_mentions":[{"screen_name":"Eric_Ericeiri","name":"NeotERIC - \ud83c\udf10 1of #TheMighty200","id":3622251449,"id_str":"3622251449","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3438614458,"id_str":"3438614458","name":"TRUMP - JUSTICE \u2696\ufe0f\u271d\ufe0f\ud83c\uddfa\ud83c\uddf8","screen_name":"5945USARTR","location":"","description":"OneNationUnderGod - with Liberty Justice for Babies LegalAmericans Under #TheConstitution #InGodWeTrust - Our Motto: Defend It\ud83c\uddfa\ud83c\uddf8 1A 2A https:\/\/t.co\/ktrNcYHYec","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/ktrNcYHYec","expanded_url":"http:\/\/Gab.ai\/4trump4peace","display_url":"Gab.ai\/4trump4peace","indices":[131,154]}]}},"protected":false,"followers_count":21464,"friends_count":19407,"listed_count":149,"created_at":"Mon - Aug 24 22:54:25 +0000 2015","favourites_count":62616,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":127625,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232767932599500801\/ulH8UxNE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232767932599500801\/ulH8UxNE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3438614458\/1551533398","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:23:50 +0000 2020","id":1234514762869989383,"id_str":"1234514762869989383","text":"THIS - is what happens when mayor #SadiqKhan prefers bashing #DonaldTrump instead - of taking care of The City.\n\nWhile\u2026 https:\/\/t.co\/2MNbttwenu","truncated":true,"entities":{"hashtags":[{"text":"SadiqKhan","indices":[32,42]},{"text":"DonaldTrump","indices":[59,71]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2MNbttwenu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234514762869989383","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3622251449,"id_str":"3622251449","name":"NeotERIC - \ud83c\udf10 1of #TheMighty200","screen_name":"Eric_Ericeiri","location":"UK - PT NL ","description":"BY ERIC E. Tweets Mainly In English \ud83c\uddec\ud83c\udde7 - #Gay #Trump Supporter \n#KAG #Brexit #Patriots Freedom Of Speech https:\/\/t.co\/kRVR5opH6F","url":"https:\/\/t.co\/V34jQ2ct5v","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/V34jQ2ct5v","expanded_url":"https:\/\/twitter.com\/Eric_ErMedia","display_url":"twitter.com\/Eric_ErMedia","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/kRVR5opH6F","expanded_url":"http:\/\/gab.ai\/VictorEriceira","display_url":"gab.ai\/VictorEriceira","indices":[104,127]}]}},"protected":false,"followers_count":12399,"friends_count":11252,"listed_count":109,"created_at":"Fri - Sep 11 16:51:14 +0000 2015","favourites_count":15084,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30514,"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\/1224464398661619718\/YnpaBR1Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224464398661619718\/YnpaBR1Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3622251449\/1578962017","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":239,"favorite_count":207,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":239,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554109730817,"id_str":"1234518554109730817","text":"RT - @GrassrootsSpeak: @GOP @realDonaldTrump @Mike_Pence At the end of December, - China informed the World Health Organization of #coronavirus\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[127,139]}],"symbols":[],"user_mentions":[{"screen_name":"GrassrootsSpeak","name":"Alison - Greene","id":2983250529,"id_str":"2983250529","indices":[3,19]},{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[21,25]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[26,42]},{"screen_name":"Mike_Pence","name":"Mike - Pence","id":22203756,"id_str":"22203756","indices":[43,54]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":932685589991837696,"id_str":"932685589991837696","name":"The - Electioneer","screen_name":"the_electioneer","location":"Philadelphia, PA","description":"The - Home of the 2020 presidential election.\n\nFollow us today for a unique perspective - of politics and the election(s)...","url":"https:\/\/t.co\/A6HWJFSPzr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A6HWJFSPzr","expanded_url":"http:\/\/www.theelectioneer.com","display_url":"theelectioneer.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":89,"listed_count":0,"created_at":"Mon - Nov 20 19:02:27 +0000 2017","favourites_count":624,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":479,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144405236573986816\/l1Ti_1uQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144405236573986816\/l1Ti_1uQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/932685589991837696\/1561682446","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:18:56 +0000 2020","id":1234468233622761472,"id_str":"1234468233622761472","text":"@GOP - @realDonaldTrump @Mike_Pence At the end of December, China informed the World - Health Organization of\u2026 https:\/\/t.co\/ywI7Qy0SrX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[0,4]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[5,21]},{"screen_name":"Mike_Pence","name":"Mike - Pence","id":22203756,"id_str":"22203756","indices":[22,33]}],"urls":[{"url":"https:\/\/t.co\/ywI7Qy0SrX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234468233622761472","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":1234448545249419266,"in_reply_to_status_id_str":"1234448545249419266","in_reply_to_user_id":11134252,"in_reply_to_user_id_str":"11134252","in_reply_to_screen_name":"GOP","user":{"id":2983250529,"id_str":"2983250529","name":"Alison - Greene","screen_name":"GrassrootsSpeak","location":"NYC","description":"Russia - if you''re listening....TAKE HIM BACK!!! Fighting in every way I can to get - our Democracy back. We Impeached but can''t rest til we #RemoveTrump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77236,"friends_count":65605,"listed_count":125,"created_at":"Sat - Jan 17 23:43:30 +0000 2015","favourites_count":61935,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22423,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910602848424964096\/4ma7ivN9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910602848424964096\/4ma7ivN9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2983250529\/1500217721","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":415,"favorite_count":906,"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"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554063638528,"id_str":"1234518554063638528","text":"Coronavirus, - Solowomenrun rinviata a Cagliari: \u201cNecessario per proteggere i pi\u00f9 - deboli\u201d https:\/\/t.co\/fww1LUYaeQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fww1LUYaeQ","expanded_url":"https:\/\/www.informazione.it\/a\/66DF2DF8-E843-4E6C-84E4-025A67FDD5B8\/Coronavirus-Solowomenrun-rinviata-a-Cagliari-Necessario-per-proteggere-i-piu-deboli","display_url":"informazione.it\/a\/66DF2DF8-E84\u2026","indices":[88,111]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/home.boiade.it:8300\" rel=\"nofollow\"\u003eRecipesYes\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317671787,"id_str":"317671787","name":"informazione - interno","screen_name":"infoitinterno","location":"Italia","description":"Sezione - Dall''Interno di informazione.it. Notizie di cronaca e politica relative all''Italia","url":"http:\/\/t.co\/y2DyGDHalD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/y2DyGDHalD","expanded_url":"http:\/\/www.informazione.it\/newssection.aspx?sectionid=2cc96883-c65d-4c82-b4ff-87362a8e6497","display_url":"informazione.it\/newssection.as\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4251,"friends_count":4,"listed_count":158,"created_at":"Wed - Jun 15 09:00:41 +0000 2011","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2215981,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660107919522856961\/nnWx2yD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660107919522856961\/nnWx2yD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317671787\/1446217541","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518554055266304,"id_str":"1234518554055266304","text":"L\u2019avantage - avec le #coronavirus c\u2019est que toutes les s\u00e9ances de piscine avec - les CP ont \u00e9t\u00e9 annul\u00e9es jusqu\u2019\u00e0 nouvel\u2026 https:\/\/t.co\/gYBFJGq8Kq","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[19,31]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gYBFJGq8Kq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518554055266304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131125774059286528,"id_str":"1131125774059286528","name":"Oph\u00e9lie - \ud83c\udde8\ud83c\uddf7","screen_name":"wrecklessnight","location":"Evreux, - France \ud83c\uddeb\ud83c\uddf7","description":"Boundaries are for chickens - and boxes are for cereal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1886,"friends_count":2022,"listed_count":0,"created_at":"Wed - May 22 09:12:54 +0000 2019","favourites_count":19216,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6307,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220799451859705857\/DMpxMBc7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220799451859705857\/DMpxMBc7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131125774059286528\/1583072759","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553891672067,"id_str":"1234518553891672067","text":"RT - @la_patilla: Portugal registra primer caso de coronavirus https:\/\/t.co\/XplfsbUoWb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"la_patilla","name":"La - Patilla","id":124172948,"id_str":"124172948","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/XplfsbUoWb","expanded_url":"http:\/\/j.mp\/2wnxO3S","display_url":"j.mp\/2wnxO3S","indices":[61,84]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111042607,"id_str":"111042607","name":"Eduardo - Vera Bottaro","screen_name":"eduardoverab","location":"Caracas \/ Venezuela","description":"Presidente - Asociacion Jubilados Cabildo \/ Lions Club International \/ Pdte. Club - Dtto - E-3","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":324,"friends_count":756,"listed_count":12,"created_at":"Wed - Feb 03 16:28:19 +0000 2010","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22592,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1018678895242031106\/FkxvP0UH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1018678895242031106\/FkxvP0UH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111042607\/1578106117","profile_link_color":"FAB81E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:32:01 +0000 2020","id":1234516822520729609,"id_str":"1234516822520729609","text":"Portugal - registra primer caso de coronavirus https:\/\/t.co\/XplfsbUoWb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XplfsbUoWb","expanded_url":"http:\/\/j.mp\/2wnxO3S","display_url":"j.mp\/2wnxO3S","indices":[45,68]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":124172948,"id_str":"124172948","name":"La - Patilla","screen_name":"la_patilla","location":"Venezuela","description":"Informaci\u00f3n - e Investigaci\u00f3n. Tambi\u00e9n puedes encontrarnos en Instagram: https:\/\/t.co\/sCftVquHBX - y Telegram: https:\/\/t.co\/X5c1QH76Kt \ud83d\udcf2","url":"https:\/\/t.co\/t8x20yFxmB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/t8x20yFxmB","expanded_url":"http:\/\/bit.ly\/2BMlZEy","display_url":"bit.ly\/2BMlZEy","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/sCftVquHBX","expanded_url":"http:\/\/Instagram.com\/la_patilla","display_url":"Instagram.com\/la_patilla","indices":[71,94]},{"url":"https:\/\/t.co\/X5c1QH76Kt","expanded_url":"http:\/\/telegram.me\/la_patilla","display_url":"telegram.me\/la_patilla","indices":[107,130]}]}},"protected":false,"followers_count":7132079,"friends_count":171,"listed_count":16284,"created_at":"Thu - Mar 18 14:02:00 +0000 2010","favourites_count":594,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5067525,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1099169139208400896\/lCWhSASv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1099169139208400896\/lCWhSASv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124172948\/1500301243","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"474747","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"es"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553883222018,"id_str":"1234518553883222018","text":"RT - @TgLa7: #coronavirus, #Iran: morto membro consiglio Guida suprema https:\/\/t.co\/K8RREHhPEu","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[11,23]},{"text":"Iran","indices":[25,30]}],"symbols":[],"user_mentions":[{"screen_name":"TgLa7","name":"Tg - La7","id":828717014,"id_str":"828717014","indices":[3,9]}],"urls":[],"media":[{"id":1234408776037478400,"id_str":"1234408776037478400","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGAPdtWsAA5eJ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGAPdtWsAA5eJ3.jpg","url":"https:\/\/t.co\/K8RREHhPEu","display_url":"pic.twitter.com\/K8RREHhPEu","expanded_url":"https:\/\/twitter.com\/TgLa7\/status\/1234408788431601666\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":512,"h":397,"resize":"fit"},"small":{"w":512,"h":397,"resize":"fit"},"large":{"w":512,"h":397,"resize":"fit"}},"source_status_id":1234408788431601666,"source_status_id_str":"1234408788431601666","source_user_id":828717014,"source_user_id_str":"828717014"}]},"extended_entities":{"media":[{"id":1234408776037478400,"id_str":"1234408776037478400","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGAPdtWsAA5eJ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGAPdtWsAA5eJ3.jpg","url":"https:\/\/t.co\/K8RREHhPEu","display_url":"pic.twitter.com\/K8RREHhPEu","expanded_url":"https:\/\/twitter.com\/TgLa7\/status\/1234408788431601666\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":512,"h":397,"resize":"fit"},"small":{"w":512,"h":397,"resize":"fit"},"large":{"w":512,"h":397,"resize":"fit"}},"source_status_id":1234408788431601666,"source_status_id_str":"1234408788431601666","source_user_id":828717014,"source_user_id_str":"828717014"}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1125770381632122880,"id_str":"1125770381632122880","name":"Erni","screen_name":"bossuof","location":"","description":"studente,modenese - e democratico","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":39,"listed_count":0,"created_at":"Tue - May 07 14:32:29 +0000 2019","favourites_count":546,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1125770589279539201\/2YT9JIX7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1125770589279539201\/2YT9JIX7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:22:44 +0000 2020","id":1234408788431601666,"id_str":"1234408788431601666","text":"#coronavirus, - #Iran: morto membro consiglio Guida suprema https:\/\/t.co\/K8RREHhPEu","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[0,12]},{"text":"Iran","indices":[14,19]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234408776037478400,"id_str":"1234408776037478400","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGAPdtWsAA5eJ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGAPdtWsAA5eJ3.jpg","url":"https:\/\/t.co\/K8RREHhPEu","display_url":"pic.twitter.com\/K8RREHhPEu","expanded_url":"https:\/\/twitter.com\/TgLa7\/status\/1234408788431601666\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":512,"h":397,"resize":"fit"},"small":{"w":512,"h":397,"resize":"fit"},"large":{"w":512,"h":397,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234408776037478400,"id_str":"1234408776037478400","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGAPdtWsAA5eJ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGAPdtWsAA5eJ3.jpg","url":"https:\/\/t.co\/K8RREHhPEu","display_url":"pic.twitter.com\/K8RREHhPEu","expanded_url":"https:\/\/twitter.com\/TgLa7\/status\/1234408788431601666\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":512,"h":397,"resize":"fit"},"small":{"w":512,"h":397,"resize":"fit"},"large":{"w":512,"h":397,"resize":"fit"}}}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":828717014,"id_str":"828717014","name":"Tg - La7","screen_name":"TgLa7","location":"","description":"Account ufficiale - del Tg La7: news e aggiornamenti in tempo reale adesso anche su Twitter\r\nhttp:\/\/t.co\/ux5Fp51Gfv","url":"http:\/\/t.co\/ux5Fp51Gfv","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ux5Fp51Gfv","expanded_url":"http:\/\/tg.la7.it\/","display_url":"tg.la7.it","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/ux5Fp51Gfv","expanded_url":"http:\/\/tg.la7.it\/","display_url":"tg.la7.it","indices":[91,113]}]}},"protected":false,"followers_count":610999,"friends_count":210,"listed_count":1998,"created_at":"Mon - Sep 17 09:30:56 +0000 2012","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":117187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2619174152\/ah9yaq8dpqf4g1aqxcfv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2619174152\/ah9yaq8dpqf4g1aqxcfv_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":33,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553698750464,"id_str":"1234518553698750464","text":"RT - @TIME: A silent epidemic? Experts fear the coronavirus is spreading undetected - in Southeast Asia https:\/\/t.co\/YXDQx9PRXL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TIME","name":"TIME","id":14293310,"id_str":"14293310","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/YXDQx9PRXL","expanded_url":"https:\/\/ti.me\/38gotIy","display_url":"ti.me\/38gotIy","indices":[100,123]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":527944350,"id_str":"527944350","name":"Sue - Horne","screen_name":"kermee55","location":"Nova Scotia","description":"Retired","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":329,"listed_count":25,"created_at":"Sat - Mar 17 23:38:13 +0000 2012","favourites_count":2838,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40191,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213826116085059586\/Qszi_-Xa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213826116085059586\/Qszi_-Xa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/527944350\/1578233674","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:17:33 +0000 2020","id":1234498084996026368,"id_str":"1234498084996026368","text":"A - silent epidemic? Experts fear the coronavirus is spreading undetected in Southeast - Asia https:\/\/t.co\/YXDQx9PRXL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YXDQx9PRXL","expanded_url":"https:\/\/ti.me\/38gotIy","display_url":"ti.me\/38gotIy","indices":[90,113]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14293310,"id_str":"14293310","name":"TIME","screen_name":"TIME","location":"","description":"Breaking - news and current events from around the globe. Hosted by TIME staff.","url":"http:\/\/t.co\/4aYbUuAeSh","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/4aYbUuAeSh","expanded_url":"http:\/\/www.time.com","display_url":"time.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":16700356,"friends_count":498,"listed_count":103184,"created_at":"Thu - Apr 03 13:54:30 +0000 2008","favourites_count":536,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":341357,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"CC0000","profile_background_image_url":"http:\/\/abs.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\/1700796190\/Picture_24_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1700796190\/Picture_24_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14293310\/1547650813","profile_link_color":"DE3333","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D9D9D9","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":130,"favorite_count":198,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":130,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553665187841,"id_str":"1234518553665187841","text":"RT - @jxeker: everyone: we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jxeker","name":"joe","id":2745274901,"id_str":"2745274901","indices":[3,10]}],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901"}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901","video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":369004254,"id_str":"369004254","name":"J.k\ud83d\ude0d","screen_name":"gee_kayla13","location":"Ya - moms bed","description":"in love with Jasmine Crystal Sanchez \ud83d\ude0d\ud83e\udd70","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":372,"listed_count":6,"created_at":"Tue - Sep 06 16:07:06 +0000 2011","favourites_count":2239,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":70010,"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\/1061171526085603328\/GDOfNc6q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1061171526085603328\/GDOfNc6q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369004254\/1551832798","profile_link_color":"20EB0E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 17:58:07 +0000 2020","id":1234176102362419202,"id_str":"1234176102362419202","text":"everyone: - we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35880,"favorite_count":117231,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35880,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553665187840,"id_str":"1234518553665187840","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70259116,"id_str":"70259116","name":"TheyFall4Autumn - \u2728","screen_name":"_excusemyprissy","location":"","description":"UWG | - Biology Pre-Med Major \ud83d\udc69\ud83c\udffe\u200d\u2695\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1124,"listed_count":1,"created_at":"Mon - Aug 31 00:37:15 +0000 2009","favourites_count":16236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7139,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1000044312141484032\/FWxoZh7z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1000044312141484032\/FWxoZh7z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70259116\/1425230366","profile_link_color":"FA0A0A","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"000000","profile_text_color":"FF0F0F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153508,"favorite_count":478712,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153508,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553606393856,"id_str":"1234518553606393856","text":"RT - @gelhzz: soy inmune al coronavirus https:\/\/t.co\/kdWb9zmky1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gelhzz","name":"Sergio","id":1118598819556528135,"id_str":"1118598819556528135","indices":[3,10]}],"urls":[{"url":"https:\/\/t.co\/kdWb9zmky1","expanded_url":"https:\/\/twitter.com\/A3Noticias\/status\/1234437042005737473","display_url":"twitter.com\/A3Noticias\/sta\u2026","indices":[38,61]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1105858253337055234,"id_str":"1105858253337055234","name":"\ud83e\udd74","screen_name":"pivonazosonly","location":"Islas - Baleares, Espa\u00f1a","description":"abemus fuet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":283,"listed_count":0,"created_at":"Wed - Mar 13 15:48:48 +0000 2019","favourites_count":21211,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1569,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169665863995277312\/GZsRozlE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169665863995277312\/GZsRozlE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1105858253337055234\/1560885620","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:20:32 +0000 2020","id":1234483734352666625,"id_str":"1234483734352666625","text":"soy - inmune al coronavirus https:\/\/t.co\/kdWb9zmky1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kdWb9zmky1","expanded_url":"https:\/\/twitter.com\/A3Noticias\/status\/1234437042005737473","display_url":"twitter.com\/A3Noticias\/sta\u2026","indices":[26,49]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1118598819556528135,"id_str":"1118598819556528135","name":"Sergio","screen_name":"gelhzz","location":"Sitges, - Barcelona","description":"y ahora c\u00f3mo gestiono yo esto - backup @gelhzz_ - - https:\/\/t.co\/yEd17mc5Q1","url":"https:\/\/t.co\/RK2ecHaP8i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RK2ecHaP8i","expanded_url":"http:\/\/instagram.com\/sergio_gelhzz","display_url":"instagram.com\/sergio_gelhzz","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/yEd17mc5Q1","expanded_url":"https:\/\/curiouscat.me\/sergio_gelhzz","display_url":"curiouscat.me\/sergio_gelhzz","indices":[50,73]}]}},"protected":false,"followers_count":15011,"friends_count":624,"listed_count":9,"created_at":"Wed - Apr 17 19:35:15 +0000 2019","favourites_count":22800,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15669,"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\/1234105258550419456\/U7aUPaIr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234105258550419456\/U7aUPaIr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1118598819556528135\/1582055966","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234437042005737473,"quoted_status_id_str":"1234437042005737473","quoted_status":{"created_at":"Mon - Mar 02 11:15:00 +0000 2020","id":1234437042005737473,"id_str":"1234437042005737473","text":"Freno - al #coronavirus | Recomiendan no dar besos ni abrazos para evitar el contagio - https:\/\/t.co\/wbxZr5aiuA","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[9,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wbxZr5aiuA","expanded_url":"http:\/\/atres.red\/ivbk72","display_url":"atres.red\/ivbk72","indices":[85,108]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/dogtrack.es\" rel=\"nofollow\"\u003eDogTrack_Oficial\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145992645,"id_str":"145992645","name":"Antena3Noticias","screen_name":"A3Noticias","location":"","description":"Toda - la actualidad, a un click.\n\ud83d\udcf2 https:\/\/t.co\/YxL0SaOyrv\n\ud83d\udcf2 https:\/\/t.co\/e0p7jpzxEZ","url":"https:\/\/t.co\/VJ14cAMYrn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VJ14cAMYrn","expanded_url":"http:\/\/www.antena3.com\/noticias\/","display_url":"antena3.com\/noticias\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/YxL0SaOyrv","expanded_url":"https:\/\/www.instagram.com\/a3noticias\/","display_url":"instagram.com\/a3noticias\/","indices":[35,58]},{"url":"https:\/\/t.co\/e0p7jpzxEZ","expanded_url":"https:\/\/www.facebook.com\/antena3noticias","display_url":"facebook.com\/antena3noticias","indices":[62,85]}]}},"protected":false,"followers_count":1856152,"friends_count":525,"listed_count":8548,"created_at":"Thu - May 20 10:33:50 +0000 2010","favourites_count":571,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":279048,"lang":null,"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\/1206506650603081730\/O6AGMECB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206506650603081730\/O6AGMECB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145992645\/1576488872","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7DB9E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":211,"favorite_count":392,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":140,"favorite_count":381,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1234437042005737473,"quoted_status_id_str":"1234437042005737473","retweet_count":140,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553497341958,"id_str":"1234518553497341958","text":"RT - @misayeon: Nayeon has donated 50 million won to help with the spread of coronavirus - in Korea, saying \u201cI hope it will help many people, a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"misayeon","name":"misa - \u2022\u1d17\u2022","id":2246641690,"id_str":"2246641690","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2759054664,"id_str":"2759054664","name":"\ud83c\udf6d\ud83d\udc3f\u2077","screen_name":"triviaLfoolish","location":"Russia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":857,"friends_count":344,"listed_count":19,"created_at":"Sat - Aug 23 15:04:46 +0000 2014","favourites_count":87003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":171380,"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\/1234094406971666432\/bVvBX7UF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234094406971666432\/bVvBX7UF_normal.jpg","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:03:38 +0000 2020","id":1234403984015794181,"id_str":"1234403984015794181","text":"Nayeon - has donated 50 million won to help with the spread of coronavirus in Korea, - saying \u201cI hope it will help many\u2026 https:\/\/t.co\/obey005rgP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/obey005rgP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234403984015794181","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2246641690,"id_str":"2246641690","name":"misa - \u2022\u1d17\u2022","screen_name":"misayeon","location":"FAQs\/Schedules \u2192","description":"#\ud2b8\uc640\uc774\uc2a4 - \ud83c\udf43 KOR-ENG translator for #TWICE \ud83d\ude0a \u2014 here to provide - reliable news, updates & schedules \ud83d\udc8c","url":"https:\/\/t.co\/NWXx6Ycu5V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NWXx6Ycu5V","expanded_url":"https:\/\/misayeon.carrd.co","display_url":"misayeon.carrd.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":160661,"friends_count":268,"listed_count":1239,"created_at":"Fri - Dec 27 18:35:29 +0000 2013","favourites_count":7957,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21392,"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\/1194927036608974848\/6rzXBJFU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194927036608974848\/6rzXBJFU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2246641690\/1572234468","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3070,"favorite_count":9733,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3070,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553405030400,"id_str":"1234518553405030400","text":"RT - @JoelTurnerEM: A very clear and complete review! COVID-19: The Novel Coronavirus - 2019 - REBEL EM - Emergency Medicine Blog https:\/\/t.co\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoelTurnerEM","name":"Joel - Turner","id":940000651,"id_str":"940000651","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":947854045,"id_str":"947854045","name":"ABDALLA - ALZAABI","screen_name":"dr_hazeem","location":"Montr\u00e9al, Qu\u00e9bec","description":"Emirati - emergency and sport medicine \ud83d\udc68\u200d\u2695\ufe0f. RCSI 2010. Mcgill - 2020.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":88,"listed_count":6,"created_at":"Wed - Nov 14 14:22:06 +0000 2012","favourites_count":138,"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":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1105189377586745344\/6iAGhw9A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1105189377586745344\/6iAGhw9A_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:09:33 +0000 2020","id":1234465872019951616,"id_str":"1234465872019951616","text":"A - very clear and complete review! COVID-19: The Novel Coronavirus 2019 - REBEL - EM - Emergency Medicine Blog https:\/\/t.co\/b9HlOKPtMQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/b9HlOKPtMQ","expanded_url":"https:\/\/rebelem.com\/covid-19-the-novel-coronavirus-2019\/","display_url":"rebelem.com\/covid-19-the-n\u2026","indices":[108,131]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":940000651,"id_str":"940000651","name":"Joel - Turner","screen_name":"JoelTurnerEM","location":"Montreal","description":"Emergency - Medicine Specialist\nJewish General Hospital, McGill University.\nEmergency - ultrasound Fellowship Director\nApple Distinguished Educator","url":"https:\/\/t.co\/QIQ7Dn4mIc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QIQ7Dn4mIc","expanded_url":"http:\/\/www.mcgill.ca\/emergency\/programs\/ultrasound-fellowship","display_url":"mcgill.ca\/emergency\/prog\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":618,"friends_count":35,"listed_count":32,"created_at":"Sat - Nov 10 21:41:27 +0000 2012","favourites_count":113,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":910,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/984028291496542210\/FTwfoe_L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/984028291496542210\/FTwfoe_L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/940000651\/1574018557","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553388146689,"id_str":"1234518553388146689","text":"RT - @ProfessorAMuse: The mayor of Seoul, Korea was inspired by American companies - @McDonalds & @Starbucks creating a drive-thru #coronavirus\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[131,143]}],"symbols":[],"user_mentions":[{"screen_name":"ProfessorAMuse","name":"\ud835\udc0f\ud835\udc2b\ud835\udc28\ud835\udc1f\ud835\udc1e\ud835\udc2c\ud835\udc2c\ud835\udc28\ud835\udc2b - \ud835\udc00 \ud835\udc0c\ud835\udc2e\ud835\udc2c\ud835\udc1e \ud83d\udcac","id":1956573918,"id_str":"1956573918","indices":[3,18]},{"screen_name":"McDonalds","name":"National - #EggMcMuffinDay is 3\/2. Where?","id":71026122,"id_str":"71026122","indices":[81,91]},{"screen_name":"Starbucks","name":"Starbucks - Coffee","id":30973,"id_str":"30973","indices":[98,108]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1273207248,"id_str":"1273207248","name":"john - gibbs","screen_name":"culliganmanjohn","location":"Las Vegas, NV","description":"Sojourner - seeking to discover life","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":258,"friends_count":878,"listed_count":2,"created_at":"Sat - Mar 16 20:21:56 +0000 2013","favourites_count":11691,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50378,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000175755627\/b67e84376266536661522955576a82e8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000175755627\/b67e84376266536661522955576a82e8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1273207248\/1562707438","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:56:07 +0000 2020","id":1234507787088080896,"id_str":"1234507787088080896","text":"The - mayor of Seoul, Korea was inspired by American companies @McDonalds & - @Starbucks creating a drive-thru\u2026 https:\/\/t.co\/VyL3SVLDNx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"McDonalds","name":"National - #EggMcMuffinDay is 3\/2. Where?","id":71026122,"id_str":"71026122","indices":[61,71]},{"screen_name":"Starbucks","name":"Starbucks - Coffee","id":30973,"id_str":"30973","indices":[78,88]}],"urls":[{"url":"https:\/\/t.co\/VyL3SVLDNx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234507787088080896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1956573918,"id_str":"1956573918","name":"\ud835\udc0f\ud835\udc2b\ud835\udc28\ud835\udc1f\ud835\udc1e\ud835\udc2c\ud835\udc2c\ud835\udc28\ud835\udc2b - \ud835\udc00 \ud835\udc0c\ud835\udc2e\ud835\udc2c\ud835\udc1e \ud83d\udcac","screen_name":"ProfessorAMuse","location":"Under - Moonlight","description":"Art Historian | Museum Educator | Professor | Independent - Thinker | Education & Human Rights Advocate | @MUSEUMSwoWALLS | #BeLove\ud83d\udc9e - | #Resist | #TruthMatters |","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13605,"friends_count":14244,"listed_count":6,"created_at":"Sat - Oct 12 13:03:46 +0000 2013","favourites_count":31999,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19216,"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\/1111510140057018370\/I8fYKeTq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1111510140057018370\/I8fYKeTq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1956573918\/1555982466","profile_link_color":"033B90","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":35,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:54 +0000 2020","id":1234518553266655233,"id_str":"1234518553266655233","text":"RT - @MarketWatch: Dow futures soar 500 points on hopes Federal Reserve will act - over coronavirus https:\/\/t.co\/d8AfVpczTp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarketWatch","name":"MarketWatch","id":624413,"id_str":"624413","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/d8AfVpczTp","expanded_url":"https:\/\/on.mktw.net\/2I82qJq","display_url":"on.mktw.net\/2I82qJq","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1223841954,"id_str":"1223841954","name":"Ronnie - C","screen_name":"RonnieChopra1","location":"London, England","description":"Public - speaker and Equity\/FX analyst interviewed on business channels - BBC, Bloomberg, - CNBC, CNN, Core & SKY over the last 15 years.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2421,"friends_count":1425,"listed_count":22,"created_at":"Wed - Feb 27 07:26:38 +0000 2013","favourites_count":58689,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71300,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/985596401047531521\/rn67nbAV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/985596401047531521\/rn67nbAV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 08:00:56 +0000 2020","id":1234388203265830915,"id_str":"1234388203265830915","text":"Dow - futures soar 500 points on hopes Federal Reserve will act over coronavirus - https:\/\/t.co\/d8AfVpczTp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/d8AfVpczTp","expanded_url":"https:\/\/on.mktw.net\/2I82qJq","display_url":"on.mktw.net\/2I82qJq","indices":[79,102]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.marketwatch.com\" rel=\"nofollow\"\u003eMarketWatch\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":624413,"id_str":"624413","name":"MarketWatch","screen_name":"MarketWatch","location":"New - York, NY","description":"News, personal finance & commentary from MarketWatch.","url":"http:\/\/t.co\/0HcV671qZB","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/0HcV671qZB","expanded_url":"http:\/\/www.marketwatch.com\/","display_url":"marketwatch.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3674060,"friends_count":192,"listed_count":25075,"created_at":"Thu - Jan 11 05:15:48 +0000 2007","favourites_count":2608,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":297769,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"408D52","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705601245596090368\/Z6xUOnRg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705601245596090368\/Z6xUOnRg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/624413\/1398380735","profile_link_color":"408D52","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0F7F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":81,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":36,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518553241378817,"id_str":"1234518553241378817","text":"RT - @QweenOfHells: Thanos hi coronavirus hai","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"QweenOfHells","name":"Qween - of WinterHell \ud83d\udc69\u200d\ud83d\udcbb","id":350837322,"id_str":"350837322","indices":[3,16]}],"urls":[]},"metadata":{"result_type":"recent","iso_language_code":"ca"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1715989987,"id_str":"1715989987","name":"Sherooo - 2.0","screen_name":"Hitesh1123","location":"Andromeda","description":"Travel|Tech|Books|Music - \nUnfunny. Student. Random tweets. Here for fun. IG: sherooo_2.0\n#Minimalism","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":622,"friends_count":951,"listed_count":29,"created_at":"Sat - Aug 31 15:24:18 +0000 2013","favourites_count":130423,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":92990,"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\/1149986994648281088\/zpcSwCu1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149986994648281088\/zpcSwCu1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1715989987\/1577202610","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 06:57:00 +0000 2020","id":1234372114917888000,"id_str":"1234372114917888000","text":"Thanos - hi coronavirus hai","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"result_type":"recent","iso_language_code":"ca"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350837322,"id_str":"350837322","name":"Qween - of WinterHell \ud83d\udc69\u200d\ud83d\udcbb","screen_name":"QweenOfHells","location":"Online","description":"you - are in hell. sin is allowed.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7987,"friends_count":615,"listed_count":144,"created_at":"Mon - Aug 08 11:36:38 +0000 2011","favourites_count":27431,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59955,"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\/1003906511574220800\/aL4XB1Rh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1003906511574220800\/aL4XB1Rh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350837322\/1493145639","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"ca"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518553166012416,"id_str":"1234518553166012416","text":"China - realiza el primer trasplante doble de pulm\u00f3n en un paciente infectado - de coronavirus | La iguana TV https:\/\/t.co\/axiQ0B0ByJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/axiQ0B0ByJ","expanded_url":"https:\/\/www.laiguana.tv\/articulos\/672530-china-pulmon-tansplante\/","display_url":"laiguana.tv\/articulos\/6725\u2026","indices":[106,129]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1169255816647663616,"id_str":"1169255816647663616","name":"LaIguanaTV","screen_name":"TeleIguana","location":"Venezuela","description":"https:\/\/t.co\/TdXO2kEiyi - es un portal de an\u00e1lisis e informaci\u00f3n sobre Venezuela y el mundo. - S\u00edguenos tambi\u00e9n en https:\/\/t.co\/jpoLSdmHMr","url":"https:\/\/t.co\/TdXO2kEiyi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TdXO2kEiyi","expanded_url":"http:\/\/LaIguana.TV","display_url":"LaIguana.TV","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/TdXO2kEiyi","expanded_url":"http:\/\/LaIguana.TV","display_url":"LaIguana.TV","indices":[0,23]},{"url":"https:\/\/t.co\/jpoLSdmHMr","expanded_url":"http:\/\/instagram.com\/laiguanatv","display_url":"instagram.com\/laiguanatv","indices":[111,134]}]}},"protected":false,"followers_count":7170,"friends_count":3,"listed_count":10,"created_at":"Wed - Sep 04 14:28:14 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13630,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213115128742322176\/9WuTAeeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213115128742322176\/9WuTAeeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169255816647663616\/1579191013","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"es"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518553119920128,"id_str":"1234518553119920128","text":"RT - @Finanzas_Time: #USA \ud83c\uddfa\ud83c\uddf8 #Coronavirus #COVID19 \u2623\ufe0f\n\n\u25aa\ufe0fPaciente - liberado del aislamiento en San Antonio Texas dio positivo despu\u00e9s.\n\n\u25aa\ufe0f\u00a1Cua\u2026","truncated":false,"entities":{"hashtags":[{"text":"USA","indices":[19,23]},{"text":"Coronavirus","indices":[27,39]},{"text":"COVID19","indices":[40,48]}],"symbols":[],"user_mentions":[{"screen_name":"Finanzas_Time","name":"\u20ac - FINANZAS TIME $","id":1146021318082609152,"id_str":"1146021318082609152","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2448317600,"id_str":"2448317600","name":"luisa - maria","screen_name":"mili4691","location":"Carabobo, Venezuela","description":"La - vida es como una bicicleta. Para mantener el equilibrio tienes que seguir - adelante. Albert Einstein.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":275,"listed_count":0,"created_at":"Thu - Apr 17 00:12:56 +0000 2014","favourites_count":649,"utc_offset":null,"time_zone":null,"geo_enabled":true,"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\/1188573793943523328\/d2iaiTGG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188573793943523328\/d2iaiTGG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:11:22 +0000 2020","id":1234451228404436993,"id_str":"1234451228404436993","text":"#USA - \ud83c\uddfa\ud83c\uddf8 #Coronavirus #COVID19 \u2623\ufe0f\n\n\u25aa\ufe0fPaciente - liberado del aislamiento en San Antonio Texas dio positivo despu\u00e9s.\u2026 - https:\/\/t.co\/NYAJJZMpAd","truncated":true,"entities":{"hashtags":[{"text":"USA","indices":[0,4]},{"text":"Coronavirus","indices":[8,20]},{"text":"COVID19","indices":[21,29]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NYAJJZMpAd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234451228404436993","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1146021318082609152,"id_str":"1146021318082609152","name":"\u20ac - FINANZAS TIME $","screen_name":"Finanzas_Time","location":"Z\u00farich, Suiza\ud83c\udde8\ud83c\udded","description":"#Investments - | #Economy | #Finance | #Stocks | #Crypto | #News | #Business | #Pharol | - #OIBR3 \u0661\u0661:\u0661\u0661 \ud835\udd78\ud835\udd9e \ud835\udd99\ud835\udd9c\ud835\udd8a\ud835\udd8a\ud835\udd99\ud835\udd98 - \ud835\udd86\ud835\udd97\ud835\udd8a \ud835\udd98\ud835\udd99\ud835\udd97\ud835\udd8e\ud835\udd88\ud835\udd99\ud835\udd91\ud835\udd9e - \ud835\udd95\ud835\udd8a\ud835\udd97\ud835\udd98\ud835\udd94\ud835\udd93\ud835\udd86\ud835\udd91 - \ud835\udd94\ud835\udd95\ud835\udd8e\ud835\udd93\ud835\udd8e\ud835\udd94\ud835\udd93\ud835\udd98 - \ud83d\udcc8","url":"https:\/\/t.co\/nWwRW5Rlfq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nWwRW5Rlfq","expanded_url":"http:\/\/pharol.pt\/pt-pt","display_url":"pharol.pt\/pt-pt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":27688,"friends_count":21,"listed_count":108,"created_at":"Tue - Jul 02 11:42:29 +0000 2019","favourites_count":3571,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11463,"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\/1206911482082058242\/7GyRNSuc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206911482082058242\/7GyRNSuc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1146021318082609152\/1579296587","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":91,"favorite_count":106,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":91,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518553119711232,"id_str":"1234518553119711232","text":"RT - @aMrazing: Silakan dibaca gaes. https:\/\/t.co\/zAIV4aNjp9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aMrazing","name":"Alexander - Thian","id":76298119,"id_str":"76298119","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/zAIV4aNjp9","expanded_url":"https:\/\/www.forbes.com\/sites\/tarahaelle\/2020\/02\/29\/no-you-do-not-need-face-masks-for-coronavirus-they-might-increase-your-infection-risk\/amp\/?__twitter_impression=true","display_url":"forbes.com\/sites\/tarahael\u2026","indices":[35,58]}]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1110515092435562496,"id_str":"1110515092435562496","name":"Tama","screen_name":"PratamaPrasety6","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":399,"listed_count":0,"created_at":"Tue - Mar 26 12:13:25 +0000 2019","favourites_count":1695,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1835,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1110515296001900544\/KXEN3X8O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1110515296001900544\/KXEN3X8O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1110515092435562496\/1553604849","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 14:02:02 +0000 2020","id":1234116690507530240,"id_str":"1234116690507530240","text":"Silakan - dibaca gaes. https:\/\/t.co\/zAIV4aNjp9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zAIV4aNjp9","expanded_url":"https:\/\/www.forbes.com\/sites\/tarahaelle\/2020\/02\/29\/no-you-do-not-need-face-masks-for-coronavirus-they-might-increase-your-infection-risk\/amp\/?__twitter_impression=true","display_url":"forbes.com\/sites\/tarahael\u2026","indices":[21,44]}]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76298119,"id_str":"76298119","name":"Alexander - Thian","screen_name":"aMrazing","location":"amrazing007@gmail.com","description":"I - have a lot of stories to tell. I am also a nastar man. \ud83e\udd24 Contact: - Amanda - 089616683454 (Whatsapp only)","url":"https:\/\/t.co\/Sc9Q727r92","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Sc9Q727r92","expanded_url":"http:\/\/amrazing.com","display_url":"amrazing.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":752705,"friends_count":765,"listed_count":1022,"created_at":"Tue - Sep 22 10:17:42 +0000 2009","favourites_count":6741,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":337843,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F7C028","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\/1225870421871996928\/4dKBJ33C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225870421871996928\/4dKBJ33C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76298119\/1579091099","profile_link_color":"038543","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18025,"favorite_count":25620,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":18025,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552893325312,"id_str":"1234518552893325312","text":"RT - @KevinlyFather: @realDonaldTrump Here''s 3 articles from when you \"pretty - much shut down\" the #coronavirus that has now killed 3 American\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[96,108]}],"symbols":[],"user_mentions":[{"screen_name":"KevinlyFather","name":"KevinlyFather - \ud83c\uddfa\ud83c\uddf2\ud83c\udde8\ud83c\udde6\ud83c\uddf2\ud83c\uddfc\ud83c\uddf8\ud83c\uddff","id":389532043,"id_str":"389532043","indices":[3,17]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[19,35]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1395150738,"id_str":"1395150738","name":"Michelle - \ud83c\udf0a\ud83c\udfb8\u270c\ud83c\udffc","screen_name":"NJLefty67","location":"New - Jersey, USA","description":"Guitarist Songwriter\/Score\/Composer - Bully - Breed Rescue Proud member of #TheResistance \u270c\ufe0f Thanks all Followers! - #FemaleMusician\n#FenderStrat\n#OriginalRock","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3401,"friends_count":4971,"listed_count":36,"created_at":"Wed - May 01 17:46:50 +0000 2013","favourites_count":132432,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":128082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191360735802281984\/Jj_UrfU7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191360735802281984\/Jj_UrfU7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1395150738\/1512693578","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:15:33 +0000 2020","id":1234512679454142464,"id_str":"1234512679454142464","text":"@realDonaldTrump - Here''s 3 articles from when you \"pretty much shut down\" the #coronavirus - that has now killed 3 Ame\u2026 https:\/\/t.co\/KYave4tU38","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[77,89]}],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/KYave4tU38","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234512679454142464","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234462291652993032,"in_reply_to_status_id_str":"1234462291652993032","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","user":{"id":389532043,"id_str":"389532043","name":"KevinlyFather - \ud83c\uddfa\ud83c\uddf2\ud83c\udde8\ud83c\udde6\ud83c\uddf2\ud83c\uddfc\ud83c\uddf8\ud83c\uddff","screen_name":"KevinlyFather","location":"Los - Angeles, CA","description":"I''m ''Untenable''. Merry Impeachmas!\ud83c\udf51\ud83c\udf32 Impeach - You Parody: https:\/\/t.co\/K8KyzOT3KI Demo Reel: https:\/\/t.co\/4L5vS2qQHs","url":"https:\/\/t.co\/PpfObLIKyA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PpfObLIKyA","expanded_url":"http:\/\/kevinlyfather.com","display_url":"kevinlyfather.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/K8KyzOT3KI","expanded_url":"https:\/\/www.youtube.com\/watch?v=KY_J2tkFiAo","display_url":"youtube.com\/watch?v=KY_J2t\u2026","indices":[60,83]},{"url":"https:\/\/t.co\/4L5vS2qQHs","expanded_url":"https:\/\/youtu.be\/6YJJHjJbqZg","display_url":"youtu.be\/6YJJHjJbqZg","indices":[96,119]}]}},"protected":false,"followers_count":9973,"friends_count":5725,"listed_count":31,"created_at":"Wed - Oct 12 15:46:41 +0000 2011","favourites_count":52523,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35939,"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\/1190273219519041536\/72BEiD7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190273219519041536\/72BEiD7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389532043\/1523124695","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"},"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552868052992,"id_str":"1234518552868052992","text":"RT - @WORLDSTAR: #NathalieEmmanuel star of the show \u201cGame Of Thrones\u201d - has this to say about mistreatment towards Asian people regarding the #\u2026","truncated":false,"entities":{"hashtags":[{"text":"NathalieEmmanuel","indices":[15,32]}],"symbols":[],"user_mentions":[{"screen_name":"WORLDSTAR","name":"WORLDSTARHIPHOP","id":11912362,"id_str":"11912362","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22515143,"id_str":"22515143","name":"Todd - \"DG\" Davis","screen_name":"muzikscribe","location":"Planet Earth; Place - Of Birth","description":"You know my name, not my story. You''ve heard what - I''ve done, not what I''ve been through...","url":"https:\/\/t.co\/je9d7WoMfg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/je9d7WoMfg","expanded_url":"https:\/\/m.facebook.com\/profile.php?ref=bookmarks","display_url":"m.facebook.com\/profile.php?re\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6504,"friends_count":8068,"listed_count":771,"created_at":"Mon - Mar 02 18:25:27 +0000 2009","favourites_count":1299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":767985,"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\/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\/1233409250023493632\/Pz7LkSFH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233409250023493632\/Pz7LkSFH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22515143\/1583104930","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E89FA7","profile_text_color":"FFFFFF","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 22:54:53 +0000 2020","id":1234250787552923650,"id_str":"1234250787552923650","text":"#NathalieEmmanuel - star of the show \u201cGame Of Thrones\u201d has this to say about mistreatment - towards Asian people regard\u2026 https:\/\/t.co\/uRF1pcxdhL","truncated":true,"entities":{"hashtags":[{"text":"NathalieEmmanuel","indices":[0,17]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uRF1pcxdhL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234250787552923650","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11912362,"id_str":"11912362","name":"WORLDSTARHIPHOP","screen_name":"WORLDSTAR","location":"USA","description":"Instagram-@Worldstar - Snap-@RealWorldstar FB\/YT-Worldstarhiphop Submit your videos to: Posters@Worldstarhiphop.com","url":"https:\/\/t.co\/N8uB1GUa1L","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/N8uB1GUa1L","expanded_url":"http:\/\/m.me\/WorldStarHipHop","display_url":"m.me\/WorldStarHipHop","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4392511,"friends_count":3088,"listed_count":7615,"created_at":"Sun - Jan 06 18:06:13 +0000 2008","favourites_count":233,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"999999","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488738791511703552\/cxf92nyL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488738791511703552\/cxf92nyL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11912362\/1543558388","profile_link_color":"961D15","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":271,"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552834707462,"id_str":"1234518552834707462","text":"RT - @gatewaypundit: Calls Grow to Quarantine Senator Chris Murphy after Secret - Meeting with Coronavirus Carriers from Iranian Regime https:\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gatewaypundit","name":"Jim - Hoft","id":19211550,"id_str":"19211550","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1017840216151863296,"id_str":"1017840216151863296","name":"flyboy7798 - \ud83c\udf96\ufe0f\ud83c\udf96\ufe0f\ud83c\udf96\ufe0f\ud83c\udf96\ufe0f\ud83c\udf96\ufe0f\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f","screen_name":"flyboy7798","location":"","description":"Jesus - follower. Husband\/Grandfather. USAF for 21 years, 8 months, and 4 days as - a flying trunk monkey, then as a civilian code monkey. #FreeGeneralFlynn #Qanon","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":958,"friends_count":952,"listed_count":0,"created_at":"Fri - Jul 13 18:36:32 +0000 2018","favourites_count":106830,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38981,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231660806825181185\/sbpoOZK8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231660806825181185\/sbpoOZK8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1017840216151863296\/1582485794","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:43:41 +0000 2020","id":1234489560224215041,"id_str":"1234489560224215041","text":"Calls - Grow to Quarantine Senator Chris Murphy after Secret Meeting with Coronavirus - Carriers from Iranian Regime\u2026 https:\/\/t.co\/YrNMA5MuLM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YrNMA5MuLM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234489560224215041","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":19211550,"id_str":"19211550","name":"Jim - Hoft","screen_name":"gatewaypundit","location":"St. Louis, Missouri","description":"Writer- - Speaker- Where Hope Made a Comeback - Top Choice of the American Truth Seeker","url":"https:\/\/t.co\/9D93JQ9grt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9D93JQ9grt","expanded_url":"http:\/\/www.thegatewaypundit.com\/","display_url":"thegatewaypundit.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":223632,"friends_count":1437,"listed_count":2976,"created_at":"Tue - Jan 20 00:45:40 +0000 2009","favourites_count":6378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":98547,"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\/967266044338294786\/6cu37jlt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/967266044338294786\/6cu37jlt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19211550\/1504151751","profile_link_color":"91D2FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4190,"favorite_count":6631,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4190,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552792555521,"id_str":"1234518552792555521","text":"RT - @eugenegu: @realDonaldTrump @nytimes @washingtonpost @comcast @ABC @CBSNews - Also, if you have a chronic medical condition like diabetes,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eugenegu","name":"Eugene - Gu, MD","id":65497475,"id_str":"65497475","indices":[3,12]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[14,30]},{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[31,39]},{"screen_name":"washingtonpost","name":"The - Washington Post","id":2467791,"id_str":"2467791","indices":[40,55]},{"screen_name":"comcast","name":"Comcast","id":89587925,"id_str":"89587925","indices":[56,64]},{"screen_name":"ABC","name":"ABC - News","id":28785486,"id_str":"28785486","indices":[65,69]},{"screen_name":"CBSNews","name":"CBS - News","id":15012486,"id_str":"15012486","indices":[70,78]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1111636173099663360,"id_str":"1111636173099663360","name":"Seacapri19","screen_name":"seacapri19","location":"Seattle. - WA","description":"Kellyanne, Sarah, Stephanie=FAKE NEWS. #VOTE2020. #BLUE. - #RESIST. #IMPOTUS. HE''S IMPEACHED! \u2764 Democratic candidates. \u2764","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1301,"friends_count":3031,"listed_count":0,"created_at":"Fri - Mar 29 14:28:11 +0000 2019","favourites_count":68017,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":51997,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1151981432597708801\/k_urNATi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1151981432597708801\/k_urNATi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1111636173099663360\/1574092348","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 21:22:06 +0000 2020","id":1234227437304569856,"id_str":"1234227437304569856","text":"@realDonaldTrump - @nytimes @washingtonpost @comcast @ABC @CBSNews Also, if you have a chronic - medical condition like\u2026 https:\/\/t.co\/e8DN0Rxzhb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]},{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[17,25]},{"screen_name":"washingtonpost","name":"The - Washington Post","id":2467791,"id_str":"2467791","indices":[26,41]},{"screen_name":"comcast","name":"Comcast","id":89587925,"id_str":"89587925","indices":[42,50]},{"screen_name":"ABC","name":"ABC - News","id":28785486,"id_str":"28785486","indices":[51,55]},{"screen_name":"CBSNews","name":"CBS - News","id":15012486,"id_str":"15012486","indices":[56,64]}],"urls":[{"url":"https:\/\/t.co\/e8DN0Rxzhb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234227437304569856","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234226559675822080,"in_reply_to_status_id_str":"1234226559675822080","in_reply_to_user_id":65497475,"in_reply_to_user_id_str":"65497475","in_reply_to_screen_name":"eugenegu","user":{"id":65497475,"id_str":"65497475","name":"Eugene - Gu, MD","screen_name":"eugenegu","location":"eugene@coolquit.com","description":"Founder - and CEO of Cool Quit. We fight tobacco addiction with free access to doctors - through telemedicine and free medications delivered to our patients\u2019 - homes.","url":"https:\/\/t.co\/APC3Ft1pT2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/APC3Ft1pT2","expanded_url":"http:\/\/www.coolquit.com","display_url":"coolquit.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":337449,"friends_count":5543,"listed_count":2085,"created_at":"Thu - Aug 13 23:16:22 +0000 2009","favourites_count":58710,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":16398,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1062027697440706560\/SZ__-Au3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062027697440706560\/SZ__-Au3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65497475\/1578986283","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":483,"favorite_count":3793,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":483,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552788385793,"id_str":"1234518552788385793","text":"@PrissyBritchez - @laurence8645 Coronavirus testing is free, but the hospital trip may set you - back thousands. One gr\u2026 https:\/\/t.co\/GBXa1Syets","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PrissyBritchez","name":"\u2763\ufe0f\u13ae\u13d2\u13a5\u13d5\u13d5\u13a9\u2763\ufe0f\ud83e\udd40","id":957547453045092354,"id_str":"957547453045092354","indices":[0,15]},{"screen_name":"laurence8645","name":"Laurence - T \ud83d\udc99","id":1150896762254692357,"id_str":"1150896762254692357","indices":[16,29]}],"urls":[{"url":"https:\/\/t.co\/GBXa1Syets","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518552788385793","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234507544485195779,"in_reply_to_status_id_str":"1234507544485195779","in_reply_to_user_id":957547453045092354,"in_reply_to_user_id_str":"957547453045092354","in_reply_to_screen_name":"PrissyBritchez","user":{"id":6677272,"id_str":"6677272","name":"TIONIA - \ud83c\udf08\ud83c\udf0a\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udd98\ud83d\ude2a","screen_name":"Tionia","location":"SoCal","description":"My - 25yo son Dante murdered by GUN VIOLENCE,\nIT MUST END NOW!\nCaregiver extraordinaire!\nOpened - my eyes & left GOP\n\ud83c\udff3\ufe0f\u200d\ud83c\udf08PROUD Member of the - LGBTQ Community\ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3265,"friends_count":4535,"listed_count":5,"created_at":"Fri - Jun 08 18:19:45 +0000 2007","favourites_count":24113,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20377,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9266CC","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\/1139890418198274049\/Aa2ibikY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1139890418198274049\/Aa2ibikY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6677272\/1570979441","profile_link_color":"981CEB","profile_sidebar_border_color":"0E4E70","profile_sidebar_fill_color":"D87CED","profile_text_color":"B066E8","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552750673926,"id_str":"1234518552750673926","text":"RT - @BrainDumpTweets: If you have coronavirus, please contact me. I would like - to pay you to come over and spit in my mouth","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrainDumpTweets","name":"Max - G","id":808746592920539140,"id_str":"808746592920539140","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3289465279,"id_str":"3289465279","name":"mothman","screen_name":"_imbibe_","location":"","description":"(18) - uhhh I''m musician and pronouns are a mystery","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":1006,"listed_count":1,"created_at":"Fri - Jul 24 05:30:18 +0000 2015","favourites_count":36490,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15058,"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\/1232294197471789060\/BBrb3rna_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232294197471789060\/BBrb3rna_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3289465279\/1576978285","profile_link_color":"004182","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 27 19:42:25 +0000 2020","id":1233115186682187776,"id_str":"1233115186682187776","text":"If - you have coronavirus, please contact me. I would like to pay you to come over - and spit in my mouth","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":808746592920539140,"id_str":"808746592920539140","name":"Max - G","screen_name":"BrainDumpTweets","location":"","description":"Brain Dump - is a show about me and my gay cartoon ghost lover","url":"https:\/\/t.co\/ofEoGy4SAh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ofEoGy4SAh","expanded_url":"http:\/\/YOUTUBE.COM\/HOTDIGGEDYDEMON","display_url":"YOUTUBE.COM\/HOTDIGGEDYDEMON","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":74539,"friends_count":49,"listed_count":91,"created_at":"Tue - Dec 13 18:53:08 +0000 2016","favourites_count":2321,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2071,"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\/1071216142448918529\/fTe_pMv6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1071216142448918529\/fTe_pMv6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/808746592920539140\/1486396869","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":95,"favorite_count":1119,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":95,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552545132545,"id_str":"1234518552545132545","text":"RT - @CESESP_Tlaxcala: #T\u00f3maloEnCuenta\ud83d\udccdAnte la llegada del Coronavirus - #Covid19 a M\u00e9xico, la @SesaTlax recomienda lavarse las manos de manera\u2026","truncated":false,"entities":{"hashtags":[{"text":"T\u00f3maloEnCuenta","indices":[21,36]},{"text":"Covid19","indices":[69,77]}],"symbols":[],"user_mentions":[{"screen_name":"CESESP_Tlaxcala","name":"CESESP_Tlaxcala","id":1100787227347570688,"id_str":"1100787227347570688","indices":[3,19]},{"screen_name":"SesaTlax","name":"SESA - TLAXCALA","id":3239984370,"id_str":"3239984370","indices":[91,100]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1228027386953785344,"id_str":"1228027386953785344","name":"Luis","screen_name":"Luis67045247","location":"","description":"futboll","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":8,"listed_count":0,"created_at":"Thu - Feb 13 18:45:33 +0000 2020","favourites_count":76,"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\/1228028112480264192\/1pKfrA-M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228028112480264192\/1pKfrA-M_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:01:14 +0000 2020","id":1234509074349383682,"id_str":"1234509074349383682","text":"#T\u00f3maloEnCuenta\ud83d\udccdAnte - la llegada del Coronavirus #Covid19 a M\u00e9xico, la @SesaTlax recomienda - lavarse las manos de man\u2026 https:\/\/t.co\/D1un52lyjE","truncated":true,"entities":{"hashtags":[{"text":"T\u00f3maloEnCuenta","indices":[0,15]},{"text":"Covid19","indices":[48,56]}],"symbols":[],"user_mentions":[{"screen_name":"SesaTlax","name":"SESA - TLAXCALA","id":3239984370,"id_str":"3239984370","indices":[70,79]}],"urls":[{"url":"https:\/\/t.co\/D1un52lyjE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234509074349383682","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1100787227347570688,"id_str":"1100787227347570688","name":"CESESP_Tlaxcala","screen_name":"CESESP_Tlaxcala","location":"Tlaxcala, - M\u00e9xico","description":"Cuenta oficial de la Comisi\u00f3n Ejecutiva del - Sistema Estatal de Seguridad P\u00fablica (CESESP).","url":"https:\/\/t.co\/trOTzMzdO4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/trOTzMzdO4","expanded_url":"http:\/\/cesesptlax.gob.mx","display_url":"cesesptlax.gob.mx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":518,"friends_count":19,"listed_count":0,"created_at":"Wed - Feb 27 15:58:21 +0000 2019","favourites_count":152,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":683,"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\/1203515297770196994\/CpaMc-fy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203515297770196994\/CpaMc-fy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1100787227347570688\/1581031471","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552486563840,"id_str":"1234518552486563840","text":"Coronavirus - in Usa: chi paga tamponi e cure? Gli americani ora temono la sanit\u00e0 privata - https:\/\/t.co\/Gz5BVQYLkD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Gz5BVQYLkD","expanded_url":"https:\/\/www.informazione.it\/a\/ADAD7B48-6DCF-4F1B-9D85-ED6045EEB68D\/Coronavirus-in-Usa-chi-paga-tamponi-e-cure-Gli-americani-ora-temono-la-sanita-privata","display_url":"informazione.it\/a\/ADAD7B48-6DC\u2026","indices":[88,111]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/home.boiade.it:8300\" rel=\"nofollow\"\u003eRecipesYes\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317671787,"id_str":"317671787","name":"informazione - interno","screen_name":"infoitinterno","location":"Italia","description":"Sezione - Dall''Interno di informazione.it. Notizie di cronaca e politica relative all''Italia","url":"http:\/\/t.co\/y2DyGDHalD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/y2DyGDHalD","expanded_url":"http:\/\/www.informazione.it\/newssection.aspx?sectionid=2cc96883-c65d-4c82-b4ff-87362a8e6497","display_url":"informazione.it\/newssection.as\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4251,"friends_count":4,"listed_count":158,"created_at":"Wed - Jun 15 09:00:41 +0000 2011","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2215981,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660107919522856961\/nnWx2yD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660107919522856961\/nnWx2yD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317671787\/1446217541","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552377544707,"id_str":"1234518552377544707","text":"RT - @yumcoconutmilk: I really hate this country. $3,000 to get tested for the - coronavirus, bc they wanted to reject the WHO\u2019s test so they c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yumcoconutmilk","name":"nylah - burton","id":703052849039675393,"id_str":"703052849039675393","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3320841409,"id_str":"3320841409","name":"Regan - Anderson","screen_name":"RCA225","location":"","description":"a real life - HUMAN person. Definitely 100% human and nothing else","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":173,"friends_count":256,"listed_count":1,"created_at":"Thu - Aug 20 02:04:34 +0000 2015","favourites_count":11705,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4201,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/849842095250526208\/PoRm4hk0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/849842095250526208\/PoRm4hk0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320841409\/1440037389","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 16:52:32 +0000 2020","id":1234159596379529216,"id_str":"1234159596379529216","text":"I - really hate this country. $3,000 to get tested for the coronavirus, bc they - wanted to reject the WHO\u2019s test so th\u2026 https:\/\/t.co\/jKUj9JPPCt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jKUj9JPPCt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234159596379529216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703052849039675393,"id_str":"703052849039675393","name":"nylah - burton","screen_name":"yumcoconutmilk","location":"Washington, DC ","description":"Writer - | race, climate, mental health | words @NYMag @Essence @zoramag @byshondaland - @TheNation @bustle @Independent | \u201coverwhelming Aries energy\u201d","url":"https:\/\/t.co\/rcfUUE7kM1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rcfUUE7kM1","expanded_url":"https:\/\/nylahburton.contently.com\/","display_url":"nylahburton.contently.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16427,"friends_count":3022,"listed_count":169,"created_at":"Fri - Feb 26 03:03:56 +0000 2016","favourites_count":37151,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16924,"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\/1212065411816136704\/EqCukNXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212065411816136704\/EqCukNXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703052849039675393\/1561545197","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50650,"favorite_count":261086,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":50650,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552343990285,"id_str":"1234518552343990285","text":"RT - @Kpop_Herald: Coronavirus donations by @BTS_twt fans have reached almost 400 - million won (US$333,000), according to Korea Disaster Relie\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kpop_Herald","name":"KpopHerald","id":2555928204,"id_str":"2555928204","indices":[3,15]},{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[42,50]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":882592599734964224,"id_str":"882592599734964224","name":"Hanna - park","screen_name":"19Hanna1","location":"","description":"BTS iS Life \ud83d\ude02\ud83d\ude02\ud83d\ude0d\ud83d\ude0d\ud83d\udc9d\ud83d\udc9d\ud83d\udc4c\ud83c\udf38","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":888,"listed_count":3,"created_at":"Wed - Jul 05 13:30:48 +0000 2017","favourites_count":61801,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11074,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082041391469989888\/w8y3nCge_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082041391469989888\/w8y3nCge_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882592599734964224\/1560113393","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 02:01:11 +0000 2020","id":1234297672107880448,"id_str":"1234297672107880448","text":"Coronavirus - donations by @BTS_twt fans have reached almost 400 million won (US$333,000), - according to Korea Disaste\u2026 https:\/\/t.co\/rMukjtzCH1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[25,33]}],"urls":[{"url":"https:\/\/t.co\/rMukjtzCH1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234297672107880448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2555928204,"id_str":"2555928204","name":"KpopHerald","screen_name":"Kpop_Herald","location":"Seoul, - South Korea","description":"K-pop reporters at The Korea Herald. The best - tweets on K-pop.","url":"https:\/\/t.co\/zXHaMxIV0R","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zXHaMxIV0R","expanded_url":"http:\/\/www.koreaherald.com\/kpop","display_url":"koreaherald.com\/kpop","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":128190,"friends_count":80,"listed_count":615,"created_at":"Mon - Jun 09 02:40:57 +0000 2014","favourites_count":197,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":24253,"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\/1107820688742600704\/WNQMa25a_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1107820688742600704\/WNQMa25a_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2555928204\/1546996114","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15557,"favorite_count":46090,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15557,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552343990272,"id_str":"1234518552343990272","text":"RT - @larissafernand: Is anyone in India worried about Coronavirus? \n #CoronaOutbreak","truncated":false,"entities":{"hashtags":[{"text":"CoronaOutbreak","indices":[68,83]}],"symbols":[],"user_mentions":[{"screen_name":"larissafernand","name":"L","id":50605576,"id_str":"50605576","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1137275170438041601,"id_str":"1137275170438041601","name":"Anil","screen_name":"Anil65045258","location":"Hyderabad, - India","description":"I am an individual interested in a lot of things like - sports, music and and social activities","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":126,"listed_count":0,"created_at":"Sat - Jun 08 08:28:24 +0000 2019","favourites_count":2953,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5162,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:38:28 +0000 2020","id":1234473149611331585,"id_str":"1234473149611331585","text":"Is - anyone in India worried about Coronavirus? \n #CoronaOutbreak","truncated":false,"entities":{"hashtags":[{"text":"CoronaOutbreak","indices":[48,63]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50605576,"id_str":"50605576","name":"L","screen_name":"larissafernand","location":"Morningstar, - India","description":"The only cool thing about me is my haircut \ud83d\ude4fSacral - Architecture \ud83d\udeabBigotry #Investing #ESG #BehavioralEconomics #Savings - ALL VIEWS PERSONAL","url":"https:\/\/t.co\/VxQX7GVDvE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VxQX7GVDvE","expanded_url":"https:\/\/www.morningstar.in\/posts\/author\/larissa-fernand.aspx","display_url":"morningstar.in\/posts\/author\/l\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8242,"friends_count":575,"listed_count":70,"created_at":"Thu - Jun 25 10:02:59 +0000 2009","favourites_count":15737,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38365,"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\/1234327660790272000\/fcgVGfeQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234327660790272000\/fcgVGfeQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50605576\/1583121704","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":269,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":37,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552268328964,"id_str":"1234518552268328964","text":"RT - @voxdotcom: 1\/ WASH \ud83d\udc4f\ud83d\udca6 YOUR \ud83d\udc4f\ud83d\udca6 - HANDS\ud83d\udc4f\ud83d\udca6\n\nWith coronavirus cases in nearly 50 countries, - there\u2019s never been a better time to brush up on o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"voxdotcom","name":"Vox","id":2347049341,"id_str":"2347049341","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149089131,"id_str":"149089131","name":"adji - pradana","screen_name":"djiprad","location":"Indonesia","description":"Djiprad, - Dji=adji, Prad=pradana. Immersed in psychology. A complex young adult","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":375,"friends_count":423,"listed_count":4,"created_at":"Fri - May 28 11:29:13 +0000 2010","favourites_count":387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3695,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/831926426739683328\/Lg4CJnne_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/831926426739683328\/Lg4CJnne_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149089131\/1557596019","profile_link_color":"91D2FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:16:55 +0000 2020","id":1234497922768809984,"id_str":"1234497922768809984","text":"1\/ - WASH \ud83d\udc4f\ud83d\udca6 YOUR \ud83d\udc4f\ud83d\udca6 HANDS\ud83d\udc4f\ud83d\udca6\n\nWith - coronavirus cases in nearly 50 countries, there\u2019s never been a better - time to brus\u2026 https:\/\/t.co\/7kM6b2BYDT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7kM6b2BYDT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234497922768809984","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2347049341,"id_str":"2347049341","name":"Vox","screen_name":"voxdotcom","location":"","description":"Understand - the news. Subscribe to our daily explainer podcast: https:\/\/t.co\/KxSxa4Ijqx","url":"http:\/\/t.co\/RnqX4a68G1","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/RnqX4a68G1","expanded_url":"http:\/\/vox.com","display_url":"vox.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/KxSxa4Ijqx","expanded_url":"http:\/\/bit.ly\/Today-Explained","display_url":"bit.ly\/Today-Explained","indices":[63,86]}]}},"protected":false,"followers_count":906688,"friends_count":282,"listed_count":16428,"created_at":"Sun - Feb 16 15:46:00 +0000 2014","favourites_count":2651,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":118953,"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\/807306191395241984\/s8xmWAvU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/807306191395241984\/s8xmWAvU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2347049341\/1522707898","profile_link_color":"67818B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":167,"favorite_count":199,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":167,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552159412224,"id_str":"1234518552159412224","text":"RT - @JuanPdeMungia: AL PARECER YA HAY UN CASO DE CORONAVIRUS EN RNE\nPor tanto - la RTVE deber\u00eda entrar en cuarentena, por lo menos dejariamos\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JuanPdeMungia","name":"Juan - P\u00e9rez de Mung\u00eda","id":758762724948148225,"id_str":"758762724948148225","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":585396417,"id_str":"585396417","name":"miguel - \u00e1ngel \ud83c\uddea\ud83c\uddf8","screen_name":"miguel_aiki","location":"espa\u00f1a","description":"\ud83c\uddea\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":876,"friends_count":1278,"listed_count":0,"created_at":"Sun - May 20 03:13:44 +0000 2012","favourites_count":5639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66862,"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":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:50:30 +0000 2020","id":1234506375792930818,"id_str":"1234506375792930818","text":"AL - PARECER YA HAY UN CASO DE CORONAVIRUS EN RNE\nPor tanto la RTVE deber\u00eda - entrar en cuarentena, por lo menos dejari\u2026 https:\/\/t.co\/kxwhYc05ju","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kxwhYc05ju","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234506375792930818","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":758762724948148225,"id_str":"758762724948148225","name":"Juan - P\u00e9rez de Mung\u00eda","screen_name":"JuanPdeMungia","location":"Vizcaya","description":"Metanoticias. - Noticias de noticias. Periodismo circular. Fotograf\u00edo ciudades a gran - altura. Escribo a ratos en https:\/\/t.co\/XnDaUOvpyH","url":"https:\/\/t.co\/gSCg7ZBXi3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gSCg7ZBXi3","expanded_url":"http:\/\/www.nonews.es","display_url":"nonews.es","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/XnDaUOvpyH","expanded_url":"http:\/\/elcierredigital.com","display_url":"elcierredigital.com","indices":[111,134]}]}},"protected":false,"followers_count":28101,"friends_count":23372,"listed_count":44,"created_at":"Thu - Jul 28 20:35:05 +0000 2016","favourites_count":32597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9010,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848466354680279040\/vh5mPtLr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848466354680279040\/vh5mPtLr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/758762724948148225\/1583096664","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":71,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552146776064,"id_str":"1234518552146776064","text":"RT - @jxeker: everyone: we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jxeker","name":"joe","id":2745274901,"id_str":"2745274901","indices":[3,10]}],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901"}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901","video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":739345502735630336,"id_str":"739345502735630336","name":"hugslut","screen_name":"IkaynatYounis","location":"Lahore, - Pakistan","description":"Socially anxious and utterly dysphoric","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":146,"listed_count":0,"created_at":"Sun - Jun 05 06:37:59 +0000 2016","favourites_count":1020,"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\/1128800194945048576\/oNk_NTRy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1128800194945048576\/oNk_NTRy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/739345502735630336\/1582369774","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 17:58:07 +0000 2020","id":1234176102362419202,"id_str":"1234176102362419202","text":"everyone: - we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35880,"favorite_count":117231,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35880,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552121528323,"id_str":"1234518552121528323","text":"RT - @CNNPolitics: Negotiators move closer to deal for coronavirus, expected to - exceed White House request https:\/\/t.co\/oqsVxA0lw2 https:\/\/t.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNNPolitics","name":"CNN - Politics","id":13850422,"id_str":"13850422","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/oqsVxA0lw2","expanded_url":"https:\/\/cnn.it\/38dziv2","display_url":"cnn.it\/38dziv2","indices":[105,128]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":891675165867687937,"id_str":"891675165867687937","name":"Yeah\uff01Its - me\uff01\ud83c\uddfa\ud83c\uddf8","screen_name":"robertfilmaker","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":197,"listed_count":0,"created_at":"Sun - Jul 30 15:01:40 +0000 2017","favourites_count":20175,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2463,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/891678343099064321\/fxAA_qQO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/891678343099064321\/fxAA_qQO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:21:34 +0000 2020","id":1234514194394963968,"id_str":"1234514194394963968","text":"Negotiators - move closer to deal for coronavirus, expected to exceed White House request - https:\/\/t.co\/oqsVxA0lw2 https:\/\/t.co\/tTtERdIhtE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oqsVxA0lw2","expanded_url":"https:\/\/cnn.it\/38dziv2","display_url":"cnn.it\/38dziv2","indices":[88,111]}],"media":[{"id":1234514192323010560,"id_str":"1234514192323010560","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHgHf-XYAAmROY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHgHf-XYAAmROY.jpg","url":"https:\/\/t.co\/tTtERdIhtE","display_url":"pic.twitter.com\/tTtERdIhtE","expanded_url":"https:\/\/twitter.com\/CNNPolitics\/status\/1234514194394963968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1100,"h":619,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1100,"h":619,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234514192323010560,"id_str":"1234514192323010560","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHgHf-XYAAmROY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHgHf-XYAAmROY.jpg","url":"https:\/\/t.co\/tTtERdIhtE","display_url":"pic.twitter.com\/tTtERdIhtE","expanded_url":"https:\/\/twitter.com\/CNNPolitics\/status\/1234514194394963968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1100,"h":619,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1100,"h":619,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":13850422,"id_str":"13850422","name":"CNN - Politics","screen_name":"CNNPolitics","location":"Washington, D.C.","description":"Political - news, campaign stories and Washington coverage from CNN''s political team.","url":"https:\/\/t.co\/KWFMkrEjdY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KWFMkrEjdY","expanded_url":"http:\/\/cnn.com\/politics","display_url":"cnn.com\/politics","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3148774,"friends_count":345,"listed_count":17046,"created_at":"Sat - Feb 23 03:12:49 +0000 2008","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":172532,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"100F14","profile_background_image_url":"http:\/\/abs.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\/918899077168934912\/NrRRE0_b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918899077168934912\/NrRRE0_b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13850422\/1503504077","profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F1F5E7","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":23,"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":true,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552109031424,"id_str":"1234518552109031424","text":"RT - @HeshmatAlavi: Reminder:\n\n-The U.S. offered #Iran aid to properly address - the #coronavirus epidemic.\n\n-The regime in Iran refused, leavi\u2026","truncated":false,"entities":{"hashtags":[{"text":"Iran","indices":[47,52]},{"text":"coronavirus","indices":[81,93]}],"symbols":[],"user_mentions":[{"screen_name":"HeshmatAlavi","name":"Heshmat - Alavi","id":2554131522,"id_str":"2554131522","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1005669152,"id_str":"1005669152","name":"Nugra - Ze","screen_name":"nugrazee","location":"@Borneo","description":"Penulis & - petualang, berkhidmat untuk Allah ^_^","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":791,"friends_count":624,"listed_count":21,"created_at":"Wed - Dec 12 05:44:50 +0000 2012","favourites_count":144454,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":71409,"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\/1041591429607223301\/vp2pDgK5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041591429607223301\/vp2pDgK5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1005669152\/1537155555","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:08:20 +0000 2020","id":1234510863907815425,"id_str":"1234510863907815425","text":"Reminder:\n\n-The - U.S. offered #Iran aid to properly address the #coronavirus epidemic.\n\n-The - regime in Iran refused,\u2026 https:\/\/t.co\/OcGfelTpLr","truncated":true,"entities":{"hashtags":[{"text":"Iran","indices":[29,34]},{"text":"coronavirus","indices":[63,75]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OcGfelTpLr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510863907815425","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2554131522,"id_str":"2554131522","name":"Heshmat - Alavi","screen_name":"HeshmatAlavi","location":"","description":"Covering - #Iran & #MidEast, especially what MSM won''t.\n\nHave a passion for exposing - Tehran apologists\/lobbyists.\n\nBlocked by mullahs'' dictator @Khamenei_ir","url":"https:\/\/t.co\/PlClaFPJzp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PlClaFPJzp","expanded_url":"https:\/\/irancommentary.wordpress.com","display_url":"irancommentary.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":64006,"friends_count":353,"listed_count":866,"created_at":"Sun - Jun 08 07:41:33 +0000 2014","favourites_count":36668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":61672,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/802870581406396416\/taDpDh4t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/802870581406396416\/taDpDh4t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2554131522\/1555577487","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":209,"favorite_count":285,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":209,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518552092143616,"id_str":"1234518552092143616","text":"RT - @Back2Americans: Dr. Drew nails it in this video.\n\nThe Liberal Media\u2019s - manipulation of the facts and\/or reporting half-truths were expos\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Back2Americans","name":"Franck - Moore","id":923117164181176320,"id_str":"923117164181176320","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1079910863849439233,"id_str":"1079910863849439233","name":"Templeton - Graves \ud83d\udddd","screen_name":"TempletonGraves","location":"Tacoma, WA","description":"#KAG2020 - \"Always Fight Like You''re Behind\" #TRUMP2020\n\n\u270dFounder GKC\ud83d\udddd\n\nSecuring - the Blessings of Liberty.\n\n\u270dFounder & President of ''The Factory \ud83d\udddd''","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4339,"friends_count":5003,"listed_count":0,"created_at":"Tue - Jan 01 01:23:08 +0000 2019","favourites_count":5434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3124,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224819524303638528\/ROVUBChS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224819524303638528\/ROVUBChS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1079910863849439233\/1581018885","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 05:48:11 +0000 2020","id":1234354799178584065,"id_str":"1234354799178584065","text":"Dr. - Drew nails it in this video.\n\nThe Liberal Media\u2019s manipulation of the - facts and\/or reporting half-truths were e\u2026 https:\/\/t.co\/Lmr8x7Je3g","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Lmr8x7Je3g","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234354799178584065","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":923117164181176320,"id_str":"923117164181176320","name":"Franck - Moore","screen_name":"Back2Americans","location":"United States","description":"Pragmatic - & bold thinker in a world full of partisan tug-of-war \u2022 US Immigrant - family \u2022 Uniquely multi-cultured \u2022 Highly experienced internationally - \u2022 #KAG2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11390,"friends_count":11274,"listed_count":6,"created_at":"Wed - Oct 25 09:20:57 +0000 2017","favourites_count":12771,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10958,"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\/1213872360631259136\/sLqLb4S1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213872360631259136\/sLqLb4S1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/923117164181176320\/1575223161","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":728,"favorite_count":836,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":728,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551840591874,"id_str":"1234518551840591874","text":"RT - @GreyPict: Infected people may handle Newspapers from prod. to your shop. - Newspapers may be a big factor in spreading CoronaVirus to all\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GreyPict","name":"GreyPict","id":4532584277,"id_str":"4532584277","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":891148669,"id_str":"891148669","name":"rab - urquhart","screen_name":"raburquhart","location":"","description":"Cranky - poetry loving Edinburger livin'' in Cork","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":410,"friends_count":762,"listed_count":1,"created_at":"Fri - Oct 19 14:57:53 +0000 2012","favourites_count":47187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2240,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114210093808193541\/Mv4ygpwe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114210093808193541\/Mv4ygpwe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:31:07 +0000 2020","id":1234486398834683905,"id_str":"1234486398834683905","text":"Infected - people may handle Newspapers from prod. to your shop. Newspapers may be a - big factor in spreading CoronaVi\u2026 https:\/\/t.co\/aBz5TARcNO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aBz5TARcNO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234486398834683905","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4532584277,"id_str":"4532584277","name":"GreyPict","screen_name":"GreyPict","location":"Dont - ask for freedom, take it.","description":"Born on Scottish snow. Burned under - African sun. Early retired & returned Greybeard. Motorcyclist. SNP & Independence - Footsoldier.\nPromotes Scottish Innovation","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":957,"friends_count":1199,"listed_count":0,"created_at":"Sat - Dec 19 06:18:56 +0000 2015","favourites_count":14586,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8402,"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\/1098919139295617025\/xK7w20ob_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1098919139295617025\/xK7w20ob_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4532584277\/1551088333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":73,"favorite_count":218,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":73,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551790280704,"id_str":"1234518551790280704","text":"@realDonaldTrump - Please stop spreading lies ur own son wishin democrats would die of the coronavirus - is disgusting\u2026 https:\/\/t.co\/zJTlprQ0BJ","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\/zJTlprQ0BJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518551790280704","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234462291652993032,"in_reply_to_status_id_str":"1234462291652993032","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","user":{"id":4229201873,"id_str":"4229201873","name":"Edward - Robinson","screen_name":"EdwardR53667100","location":"Gateshead, England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":155,"listed_count":0,"created_at":"Thu - Nov 19 20:54:21 +0000 2015","favourites_count":1979,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/744853453600591872\/hphRM2_x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/744853453600591872\/hphRM2_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":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551643459585,"id_str":"1234518551643459585","text":"RT - @BBdemanda: I don''t know who needs to hear this, but coronavirus has always - been around. It causes the common cold. There are different\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBdemanda","name":"Amanda - Almora, Jr.","id":763336775997624321,"id_str":"763336775997624321","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":803038853548429312,"id_str":"803038853548429312","name":"cincin - \ud83c\udd98","screen_name":"cincinsays","location":"Colorado high desert","description":"Mom, - g''ma, biz woman, teacher, animal lover. Family and Country first. #TheResistance, - #NeverAgain #SAVEDACA #PR #StandWithReality #ImpeachAndRemove","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2060,"friends_count":5000,"listed_count":10,"created_at":"Mon - Nov 28 00:52:37 +0000 2016","favourites_count":78283,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47606,"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\/1062699674690236416\/XbkH3jov_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062699674690236416\/XbkH3jov_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:18:55 +0000 2020","id":1234483325433253888,"id_str":"1234483325433253888","text":"I - don''t know who needs to hear this, but coronavirus has always been around. - It causes the common cold. There are d\u2026 https:\/\/t.co\/8y1m5VCPG4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8y1m5VCPG4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234483325433253888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763336775997624321,"id_str":"763336775997624321","name":"Amanda - Almora, Jr.","screen_name":"BBdemanda","location":"United States","description":"BBCAN, - BBUS, Survivor, reality trash. \u26be\ufe0f Cubs. Sober af. Runner.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":903,"friends_count":511,"listed_count":6,"created_at":"Wed - Aug 10 11:30:44 +0000 2016","favourites_count":74367,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36672,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234324261109665792\/BZ93Y9Oq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234324261109665792\/BZ93Y9Oq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763336775997624321\/1582428027","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":19,"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551609958401,"id_str":"1234518551609958401","text":"RT - @JMilei: Hace unos d\u00edas estaba mirando TV y encontr\u00e9 a una persona - que con una total convicci\u00f3n afirmaba que las muertes causadas por el\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JMilei","name":"Javier - Milei","id":4020276615,"id_str":"4020276615","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164480317,"id_str":"164480317","name":"Emanuel - Nu\u00f1ez","screen_name":"emanuelnun","location":"Uruguay,Montevideo","description":"Comprometido - con @laduendamaldita \u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","url":"https:\/\/t.co\/oFVnombqpf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oFVnombqpf","expanded_url":"http:\/\/youtube.com\/emanuelmas95","display_url":"youtube.com\/emanuelmas95","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":128,"listed_count":0,"created_at":"Fri - Jul 09 00:13:15 +0000 2010","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1257,"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\/1228307994200416257\/po7YCRf1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228307994200416257\/po7YCRf1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164480317\/1463864263","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 19:51:39 +0000 2020","id":1234204673613144067,"id_str":"1234204673613144067","text":"Hace - unos d\u00edas estaba mirando TV y encontr\u00e9 a una persona que con una - total convicci\u00f3n afirmaba que las muertes cau\u2026 https:\/\/t.co\/m1ExaguENE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m1ExaguENE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234204673613144067","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4020276615,"id_str":"4020276615","name":"Javier - Milei","screen_name":"JMilei","location":"Buenos Aires, Argentina","description":"Economista","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":284173,"friends_count":1138,"listed_count":771,"created_at":"Thu - Oct 22 23:47:47 +0000 2015","favourites_count":237564,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":99659,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657346882889498624\/zychb_4j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657346882889498624\/zychb_4j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4020276615\/1458666862","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2065,"favorite_count":7995,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":2065,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551559593990,"id_str":"1234518551559593990","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":911888395,"id_str":"911888395","name":"\ud83c\udf0a","screen_name":"unikntn","location":"Kuala - Lumpur, Wilayah Persekutuan Kuala Lumpur","description":"you never know how - strong you are until being strong is the only choice you have","url":"https:\/\/t.co\/tniIYKKVlu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tniIYKKVlu","expanded_url":"http:\/\/Instagram.com\/unikintan","display_url":"Instagram.com\/unikintan","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":239,"friends_count":278,"listed_count":0,"created_at":"Mon - Oct 29 06:43:48 +0000 2012","favourites_count":7478,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21604,"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\/1225284723053740032\/BvV4BOyG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225284723053740032\/BvV4BOyG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/911888395\/1580923336","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153508,"favorite_count":478712,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153508,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551534489601,"id_str":"1234518551534489601","text":"RT - @brasil247: Igreja Evang\u00e9lica promete imuniza\u00e7\u00e3o contra coronav\u00edrus - e pode ser investigada por charlatanismo https:\/\/t.co\/vsm9rF3mCf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brasil247","name":"Brasil - 247","id":248890506,"id_str":"248890506","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/vsm9rF3mCf","expanded_url":"https:\/\/www.brasil247.com\/regionais\/sul\/igreja-evangelica-promete-imunizacao-contra-coronavirus-e-pode-ser-investigada-por-charlatanismo","display_url":"brasil247.com\/regionais\/sul\/\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1058510955053809664,"id_str":"1058510955053809664","name":"Eliana - Rocha","screen_name":"ElianadaCruzRo1","location":"Rio de Janeiro, Brasil","description":"\ud83d\udea9\ud83d\udea9\ud83d\udea9","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1669,"friends_count":1439,"listed_count":4,"created_at":"Sat - Nov 03 00:07:32 +0000 2018","favourites_count":128249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":108802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186803419148931077\/D_kfyobh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186803419148931077\/D_kfyobh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1058510955053809664\/1563505312","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:39:58 +0000 2020","id":1234503722383925254,"id_str":"1234503722383925254","text":"Igreja - Evang\u00e9lica promete imuniza\u00e7\u00e3o contra coronav\u00edrus e pode - ser investigada por charlatanismo https:\/\/t.co\/vsm9rF3mCf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vsm9rF3mCf","expanded_url":"https:\/\/www.brasil247.com\/regionais\/sul\/igreja-evangelica-promete-imunizacao-contra-coronavirus-e-pode-ser-investigada-por-charlatanismo","display_url":"brasil247.com\/regionais\/sul\/\u2026","indices":[97,120]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248890506,"id_str":"248890506","name":"Brasil - 247","screen_name":"brasil247","location":"S\u00e3o Paulo, SP","description":"Jornal - digital progressista, 24 horas por dia 7 dias por semana. Assine (https:\/\/t.co\/5OgeB1ACSn) - ou seja membro (https:\/\/t.co\/DjbGVZnG7y)","url":"https:\/\/t.co\/zZ2BM84Xhx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zZ2BM84Xhx","expanded_url":"http:\/\/www.brasil247.com","display_url":"brasil247.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/5OgeB1ACSn","expanded_url":"http:\/\/brasil247.com\/apoio","display_url":"brasil247.com\/apoio","indices":[73,96]},{"url":"https:\/\/t.co\/DjbGVZnG7y","expanded_url":"https:\/\/www.youtube.com\/brasil247\/join","display_url":"youtube.com\/brasil247\/join","indices":[114,137]}]}},"protected":false,"followers_count":347443,"friends_count":387,"listed_count":1364,"created_at":"Mon - Feb 07 23:03:07 +0000 2011","favourites_count":461,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":168372,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/941003367744188416\/VwzYMubx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/941003367744188416\/VwzYMubx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248890506\/1570543609","profile_link_color":"005FA7","profile_sidebar_border_color":"EBEBEB","profile_sidebar_fill_color":"EBEBEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":482,"favorite_count":1341,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":482,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551521906688,"id_str":"1234518551521906688","text":"RT - @jxeker: everyone: we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jxeker","name":"joe","id":2745274901,"id_str":"2745274901","indices":[3,10]}],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901"}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901","video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1167934298198106112,"id_str":"1167934298198106112","name":"cam\u2661","screen_name":"dreamy_cami","location":"Los - Angeles, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":178,"listed_count":1,"created_at":"Sat - Aug 31 22:56:57 +0000 2019","favourites_count":1249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230576794958430208\/YcVED7Fu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230576794958430208\/YcVED7Fu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1167934298198106112\/1582379852","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 17:58:07 +0000 2020","id":1234176102362419202,"id_str":"1234176102362419202","text":"everyone: - we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35880,"favorite_count":117231,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35880,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551454724096,"id_str":"1234518551454724096","text":"Coronavirus, - Iran: morto funzionario vicino a Khamenei. Casi a New York e in Australia - https:\/\/t.co\/CYtXm1l74z","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CYtXm1l74z","expanded_url":"https:\/\/www.informazione.it\/a\/84BC4A80-B1B6-4538-A4F7-A553C924A71B\/Coronavirus-Iran-morto-funzionario-vicino-a-Khamenei-Casi-a-New-York-e-in-Australia","display_url":"informazione.it\/a\/84BC4A80-B1B\u2026","indices":[87,110]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.informazione.it\" rel=\"nofollow\"\u003eTweet Informazione\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317679514,"id_str":"317679514","name":"informazione - estero","screen_name":"infoitestero","location":"Italia","description":"Sezione - Dall''Estero di informazione.it. In tempo reale, le notizie aggregate di cronaca - e politica che accadono nel mondo.","url":"http:\/\/t.co\/5ZOt5rffvD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/5ZOt5rffvD","expanded_url":"http:\/\/www.informazione.it\/newssection.aspx?sectionid=0cda213f-7140-4206-ad32-aa1e12c0d74a","display_url":"informazione.it\/newssection.as\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":545,"friends_count":0,"listed_count":62,"created_at":"Wed - Jun 15 09:21:53 +0000 2011","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1115425,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660114464453337088\/m1G0Z0hu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660114464453337088\/m1G0Z0hu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317679514\/1446218555","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551349907456,"id_str":"1234518551349907456","text":"Global - central banks hint at action after coronavirus sparks market rout \n\nhttps:\/\/t.co\/BWk6wVXkQ3 - https:\/\/t.co\/bgeIXjgyHF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BWk6wVXkQ3","expanded_url":"https:\/\/www.cnbc.com\/2020\/03\/02\/ecb-says-it-stands-ready-to-act-amid-coronavirus-uncertainty.html?__source=sharebar|twitter&par=sharebar","display_url":"cnbc.com\/2020\/03\/02\/ecb\u2026","indices":[75,98]}],"media":[{"id":1234518535545683969,"id_str":"1234518535545683969","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkETvWAAE_ucj.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkETvWAAE_ucj.png","url":"https:\/\/t.co\/bgeIXjgyHF","display_url":"pic.twitter.com\/bgeIXjgyHF","expanded_url":"https:\/\/twitter.com\/DeltaFo33823525\/status\/1234518551349907456\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":360,"resize":"fit"},"small":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1234518535545683969,"id_str":"1234518535545683969","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkETvWAAE_ucj.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkETvWAAE_ucj.png","url":"https:\/\/t.co\/bgeIXjgyHF","display_url":"pic.twitter.com\/bgeIXjgyHF","expanded_url":"https:\/\/twitter.com\/DeltaFo33823525\/status\/1234518551349907456\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":360,"resize":"fit"},"small":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1218759089708158977,"id_str":"1218759089708158977","name":"Delta - Fox","screen_name":"DeltaFo33823525","location":"","description":"Conservative - Judo-Christian who adheres to the Rule of Law \ud83c\uddfa\ud83c\uddf8\ud83c\udde8\ud83c\udde6, - and a defender of our Constitutional Law \ud83c\uddfa\ud83c\uddf8 \ud83c\udde8\ud83c\udde6.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":23,"listed_count":0,"created_at":"Sun - Jan 19 04:57:04 +0000 2020","favourites_count":149,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2631,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218759966800003072\/jj6Iozla_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218759966800003072\/jj6Iozla_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1218759089708158977\/1579411939","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551307804673,"id_str":"1234518551307804673","text":"RT - @heraldodemexico: #TalCual la opini\u00f3n de @alarcondibujos \ud83c\udfa8\ud83d\udc68\u200d\ud83c\udfa8\u27a1\ufe0fhttps:\/\/t.co\/IVTE7GKwtb - https:\/\/t.co\/jS61aeIMiC","truncated":false,"entities":{"hashtags":[{"text":"TalCual","indices":[21,29]}],"symbols":[],"user_mentions":[{"screen_name":"heraldodemexico","name":"El - Heraldo de M\u00e9xico","id":846899281806082053,"id_str":"846899281806082053","indices":[3,19]},{"screen_name":"alarcondibujos","name":"ALARC\u00d3N","id":89053160,"id_str":"89053160","indices":[44,59]}],"urls":[{"url":"https:\/\/t.co\/IVTE7GKwtb","expanded_url":"http:\/\/bit.ly\/39gd90p","display_url":"bit.ly\/39gd90p","indices":[66,89]}],"media":[{"id":1234462194592555010,"id_str":"1234462194592555010","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGw01VWoAIeKvu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGw01VWoAIeKvu.jpg","url":"https:\/\/t.co\/jS61aeIMiC","display_url":"pic.twitter.com\/jS61aeIMiC","expanded_url":"https:\/\/twitter.com\/heraldodemexico\/status\/1234467241535721477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1772,"h":1270,"resize":"fit"},"small":{"w":680,"h":487,"resize":"fit"},"medium":{"w":1200,"h":860,"resize":"fit"}},"source_status_id":1234467241535721477,"source_status_id_str":"1234467241535721477","source_user_id":846899281806082053,"source_user_id_str":"846899281806082053"}]},"extended_entities":{"media":[{"id":1234462194592555010,"id_str":"1234462194592555010","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGw01VWoAIeKvu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGw01VWoAIeKvu.jpg","url":"https:\/\/t.co\/jS61aeIMiC","display_url":"pic.twitter.com\/jS61aeIMiC","expanded_url":"https:\/\/twitter.com\/heraldodemexico\/status\/1234467241535721477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1772,"h":1270,"resize":"fit"},"small":{"w":680,"h":487,"resize":"fit"},"medium":{"w":1200,"h":860,"resize":"fit"}},"source_status_id":1234467241535721477,"source_status_id_str":"1234467241535721477","source_user_id":846899281806082053,"source_user_id_str":"846899281806082053"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":601555217,"id_str":"601555217","name":"Ernesto - Vazquez Orta","screen_name":"piritaorta","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":237,"friends_count":581,"listed_count":6,"created_at":"Thu - Jun 07 04:37:43 +0000 2012","favourites_count":21652,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33447,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2285994962\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2285994962\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601555217\/1397149229","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:15:00 +0000 2020","id":1234467241535721477,"id_str":"1234467241535721477","text":"#TalCual - la opini\u00f3n de @alarcondibujos \ud83c\udfa8\ud83d\udc68\u200d\ud83c\udfa8\u27a1\ufe0fhttps:\/\/t.co\/IVTE7GKwtb - https:\/\/t.co\/jS61aeIMiC","truncated":false,"entities":{"hashtags":[{"text":"TalCual","indices":[0,8]}],"symbols":[],"user_mentions":[{"screen_name":"alarcondibujos","name":"ALARC\u00d3N","id":89053160,"id_str":"89053160","indices":[23,38]}],"urls":[{"url":"https:\/\/t.co\/IVTE7GKwtb","expanded_url":"http:\/\/bit.ly\/39gd90p","display_url":"bit.ly\/39gd90p","indices":[45,68]}],"media":[{"id":1234462194592555010,"id_str":"1234462194592555010","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGw01VWoAIeKvu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGw01VWoAIeKvu.jpg","url":"https:\/\/t.co\/jS61aeIMiC","display_url":"pic.twitter.com\/jS61aeIMiC","expanded_url":"https:\/\/twitter.com\/heraldodemexico\/status\/1234467241535721477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1772,"h":1270,"resize":"fit"},"small":{"w":680,"h":487,"resize":"fit"},"medium":{"w":1200,"h":860,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234462194592555010,"id_str":"1234462194592555010","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGw01VWoAIeKvu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGw01VWoAIeKvu.jpg","url":"https:\/\/t.co\/jS61aeIMiC","display_url":"pic.twitter.com\/jS61aeIMiC","expanded_url":"https:\/\/twitter.com\/heraldodemexico\/status\/1234467241535721477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1772,"h":1270,"resize":"fit"},"small":{"w":680,"h":487,"resize":"fit"},"medium":{"w":1200,"h":860,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":846899281806082053,"id_str":"846899281806082053","name":"El - Heraldo de M\u00e9xico","screen_name":"heraldodemexico","location":"","description":"Somos - Heraldo Media Group, la evoluci\u00f3n de esta casa editorial en una multiplataforma - que integra a un diario impreso, digital, televisi\u00f3n y radio.","url":"https:\/\/t.co\/TZqIzTUNZw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TZqIzTUNZw","expanded_url":"http:\/\/heraldodemexico.com.mx","display_url":"heraldodemexico.com.mx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":182305,"friends_count":895,"listed_count":874,"created_at":"Wed - Mar 29 01:38:18 +0000 2017","favourites_count":732,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":161618,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186266713207267329\/BZ2L1JqS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186266713207267329\/BZ2L1JqS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/846899281806082053\/1582403679","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":236,"favorite_count":693,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":236,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551211450368,"id_str":"1234518551211450368","text":"#CoronaOutbreak - hat auch die #Energiewirtschaft erfasst. Messen werden verschoben, die Handelsm\u00e4rkte - reagieren und\u2026 https:\/\/t.co\/PFPABUUtx4","truncated":true,"entities":{"hashtags":[{"text":"CoronaOutbreak","indices":[0,15]},{"text":"Energiewirtschaft","indices":[29,47]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PFPABUUtx4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518551211450368","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1585925018,"id_str":"1585925018","name":"energate - messenger+","screen_name":"energate_news","location":"Essen & Berlin","description":"Der - energate messenger+ liefert t\u00e4glich das Wichtigste zum gesamten Energiemarkt.","url":"https:\/\/t.co\/k8ns0ahbfI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k8ns0ahbfI","expanded_url":"http:\/\/www.energate-messenger.de","display_url":"energate-messenger.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3829,"friends_count":903,"listed_count":91,"created_at":"Thu - Jul 11 13:55:40 +0000 2013","favourites_count":609,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3450,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"808080","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/698149615976259584\/VtNO4Fi5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/698149615976259584\/VtNO4Fi5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1585925018\/1542638302","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"},"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":"de"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551140143105,"id_str":"1234518551140143105","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1207423701458784258,"id_str":"1207423701458784258","name":"bringbensoloback","screen_name":"givebensoloback","location":"","description":"\u201cPlease - bring Ben Solo back. He\u2019s our only hope.\u201d ~ In this house we respect - Rey of Jakku","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":53,"listed_count":0,"created_at":"Wed - Dec 18 22:13:48 +0000 2019","favourites_count":6015,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1984,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207423987468423170\/5sABREU6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207423987468423170\/5sABREU6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153508,"favorite_count":478712,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153508,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518551014232072,"id_str":"1234518551014232072","text":"Coronavirus - is just the start. Something far worse is coming. https:\/\/t.co\/THA7KhXVcE - via @YouTube","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[90,98]}],"urls":[{"url":"https:\/\/t.co\/THA7KhXVcE","expanded_url":"https:\/\/youtu.be\/gnQL-brI-9I","display_url":"youtu.be\/gnQL-brI-9I","indices":[62,85]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1912450934,"id_str":"1912450934","name":"Michaela - Maestas","screen_name":"MichaelaMaestas","location":"Albuquerque, NM","description":"Mother - Bosque Gardens","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":694,"friends_count":3781,"listed_count":44,"created_at":"Fri - Sep 27 22:16:57 +0000 2013","favourites_count":2785,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12435,"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\/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\/928680778371776512\/IEPLVUtH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928680778371776512\/IEPLVUtH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1912450934\/1577490141","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550896881665,"id_str":"1234518550896881665","text":"RT - @WHO: LIVE daily media briefing on #COVID19 with @DrTedros #coronavirus https:\/\/t.co\/bFQNRfyRfx","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[38,46]},{"text":"coronavirus","indices":[62,74]}],"symbols":[],"user_mentions":[{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[3,7]},{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[52,61]}],"urls":[{"url":"https:\/\/t.co\/bFQNRfyRfx","expanded_url":"https:\/\/www.pscp.tv\/w\/cSvNuTI2MTAyMHwxcm14UEFWTndnaktOTlvLQG6St4vZRNhc7-z2lOOioKjUWHqfdW55kLrqxQc=","display_url":"pscp.tv\/w\/cSvNuTI2MTAy\u2026","indices":[75,98]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1064965722206601216,"id_str":"1064965722206601216","name":"Susan - Allison-Dean,RN,MS, AHN-BC,CCAP","screen_name":"TheNatureNurse2","location":"NY, - NC, Outside","description":"Founder of @TheNatureNurse| Board Certified Advanced - Holistic Nurse| Author: https:\/\/t.co\/fM639xJWQW| #Nurse #Author #Nature - #BlueMind","url":"https:\/\/t.co\/cb1fvHkepW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cb1fvHkepW","expanded_url":"http:\/\/www.TheNatureNurse.com","display_url":"TheNatureNurse.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fM639xJWQW","expanded_url":"http:\/\/www.susanallisondean.com","display_url":"susanallisondean.com","indices":[77,100]}]}},"protected":false,"followers_count":193,"friends_count":260,"listed_count":2,"created_at":"Tue - Nov 20 19:36:29 +0000 2018","favourites_count":621,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1091,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1064969541300748288\/2V-JVdpG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064969541300748288\/2V-JVdpG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1064965722206601216\/1542743562","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:35:21 +0000 2020","id":1234502562209878016,"id_str":"1234502562209878016","text":"LIVE - daily media briefing on #COVID19 with @DrTedros #coronavirus https:\/\/t.co\/bFQNRfyRfx","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[29,37]},{"text":"coronavirus","indices":[53,65]}],"symbols":[],"user_mentions":[{"screen_name":"DrTedros","name":"Tedros - Adhanom Ghebreyesus","id":189868631,"id_str":"189868631","indices":[43,52]}],"urls":[{"url":"https:\/\/t.co\/bFQNRfyRfx","expanded_url":"https:\/\/www.pscp.tv\/w\/cSvNuTI2MTAyMHwxcm14UEFWTndnaktOTlvLQG6St4vZRNhc7-z2lOOioKjUWHqfdW55kLrqxQc=","display_url":"pscp.tv\/w\/cSvNuTI2MTAy\u2026","indices":[66,89]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14499829,"id_str":"14499829","name":"World - Health Organization (WHO)","screen_name":"WHO","location":"Geneva, Switzerland","description":"We - are the #UnitedNations\u2019 health agency. We are committed to achieving - better health for everyone, everywhere - #HealthForAll","url":"https:\/\/t.co\/wVulKuROWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wVulKuROWG","expanded_url":"http:\/\/www.who.int","display_url":"who.int","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5601271,"friends_count":1716,"listed_count":27213,"created_at":"Wed - Apr 23 19:56:27 +0000 2008","favourites_count":10494,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":48212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D0ECF8","profile_background_image_url":"http:\/\/abs.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\/875476478988886016\/_l61qZdR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875476478988886016\/_l61qZdR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14499829\/1582794472","profile_link_color":"0396DB","profile_sidebar_border_color":"8C8C8C","profile_sidebar_fill_color":"D9D9D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1030,"favorite_count":1180,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1030,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550796091392,"id_str":"1234518550796091392","text":"RT - @gongalery: En M\u00e9xico estamos muy preocupados por la llegada del COV-19, - pero les tengo un dato:\n\n\ud83c\udf0eMuertes por coronavirus a nivel mundi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gongalery","name":"Elver - Dugo","id":385757584,"id_str":"385757584","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":746109721912868866,"id_str":"746109721912868866","name":"jaydu - Fox","screen_name":"aideecamarillo2","location":"","description":"Hija de - Dios\ud83d\ude4f, amo a los \ud83d\udc36","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":171,"listed_count":0,"created_at":"Thu - Jun 23 22:36:34 +0000 2016","favourites_count":7561,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":683,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234207337503543297\/o_L4wu_7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234207337503543297\/o_L4wu_7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/746109721912868866\/1583092934","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 03:15:39 +0000 2020","id":1234316410781720580,"id_str":"1234316410781720580","text":"En - M\u00e9xico estamos muy preocupados por la llegada del COV-19, pero les tengo - un dato:\n\n\ud83c\udf0eMuertes por coronavirus a ni\u2026 https:\/\/t.co\/l8UTAt6KBg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/l8UTAt6KBg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234316410781720580","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":385757584,"id_str":"385757584","name":"Elver - Dugo","screen_name":"gongalery","location":"","description":"Deja que la vida - te sorprenda, pero que no te sorprendan en la vida... Si no entiendes el sarcasmo, - mejor ni me sigas! #TuXMexico","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21879,"friends_count":1809,"listed_count":32,"created_at":"Thu - Oct 06 02:26:13 +0000 2011","favourites_count":80447,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33791,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195423590000332802\/XwEXuzZ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195423590000332802\/XwEXuzZ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/385757584\/1582303371","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1692,"favorite_count":5270,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1692,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550771097601,"id_str":"1234518550771097601","text":"RT - @mike_stnm: Go au taff parler du coronavirus avec mes coll\u00e8gues https:\/\/t.co\/U91PAuCdrw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mike_stnm","name":"\ud835\udcdc\ud835\udcf2\ud835\udcf4\ud835\udd02 - \u2728","id":1144183325193646080,"id_str":"1144183325193646080","indices":[3,13]}],"urls":[],"media":[{"id":1232067735993057281,"id_str":"1232067735993057281","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1232067735993057281\/pu\/img\/ytEOiuTr-vcjyWLH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1232067735993057281\/pu\/img\/ytEOiuTr-vcjyWLH.jpg","url":"https:\/\/t.co\/U91PAuCdrw","display_url":"pic.twitter.com\/U91PAuCdrw","expanded_url":"https:\/\/twitter.com\/Rapunxboy\/status\/1232068509900955648\/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":1232068509900955648,"source_status_id_str":"1232068509900955648","source_user_id":474300267,"source_user_id_str":"474300267"}]},"extended_entities":{"media":[{"id":1232067735993057281,"id_str":"1232067735993057281","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1232067735993057281\/pu\/img\/ytEOiuTr-vcjyWLH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1232067735993057281\/pu\/img\/ytEOiuTr-vcjyWLH.jpg","url":"https:\/\/t.co\/U91PAuCdrw","display_url":"pic.twitter.com\/U91PAuCdrw","expanded_url":"https:\/\/twitter.com\/Rapunxboy\/status\/1232068509900955648\/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":1232068509900955648,"source_status_id_str":"1232068509900955648","source_user_id":474300267,"source_user_id_str":"474300267","video_info":{"aspect_ratio":[9,16],"duration_millis":10075,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1232067735993057281\/pu\/vid\/320x568\/at8Y_RQtHqMlABdB.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1232067735993057281\/pu\/pl\/BycOFliZlmDBiKB7.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1232067735993057281\/pu\/vid\/360x640\/B-RNQa-K9ijiH1ar.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1232067735993057281\/pu\/vid\/720x1280\/ZsaU5mLetzztn5AV.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":710187146427109376,"id_str":"710187146427109376","name":"Ottaib - Ed\ud83c\uddf2\ud83c\udde6","screen_name":"Ottaib59","location":"Armenti\u00e8res, - France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":233,"listed_count":0,"created_at":"Wed - Mar 16 19:33:05 +0000 2016","favourites_count":3375,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2637,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1018281024290213889\/-992nNKV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1018281024290213889\/-992nNKV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/710187146427109376\/1535037969","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:50:47 +0000 2020","id":1234415850737807360,"id_str":"1234415850737807360","text":"Go - au taff parler du coronavirus avec mes coll\u00e8gues https:\/\/t.co\/U91PAuCdrw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1232067735993057281,"id_str":"1232067735993057281","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1232067735993057281\/pu\/img\/ytEOiuTr-vcjyWLH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1232067735993057281\/pu\/img\/ytEOiuTr-vcjyWLH.jpg","url":"https:\/\/t.co\/U91PAuCdrw","display_url":"pic.twitter.com\/U91PAuCdrw","expanded_url":"https:\/\/twitter.com\/Rapunxboy\/status\/1232068509900955648\/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":1232068509900955648,"source_status_id_str":"1232068509900955648","source_user_id":474300267,"source_user_id_str":"474300267"}]},"extended_entities":{"media":[{"id":1232067735993057281,"id_str":"1232067735993057281","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1232067735993057281\/pu\/img\/ytEOiuTr-vcjyWLH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1232067735993057281\/pu\/img\/ytEOiuTr-vcjyWLH.jpg","url":"https:\/\/t.co\/U91PAuCdrw","display_url":"pic.twitter.com\/U91PAuCdrw","expanded_url":"https:\/\/twitter.com\/Rapunxboy\/status\/1232068509900955648\/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":1232068509900955648,"source_status_id_str":"1232068509900955648","source_user_id":474300267,"source_user_id_str":"474300267","video_info":{"aspect_ratio":[9,16],"duration_millis":10075,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1232067735993057281\/pu\/vid\/320x568\/at8Y_RQtHqMlABdB.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1232067735993057281\/pu\/pl\/BycOFliZlmDBiKB7.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1232067735993057281\/pu\/vid\/360x640\/B-RNQa-K9ijiH1ar.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1232067735993057281\/pu\/vid\/720x1280\/ZsaU5mLetzztn5AV.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1144183325193646080,"id_str":"1144183325193646080","name":"\ud835\udcdc\ud835\udcf2\ud835\udcf4\ud835\udd02 - \u2728","screen_name":"mike_stnm","location":"Chromatica","description":"Auteur - de contenu num\u00e9rique","url":"https:\/\/t.co\/Vkkm9B1a6i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Vkkm9B1a6i","expanded_url":"https:\/\/m.youtube.com\/channel\/UCZsMnQUov5xQ_pKspvDZOqA","display_url":"m.youtube.com\/channel\/UCZsMn\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6915,"friends_count":555,"listed_count":6,"created_at":"Thu - Jun 27 09:58:57 +0000 2019","favourites_count":3191,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2582,"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\/1232711265497362432\/2YMvqU4t_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232711265497362432\/2YMvqU4t_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1144183325193646080\/1582735928","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5380,"favorite_count":16899,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":5380,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550632685570,"id_str":"1234518550632685570","text":"RT - @JoeBiden: Only Donald Trump could make the coronavirus about him. This president - is dangerous.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden (Text Join to 30330)","id":939091,"id_str":"939091","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":798334272461537281,"id_str":"798334272461537281","name":"Shadi","screen_name":"ShadiMak34","location":"Buffalo - Grove, IL","description":"Humanitarian MLB Nonprofits. equality for all.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":403,"listed_count":3,"created_at":"Tue - Nov 15 01:18:17 +0000 2016","favourites_count":31317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17384,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158812561929854976\/eO2ojAqN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158812561929854976\/eO2ojAqN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 20:22:18 +0000 2020","id":1234212386850136067,"id_str":"1234212386850136067","text":"Only - Donald Trump could make the coronavirus about him. This president is dangerous. - https:\/\/t.co\/lYGNrAylDW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lYGNrAylDW","expanded_url":"https:\/\/twitter.com\/politico\/status\/1233571350121504769","display_url":"twitter.com\/politico\/statu\u2026","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":939091,"id_str":"939091","name":"Joe - Biden (Text Join to 30330)","screen_name":"JoeBiden","location":"Wilmington, - DE","description":"Senator, Vice President, 2020 candidate for President of - the United States, husband to @DrBiden, proud father & grandfather. Loves - ice cream, aviators & @Amtrak","url":"https:\/\/t.co\/UClrPuJpyZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UClrPuJpyZ","expanded_url":"http:\/\/joebiden.com","display_url":"joebiden.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4232855,"friends_count":26,"listed_count":15762,"created_at":"Sun - Mar 11 17:51:24 +0000 2007","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4027,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"565959","profile_background_image_url":"http:\/\/abs.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\/1234830156906270720\/slTD5yd1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234830156906270720\/slTD5yd1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/939091\/1569000846","profile_link_color":"233F94","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBEBFF","profile_text_color":"323232","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233571350121504769,"quoted_status_id_str":"1233571350121504769","quoted_status":{"created_at":"Sat - Feb 29 01:55:03 +0000 2020","id":1233571350121504769,"id_str":"1233571350121504769","text":"President - Trump on Friday night tried to cast the global outbreak of the coronavirus - as a liberal conspiracy intend\u2026 https:\/\/t.co\/CVt1FhuCPy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CVt1FhuCPy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233571350121504769","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":9300262,"id_str":"9300262","name":"POLITICO","screen_name":"politico","location":"Washington, - D.C.","description":"Nobody knows politics like POLITICO. Got a news tip for - us? \n\ud83d\udc49 https:\/\/t.co\/fp9nugJuND","url":"https:\/\/t.co\/PPMyQsPlIg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PPMyQsPlIg","expanded_url":"http:\/\/politico.com","display_url":"politico.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fp9nugJuND","expanded_url":"https:\/\/politi.co\/2LcOtt5","display_url":"politi.co\/2LcOtt5","indices":[63,86]}]}},"protected":false,"followers_count":4072966,"friends_count":1500,"listed_count":40587,"created_at":"Mon - Oct 08 00:29:38 +0000 2007","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":324984,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E6E6E6","profile_background_image_url":"http:\/\/abs.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\/677177503694237697\/y6yTzWn6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677177503694237697\/y6yTzWn6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9300262\/1479760803","profile_link_color":"DD2E44","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1203,"favorite_count":1723,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":4673,"favorite_count":19768,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233571350121504769,"quoted_status_id_str":"1233571350121504769","retweet_count":4673,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550573985793,"id_str":"1234518550573985793","text":"RT - @coton_luver: @GOP @realDonaldTrump @Mike_Pence Administration incompetence. - \ud83d\ude2e BREAKING: A top federal scientist sounded the alarm about\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"coton_luver","name":"vlh","id":545474475,"id_str":"545474475","indices":[3,15]},{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[17,21]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[22,38]},{"screen_name":"Mike_Pence","name":"Mike - Pence","id":22203756,"id_str":"22203756","indices":[39,50]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1224748963527581696,"id_str":"1224748963527581696","name":"BlueNovember","screen_name":"GailBur44992575","location":"","description":"Wife, - Mom, Grandma liberal DEMOCRAT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":320,"friends_count":572,"listed_count":0,"created_at":"Tue - Feb 04 17:38:39 +0000 2020","favourites_count":12304,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8384,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225535427341320193\/IQoiBtQ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225535427341320193\/IQoiBtQ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1224748963527581696\/1580838521","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:07:45 +0000 2020","id":1234480518718033920,"id_str":"1234480518718033920","text":"@GOP - @realDonaldTrump @Mike_Pence Administration incompetence. \ud83d\ude2e BREAKING: - A top federal scientist sounded the alar\u2026 https:\/\/t.co\/zmsytyLy7X","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[0,4]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[5,21]},{"screen_name":"Mike_Pence","name":"Mike - Pence","id":22203756,"id_str":"22203756","indices":[22,33]}],"urls":[{"url":"https:\/\/t.co\/zmsytyLy7X","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234480518718033920","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234448545249419266,"in_reply_to_status_id_str":"1234448545249419266","in_reply_to_user_id":11134252,"in_reply_to_user_id_str":"11134252","in_reply_to_screen_name":"GOP","user":{"id":545474475,"id_str":"545474475","name":"vlh","screen_name":"coton_luver","location":"","description":"Dog - \ud83d\udc15 Foster Mom \n\ud83d\udc6a #StopTheBans \ud83c\uddfa\ud83c\uddf8 - #ProChoice \ud83d\ude4b #ForThePeople \ud83d\udc95 #Resist \ud83d\udc4a #VoteBlueNoMatterWho - \ud83d\udc95 #ClimateChange \ud83c\udf0d #ERANow \u270c #ProtectOurCare \ud83d\udca5","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16524,"friends_count":8671,"listed_count":97,"created_at":"Wed - Apr 04 19:45:21 +0000 2012","favourites_count":45774,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":363643,"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\/1218241475596582912\/ZmQM7UBx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218241475596582912\/ZmQM7UBx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/545474475\/1571316279","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":146,"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550540423169,"id_str":"1234518550540423169","text":"RT - @StephenSpeaksUp: @POTUS @senatemajldr \n\nAnd what''s your plan Crying Chuckie?\ud83e\udd14\n\nThat''s - right, you don''t have one @chuckschumer\ud83d\ude0f\ud83d\ude44\n\nThe sa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephenSpeaksUp","name":"Stephen - Speaks Up \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f","id":847849408414851072,"id_str":"847849408414851072","indices":[3,19]},{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[21,27]},{"screen_name":"senatemajldr","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[28,41]},{"screen_name":"chuckschumer","name":"Chuck - Schumer","id":1872999342,"id_str":"1872999342","indices":[116,129]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290328760,"id_str":"3290328760","name":"Linda\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f","screen_name":"LindaPar0380","location":"United - States","description":"Grandmother,Writer,Retired lawyer;walked across England - St.Bees to Robin Hood''s Bay; Mother of former Army Infantry Officer; \ud83d\udcaf%MAGA.Anti-Trumpers - get\ud83d\udeab.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8652,"friends_count":8150,"listed_count":0,"created_at":"Tue - May 19 17:27:13 +0000 2015","favourites_count":171446,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":110531,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1107401745410469888\/A-GJajan_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1107401745410469888\/A-GJajan_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290328760\/1583023348","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 02:49:10 +0000 2020","id":1233584969110425601,"id_str":"1233584969110425601","text":"@POTUS - @senatemajldr \n\nAnd what''s your plan Crying Chuckie?\ud83e\udd14\n\nThat''s - right, you don''t have one @chuckschumer\ud83d\ude0f\ud83d\ude44\n\nThe\u2026 - https:\/\/t.co\/jftLCzKBiw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[0,6]},{"screen_name":"senatemajldr","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[7,20]},{"screen_name":"chuckschumer","name":"Chuck - Schumer","id":1872999342,"id_str":"1872999342","indices":[95,108]}],"urls":[{"url":"https:\/\/t.co\/jftLCzKBiw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233584969110425601","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":822215679726100480,"in_reply_to_user_id_str":"822215679726100480","in_reply_to_screen_name":"POTUS","user":{"id":847849408414851072,"id_str":"847849408414851072","name":"Stephen - Speaks Up \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f","screen_name":"StephenSpeaksUp","location":"Sherwood, - AR","description":"#CHRISTIAN #PENTACOSTAL #CONSERVATIVE #PATRIOT #USAF #VIETNAM - #VET\n#SupportYoungConservative #DrainTheSwamp #BuildTheWall #MAGA #TRUMP2020 - #KAG\n\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f@GenFlynn","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38972,"friends_count":36702,"listed_count":10,"created_at":"Fri - Mar 31 16:33:46 +0000 2017","favourites_count":86359,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":115520,"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\/1210039873459163137\/w0ZBP8O6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210039873459163137\/w0ZBP8O6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/847849408414851072\/1516727096","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":65,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":74,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550477324288,"id_str":"1234518550477324288","text":"RT - @HKrassenstein: There are 24 cases of Coronavirus in Canada\n\nThere are 5 - case of Coronavirus in Mexico\n\nTrump is considering shutting do\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HKrassenstein","name":"Ms. - Krassenstein","id":963790885937995777,"id_str":"963790885937995777","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1019052926394945536,"id_str":"1019052926394945536","name":"AB","screen_name":"LadyRedAnarchy1","location":"Hogwarts - School of Witchcraft","description":"#Resist #FuckSociety #FuckTrump #FBRParty - #TreasonSummit #BlueWave #TheResistance #SaveourDemocracy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1387,"friends_count":1362,"listed_count":0,"created_at":"Tue - Jul 17 02:55:25 +0000 2018","favourites_count":28420,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28384,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1145349085941121025\/w9cqTD52_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145349085941121025\/w9cqTD52_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:59:01 +0000 2020","id":1234508519203856385,"id_str":"1234508519203856385","text":"There - are 24 cases of Coronavirus in Canada\n\nThere are 5 case of Coronavirus in - Mexico\n\nTrump is considering shutti\u2026 https:\/\/t.co\/GGkgkkvNiC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GGkgkkvNiC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234508519203856385","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":963790885937995777,"id_str":"963790885937995777","name":"Ms. - Krassenstein","screen_name":"HKrassenstein","location":"Fort Myers, FL","description":"Mother - of two awesome kids. \nWife of a Krassenstein brother :)\n#Resist\nEmail: - krassensteinmail@protonmail.com\nHusband''s FB: https:\/\/t.co\/Xxw3zH00D1","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/Xxw3zH00D1","expanded_url":"http:\/\/facebook.com\/Krassensteins","display_url":"facebook.com\/Krassensteins","indices":[124,147]}]}},"protected":false,"followers_count":31975,"friends_count":2579,"listed_count":105,"created_at":"Wed - Feb 14 15:03:48 +0000 2018","favourites_count":504,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2050,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1187004398720954368\/O_J7exRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1187004398720954368\/O_J7exRl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/963790885937995777\/1571864027","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":451,"favorite_count":1232,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":451,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550460686336,"id_str":"1234518550460686336","text":"RT - @Otto_English: If you want a lesson from coronavirus it''s this. We live in - an interconnected and mutually dependent world. We have to he\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Otto_English","name":"Otto - English","id":310746442,"id_str":"310746442","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1096332270414241792,"id_str":"1096332270414241792","name":"waterfall8888@urbanlife","screen_name":"waterfall8888","location":"London, - the United Kingdom","description":"Politics, Economics and Financial Markets","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":689,"friends_count":367,"listed_count":1,"created_at":"Fri - Feb 15 08:55:56 +0000 2019","favourites_count":15066,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13318,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1151230046952153088\/YxG9Rsov_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1151230046952153088\/YxG9Rsov_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1096332270414241792\/1561722558","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:14:46 +0000 2020","id":1234497381938401280,"id_str":"1234497381938401280","text":"If - you want a lesson from coronavirus it''s this. We live in an interconnected - and mutually dependent world. We have\u2026 https:\/\/t.co\/KLOxrz5ksS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KLOxrz5ksS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234497381938401280","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":310746442,"id_str":"310746442","name":"Otto - English","screen_name":"Otto_English","location":"London","description":"Semi-professional - irritant. Born Andrew Scott. Definitely not Moriarty. Freelance writer - email - me at theottoenglish@gmail.com","url":"https:\/\/t.co\/FByvCqYypv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FByvCqYypv","expanded_url":"https:\/\/thepinprick.com\/","display_url":"thepinprick.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46984,"friends_count":1512,"listed_count":441,"created_at":"Sat - Jun 04 08:34:34 +0000 2011","favourites_count":120294,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":170350,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/929512815026753536\/cnXWC-C0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929512815026753536\/cnXWC-C0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/310746442\/1580395991","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":491,"favorite_count":2771,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":491,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550452326402,"id_str":"1234518550452326402","text":"RT - @COUPSURE: #CoronaVirus \ud83e\udda0 | https:\/\/t.co\/xSXIumYENu https:\/\/t.co\/bzKaIxTPql","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[14,26]}],"symbols":[],"user_mentions":[{"screen_name":"COUPSURE","name":"C - O U P S U R E","id":1705332612,"id_str":"1705332612","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/xSXIumYENu","expanded_url":"https:\/\/twitter.com\/leglobe_info\/status\/1234408876562362373?s=21","display_url":"twitter.com\/leglobe_info\/s\u2026","indices":[31,54]},{"url":"https:\/\/t.co\/bzKaIxTPql","expanded_url":"https:\/\/twitter.com\/leglobe_info\/status\/1234408876562362373","display_url":"twitter.com\/leglobe_info\/s\u2026","indices":[55,78]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1024647535661600768,"id_str":"1024647535661600768","name":"\ud83c\udde7\ud83c\uddea\ud83c\uddeb\ud83c\uddf7Politique - 4.0 #10","screen_name":"DuPouvoirDachat","location":"","description":"\ud83c\udf5frt - #acte69 #GiletsJaunes #YellowVests STOP \u00e0 la #censure #LaGrandeCol\u00e8re - #CGT #PTB et surtout #TouchePasTwitter. envoyer vos twits a vos elus. avec@","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6398,"friends_count":2711,"listed_count":55,"created_at":"Wed - Aug 01 13:26:24 +0000 2018","favourites_count":12686,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":712353,"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\/1156234581298896902\/IJi0oUuB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1156234581298896902\/IJi0oUuB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1024647535661600768\/1583158221","profile_link_color":"F3ED00","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:27:33 +0000 2020","id":1234410001680171008,"id_str":"1234410001680171008","text":"#CoronaVirus - \ud83e\udda0 | https:\/\/t.co\/xSXIumYENu https:\/\/t.co\/bzKaIxTPql","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xSXIumYENu","expanded_url":"https:\/\/twitter.com\/leglobe_info\/status\/1234408876562362373?s=21","display_url":"twitter.com\/leglobe_info\/s\u2026","indices":[17,40]},{"url":"https:\/\/t.co\/bzKaIxTPql","expanded_url":"https:\/\/twitter.com\/leglobe_info\/status\/1234408876562362373","display_url":"twitter.com\/leglobe_info\/s\u2026","indices":[41,64]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234361366561132544,"in_reply_to_status_id_str":"1234361366561132544","in_reply_to_user_id":1705332612,"in_reply_to_user_id_str":"1705332612","in_reply_to_screen_name":"COUPSURE","user":{"id":1705332612,"id_str":"1705332612","name":"C - O U P S U R E","screen_name":"COUPSURE","location":"Europe","description":"Nous - vous informons depuis mars 2019 | G\u00e9opolitique \ud83d\udd38 Conflits - \ud83d\udd38 Terrorisme \ud83d\udd38 D\u00e9fense \ud83d\udd38 S\u00e9curit\u00e9 - | @L_ThinkTank | \ud83c\uddec\ud83c\udde7 English : @BlueboxIntel #OSINT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1495,"friends_count":76,"listed_count":22,"created_at":"Tue - Aug 27 18:46:50 +0000 2013","favourites_count":941,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2255,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228052491201339392\/cX-Zzz8F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228052491201339392\/cX-Zzz8F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1705332612\/1581625246","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234408876562362373,"quoted_status_id_str":"1234408876562362373","quoted_status":{"created_at":"Mon - Mar 02 09:23:05 +0000 2020","id":1234408876562362373,"id_str":"1234408876562362373","text":"\ud83e\udda0\ud83c\uddeb\ud83c\uddf7\u00c9PID\u00c9MIE - DE COVID-19 - Deux cas de contaminations au coronavirus concernant un p\u00e8re - et son enfant de 12 ans ont\u2026 https:\/\/t.co\/FFSAAQF5ld","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FFSAAQF5ld","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234408876562362373","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234278720900358149,"in_reply_to_status_id_str":"1234278720900358149","in_reply_to_user_id":793842846050684928,"in_reply_to_user_id_str":"793842846050684928","in_reply_to_screen_name":"LeGlobe_info","user":{"id":793842846050684928,"id_str":"793842846050684928","name":"\ud83c\udf10Le - Globe","screen_name":"LeGlobe_info","location":"Paris, France","description":"Les - informations en direct et en continu pour faire un grand tour de l\u2019actualit\u00e9 - fran\u00e7aise et internationale. [Admin @MAG_LeGlobe | Collaborateur @Plantureux]","url":"https:\/\/t.co\/w1FRBYHBu5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/w1FRBYHBu5","expanded_url":"http:\/\/www.leglobe.fr","display_url":"leglobe.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16324,"friends_count":197,"listed_count":167,"created_at":"Wed - Nov 02 15:50:58 +0000 2016","favourites_count":408,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12325,"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\/1214668612897845250\/GfGLMpIK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214668612897845250\/GfGLMpIK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/793842846050684928\/1578434540","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"},"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":"fr"},"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":true,"quoted_status_id":1234408876562362373,"quoted_status_id_str":"1234408876562362373","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550435389440,"id_str":"1234518550435389440","text":"Now - on https:\/\/t.co\/0J2UdYHyh5\n\nCoronavirus: Basel Committee tasks banks - on vigilance","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0J2UdYHyh5","expanded_url":"http:\/\/naijareports.com","display_url":"naijareports.com","indices":[7,30]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.naijareports.com\" rel=\"nofollow\"\u003eNaijareports - Tweets\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1203462567861084160,"id_str":"1203462567861084160","name":"Naija - Reports","screen_name":"naija_reports","location":"Lagos, Nigeria","description":"Official - Twitter Page of Nigeria\u2019s independent fully-automated news aggregation - service. All your News in one place","url":"https:\/\/t.co\/0tyJxyBqE5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0tyJxyBqE5","expanded_url":"https:\/\/www.naijareports.com","display_url":"naijareports.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":44,"listed_count":4,"created_at":"Sat - Dec 07 23:55:12 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":106849,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221148035998240768\/cU1VFUAr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221148035998240768\/cU1VFUAr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1203462567861084160\/1581480349","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550397669376,"id_str":"1234518550397669376","text":"RT - @misayeon: Nayeon has donated 50 million won to help with the spread of coronavirus - in Korea, saying \u201cI hope it will help many people, a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"misayeon","name":"misa - \u2022\u1d17\u2022","id":2246641690,"id_str":"2246641690","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161220930107895809,"id_str":"1161220930107895809","name":"chu","screen_name":"twaichuuu","location":"","description":"","url":"https:\/\/t.co\/mCzByqwbwJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mCzByqwbwJ","expanded_url":"https:\/\/youtu.be\/3ymwOvzhwHs","display_url":"youtu.be\/3ymwOvzhwHs","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":156,"listed_count":0,"created_at":"Tue - Aug 13 10:20:18 +0000 2019","favourites_count":4068,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1394,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231534178665029632\/HX5svIGd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231534178665029632\/HX5svIGd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:03:38 +0000 2020","id":1234403984015794181,"id_str":"1234403984015794181","text":"Nayeon - has donated 50 million won to help with the spread of coronavirus in Korea, - saying \u201cI hope it will help many\u2026 https:\/\/t.co\/obey005rgP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/obey005rgP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234403984015794181","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2246641690,"id_str":"2246641690","name":"misa - \u2022\u1d17\u2022","screen_name":"misayeon","location":"FAQs\/Schedules \u2192","description":"#\ud2b8\uc640\uc774\uc2a4 - \ud83c\udf43 KOR-ENG translator for #TWICE \ud83d\ude0a \u2014 here to provide - reliable news, updates & schedules \ud83d\udc8c","url":"https:\/\/t.co\/NWXx6Ycu5V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NWXx6Ycu5V","expanded_url":"https:\/\/misayeon.carrd.co","display_url":"misayeon.carrd.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":160661,"friends_count":268,"listed_count":1239,"created_at":"Fri - Dec 27 18:35:29 +0000 2013","favourites_count":7957,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21392,"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\/1194927036608974848\/6rzXBJFU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194927036608974848\/6rzXBJFU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2246641690\/1572234468","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3070,"favorite_count":9733,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3070,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550309670912,"id_str":"1234518550309670912","text":"RT - @newtgingrich: pathetic watching Chuck Todd trying to trap Vice President - Pence into naming Democrats who have politicized coronavirus.P\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"newtgingrich","name":"Newt - Gingrich","id":20713061,"id_str":"20713061","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1069271050222018562,"id_str":"1069271050222018562","name":"Rosemary","screen_name":"Rosemar86666922","location":"","description":"Firm - Trump supporter. Stand up for him! He is standing up for us.There are too - many people that do not deserve this man''s loyalty\/time\/energy to MAGA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":227,"friends_count":275,"listed_count":0,"created_at":"Sun - Dec 02 16:44:19 +0000 2018","favourites_count":1032,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1189,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 23:15:53 +0000 2020","id":1234256070492684293,"id_str":"1234256070492684293","text":"pathetic - watching Chuck Todd trying to trap Vice President Pence into naming Democrats - who have politicized coronav\u2026 https:\/\/t.co\/cRaZXFU9Ay","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cRaZXFU9Ay","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234256070492684293","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":20713061,"id_str":"20713061","name":"Newt - Gingrich","screen_name":"newtgingrich","location":"","description":"Husband, - father, grandfather, citizen, small businessman, author, former Speaker of - the House.","url":"https:\/\/t.co\/fyU2ZdT0qt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fyU2ZdT0qt","expanded_url":"https:\/\/www.gingrich360.com\/","display_url":"gingrich360.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2205683,"friends_count":932,"listed_count":15522,"created_at":"Thu - Feb 12 20:18:08 +0000 2009","favourites_count":913,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":13347,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A1735","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\/722099116654923777\/S7O3vYVT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/722099116654923777\/S7O3vYVT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20713061\/1426197965","profile_link_color":"2D4A92","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"727272","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3443,"favorite_count":14564,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3443,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550154530818,"id_str":"1234518550154530818","text":"RT - @SpeakerPelosi: The ACA is a pillar of health & economic security for - American families \u2014 and even more critical during an epidemic. But\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17769563,"id_str":"17769563","name":"Tom Totin","screen_name":"cookspeaktom","location":"Pittsburgh, - Pa.","description":"Chef\/Host of Cookspeak podcast on http:\/\/t.co\/tV8biZznRi.Sundays - @11am-Pgh Public Market","url":"http:\/\/t.co\/B8wEVme8Rl","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/B8wEVme8Rl","expanded_url":"https:\/\/twitter.com\/@cookspeaktom","display_url":"twitter.com\/@cookspeaktom","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/tV8biZznRi","expanded_url":"http:\/\/talkshoe.com","display_url":"talkshoe.com","indices":[38,60]}]}},"protected":false,"followers_count":1937,"friends_count":5000,"listed_count":81,"created_at":"Mon - Dec 01 02:52:21 +0000 2008","favourites_count":22328,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1663040837\/Last_Import-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1663040837\/Last_Import-0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:33:02 +0000 2020","id":1234517079757332483,"id_str":"1234517079757332483","text":"The - ACA is a pillar of health & economic security for American families \u2014 - and even more critical during an epidemic\u2026 https:\/\/t.co\/r0aAfDQBSu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r0aAfDQBSu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517079757332483","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15764644,"id_str":"15764644","name":"Nancy - Pelosi","screen_name":"SpeakerPelosi","location":"San Francisco","description":"Speaker - of the House, focused on strengthening America''s middle class and creating - jobs; mother, grandmother, dark chocolate connoisseur.","url":"https:\/\/t.co\/jztVqrP3x5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jztVqrP3x5","expanded_url":"https:\/\/www.speaker.gov\/","display_url":"speaker.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4016037,"friends_count":362,"listed_count":18419,"created_at":"Thu - Aug 07 15:35:02 +0000 2008","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10087,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"385BA3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15764644\/1572273026","profile_link_color":"4B12E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3236,"favorite_count":8130,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3236,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550116626433,"id_str":"1234518550116626433","text":"RT - @Mike_Pence: Today, we are honored to welcome Ambassador Debbie Birx, a world-renowned - global health official and physician, to the Whit\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mike_Pence","name":"Mike - Pence","id":22203756,"id_str":"22203756","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760279068319162368,"id_str":"760279068319162368","name":"Jaime - Oh","screen_name":"jaimeoh328","location":"","description":"Wife, mom, and - one of many forgotten Americans no more \ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":988,"friends_count":25,"listed_count":14,"created_at":"Tue - Aug 02 01:00:29 +0000 2016","favourites_count":73164,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76785,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775074744949288960\/bXU3UT7B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775074744949288960\/bXU3UT7B_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:20:12 +0000 2020","id":1234513849371549698,"id_str":"1234513849371549698","text":"Today, - we are honored to welcome Ambassador Debbie Birx, a world-renowned global - health official and physician, to\u2026 https:\/\/t.co\/V9cyaYcC7z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/V9cyaYcC7z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234513849371549698","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22203756,"id_str":"22203756","name":"Mike - Pence","screen_name":"Mike_Pence","location":"","description":"Vice President - of the United States","url":"https:\/\/t.co\/mZB2hymxC9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mZB2hymxC9","expanded_url":"http:\/\/www.DonaldJTrump.com","display_url":"DonaldJTrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4266556,"friends_count":33,"listed_count":8945,"created_at":"Fri - Feb 27 23:04:51 +0000 2009","favourites_count":710,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":7743,"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\/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\/1141422399268761600\/k6fHhBbh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141422399268761600\/k6fHhBbh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22203756\/1582042068","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D6D6D6","profile_text_color":"002248","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":3470,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":824,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550074839041,"id_str":"1234518550074839041","text":"Erster - #Coronavirus- Fall in Berlin, und das Klinikum ist \u00fcberfordert und muss - schlie\u00dfen... \ud83d\ude37 https:\/\/t.co\/a5zDTUpwz8","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[7,19]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a5zDTUpwz8","expanded_url":"https:\/\/twitter.com\/NZZ\/status\/1234483850740408320","display_url":"twitter.com\/NZZ\/status\/123\u2026","indices":[94,117]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4713284957,"id_str":"4713284957","name":"Hella - Schreib","screen_name":"HellaSchreib","location":"","description":"So wie - die Freiheit eine Voraussetzung f\u00fcr die Demokratie ist, so schafft mehr - Demokratie erst den Raum, in dem Freiheit praktiziert werden kann.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":143,"friends_count":304,"listed_count":0,"created_at":"Tue - Jan 05 09:07:45 +0000 2016","favourites_count":13814,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":856,"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\/986889596955955200\/Yq3uEcfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986889596955955200\/Yq3uEcfR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4713284957\/1524128778","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234483850740408320,"quoted_status_id_str":"1234483850740408320","quoted_status":{"created_at":"Mon - Mar 02 14:21:00 +0000 2020","id":1234483850740408320,"id_str":"1234483850740408320","text":"Notaufnahme - in Berliner Virchow-Klinikum aufgrund unzureichender Schutzmassnahmen geschlossen, - erster Fall in Berli\u2026 https:\/\/t.co\/iuEFvwRGtB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iuEFvwRGtB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234483850740408320","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"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,"user":{"id":14273050,"id_str":"14273050","name":"Neue - Z\u00fcrcher Zeitung","screen_name":"NZZ","location":"Z\u00fcrich","description":"Hier - vertwittert die @NZZ Schnelles und Tiefgr\u00fcndiges. Es twittern @coryplag, - @MissDettwiler, @pgollmer und @stauffre. F\u00fcr Support: @NZZ_Service.","url":"https:\/\/t.co\/dEKYGonDuL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dEKYGonDuL","expanded_url":"http:\/\/www.nzz.ch","display_url":"nzz.ch","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":411020,"friends_count":2601,"listed_count":3407,"created_at":"Tue - Apr 01 07:36:31 +0000 2008","favourites_count":5283,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":111318,"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\/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\/1006460634236628992\/dc1hsh9d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1006460634236628992\/dc1hsh9d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14273050\/1576572726","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5EFFA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":119,"favorite_count":121,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518550070648832,"id_str":"1234518550070648832","text":"RT - @65b16deb5838472: When you think it could not get any worse...the idiot makes - it damn right dangerous. He has to go! #OneVoice1 #OV1TXBl\u2026","truncated":false,"entities":{"hashtags":[{"text":"OneVoice1","indices":[120,130]}],"symbols":[],"user_mentions":[{"screen_name":"65b16deb5838472","name":"\ud83c\udf0a\ud83c\udf08Paula\ud83c\udf08\ud83c\udf0a","id":3170811410,"id_str":"3170811410","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1078680784721100800,"id_str":"1078680784721100800","name":"VOTE - THEM ALL OUT","screen_name":"GOPlastdays","location":"","description":"\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udf08\ud83c\uddf5\ud83c\uddf7\ud83d\udc99\ud83c\udf0a - if you''re gonna whine better buy some cheese","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4933,"friends_count":5422,"listed_count":1,"created_at":"Fri - Dec 28 15:55:14 +0000 2018","favourites_count":148496,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71330,"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\/1082015146065698823\/d1KM390K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082015146065698823\/d1KM390K_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:17:07 +0000 2020","id":1234513075182678017,"id_str":"1234513075182678017","text":"When - you think it could not get any worse...the idiot makes it damn right dangerous. - He has to go! #OneVoice1\u2026 https:\/\/t.co\/nMIt7pStES","truncated":true,"entities":{"hashtags":[{"text":"OneVoice1","indices":[99,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nMIt7pStES","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234513075182678017","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3170811410,"id_str":"3170811410","name":"\ud83c\udf0a\ud83c\udf08Paula\ud83c\udf08\ud83c\udf0a","screen_name":"65b16deb5838472","location":"","description":"USN, - USAF, BSN, pissed @ DonaldTrump and his followers, traveler, book worm, wildlife - rehab, Mother to 3, several rescued fur babies. #FBR \ud83d\udeabDMs #OneVoice1 - #Z11","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3122,"friends_count":3460,"listed_count":2,"created_at":"Fri - Apr 24 13:40:23 +0000 2015","favourites_count":1296,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1013,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234586746937016321\/Z0Svymrh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234586746937016321\/Z0Svymrh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3170811410\/1581516914","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":25,"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"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518549709967361,"id_str":"1234518549709967361","text":"RT - @SpeakerPelosi: The ACA is a pillar of health & economic security for - American families \u2014 and even more critical during an epidemic. But\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147716755,"id_str":"147716755","name":"Sandy","screen_name":"verybusylady","location":"","description":"Married - my high school sweetheart, been blessed ever since. Mother of 4, grandmother - of 4, family is everything. Proud Resister\ud83d\udc4a\ud83d\udc4d. never - give up hope!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":414,"friends_count":606,"listed_count":10,"created_at":"Mon - May 24 21:42:43 +0000 2010","favourites_count":77102,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40920,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/799293571346137092\/f2zl2PXZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/799293571346137092\/f2zl2PXZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147716755\/1571269631","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:33:02 +0000 2020","id":1234517079757332483,"id_str":"1234517079757332483","text":"The - ACA is a pillar of health & economic security for American families \u2014 - and even more critical during an epidemic\u2026 https:\/\/t.co\/r0aAfDQBSu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r0aAfDQBSu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517079757332483","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15764644,"id_str":"15764644","name":"Nancy - Pelosi","screen_name":"SpeakerPelosi","location":"San Francisco","description":"Speaker - of the House, focused on strengthening America''s middle class and creating - jobs; mother, grandmother, dark chocolate connoisseur.","url":"https:\/\/t.co\/jztVqrP3x5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jztVqrP3x5","expanded_url":"https:\/\/www.speaker.gov\/","display_url":"speaker.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4016037,"friends_count":362,"listed_count":18419,"created_at":"Thu - Aug 07 15:35:02 +0000 2008","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10087,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"385BA3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114294290375688193\/P9mcJNGb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15764644\/1572273026","profile_link_color":"4B12E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3236,"favorite_count":8130,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3236,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518549693026306,"id_str":"1234518549693026306","text":"RT - @Muthia911: *Coronavirus outbreak in Indonesia*\n\nno one:\n\nliterally not - even a single soul:\n\n(welcome back to another episode of) Grup W\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Muthia911","name":"#MambaForever","id":75412101,"id_str":"75412101","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2354542986,"id_str":"2354542986","name":"adinata","screen_name":"jypewonpil","location":"","description":"bukan - akun erpe.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":795,"friends_count":82,"listed_count":7,"created_at":"Fri - Feb 21 09:42:34 +0000 2014","favourites_count":48,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33003,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233225724946870274\/-Aavhrst_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233225724946870274\/-Aavhrst_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2354542986\/1582858657","profile_link_color":"E81C4F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 10:36:33 +0000 2020","id":1234427366031495168,"id_str":"1234427366031495168","text":"*Coronavirus - outbreak in Indonesia*\n\nno one:\n\nliterally not even a single soul:\n\n(welcome - back to another episode o\u2026 https:\/\/t.co\/rvK1kGezwG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rvK1kGezwG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234427366031495168","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75412101,"id_str":"75412101","name":"#MambaForever","screen_name":"Muthia911","location":"","description":"One - of the most important aspect in democracy is a well-informed electorate. That, - my friend, is why I do the News.","url":"https:\/\/t.co\/EviiiGMYa9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EviiiGMYa9","expanded_url":"http:\/\/www.instagram.com\/muthia911","display_url":"instagram.com\/muthia911","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5032,"friends_count":355,"listed_count":14,"created_at":"Fri - Sep 18 23:07:36 +0000 2009","favourites_count":6220,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22418,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/688640070581026816\/UR5FdSsH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/688640070581026816\/UR5FdSsH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75412101\/1525649116","profile_link_color":"DEC292","profile_sidebar_border_color":"F7E2AC","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6310,"favorite_count":9937,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6310,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518549445697537,"id_str":"1234518549445697537","text":"RT - @Merovingio_AC: Primeras im\u00e1genes del Coronavirus al microscopio; https:\/\/t.co\/fKo614oqzj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Merovingio_AC","name":"AMCR","id":875691171321925632,"id_str":"875691171321925632","indices":[3,17]}],"urls":[],"media":[{"id":1234463368007778304,"id_str":"1234463368007778304","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGx5IpWAAATs7v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGx5IpWAAATs7v.jpg","url":"https:\/\/t.co\/fKo614oqzj","display_url":"pic.twitter.com\/fKo614oqzj","expanded_url":"https:\/\/twitter.com\/Merovingio_AC\/status\/1234463377130500096\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1920,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1234463377130500096,"source_status_id_str":"1234463377130500096","source_user_id":875691171321925632,"source_user_id_str":"875691171321925632"}]},"extended_entities":{"media":[{"id":1234463368007778304,"id_str":"1234463368007778304","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGx5IpWAAATs7v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGx5IpWAAATs7v.jpg","url":"https:\/\/t.co\/fKo614oqzj","display_url":"pic.twitter.com\/fKo614oqzj","expanded_url":"https:\/\/twitter.com\/Merovingio_AC\/status\/1234463377130500096\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1920,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1234463377130500096,"source_status_id_str":"1234463377130500096","source_user_id":875691171321925632,"source_user_id_str":"875691171321925632"}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":229792055,"id_str":"229792055","name":"abel - calvo","screen_name":"abelcalvo92","location":"","description":"Entrenador - de f\u00fatbol Nivel II\ud83d\udccb\ud83d\udd8a\ufe0f \u26bd\n\nEn primera, - en segunda o en tercera te dedicado mi vida entera... ser\u00e9 del Betis - hasta que muera!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":775,"listed_count":6,"created_at":"Thu - Dec 23 10:10:21 +0000 2010","favourites_count":6591,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/626723901947645952\/V8rYXAnP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626723901947645952\/V8rYXAnP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/229792055\/1572257138","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:59:38 +0000 2020","id":1234463377130500096,"id_str":"1234463377130500096","text":"Primeras - im\u00e1genes del Coronavirus al microscopio; https:\/\/t.co\/fKo614oqzj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234463368007778304,"id_str":"1234463368007778304","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGx5IpWAAATs7v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGx5IpWAAATs7v.jpg","url":"https:\/\/t.co\/fKo614oqzj","display_url":"pic.twitter.com\/fKo614oqzj","expanded_url":"https:\/\/twitter.com\/Merovingio_AC\/status\/1234463377130500096\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1920,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234463368007778304,"id_str":"1234463368007778304","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGx5IpWAAATs7v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGx5IpWAAATs7v.jpg","url":"https:\/\/t.co\/fKo614oqzj","display_url":"pic.twitter.com\/fKo614oqzj","expanded_url":"https:\/\/twitter.com\/Merovingio_AC\/status\/1234463377130500096\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1920,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875691171321925632,"id_str":"875691171321925632","name":"AMCR","screen_name":"Merovingio_AC","location":"","description":"Una - cosa es el f\u00fatbol y otra el Betis. \nTodos tenemos el derecho a opinar. - RESPETO a las personas, NO RESPETO LAS OPINIONES.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":604,"friends_count":597,"listed_count":1,"created_at":"Fri - Jun 16 12:26:59 +0000 2017","favourites_count":9254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5427,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1104885267234779139\/eCZxA9x6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1104885267234779139\/eCZxA9x6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875691171321925632\/1552351486","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518549382803458,"id_str":"1234518549382803458","text":"are - there podcast episodes that discuss the impact of american work culture and - healthcare access in relation to th\u2026 https:\/\/t.co\/SrJPNfcd5m","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SrJPNfcd5m","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518549382803458","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292091336,"id_str":"292091336","name":"election - clerk goblin","screen_name":"alexlineberry","location":"registering voters - in bexar","description":"rambling around satx | she\/her | rabid queer liberal - snowflake","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":700,"listed_count":3,"created_at":"Tue - May 03 02:47:13 +0000 2011","favourites_count":5609,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1453,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1172139254463569920\/wO7LsDw6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172139254463569920\/wO7LsDw6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292091336\/1583197762","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:53 +0000 2020","id":1234518549202337795,"id_str":"1234518549202337795","text":"RT - @malwareunicorn: Coronavirus hitting tech ... No TCP handshakes allowed. \ud83d\ude05","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"malwareunicorn","name":"Malware - Unicorn","id":2344060088,"id_str":"2344060088","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118117690,"id_str":"118117690","name":"Prasanna","screen_name":"SQLInterstellar","location":"GitHub","description":";","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1503,"friends_count":880,"listed_count":268,"created_at":"Sat - Feb 27 17:13:24 +0000 2010","favourites_count":52999,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":104158,"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\/1226786590527148034\/Am3UFTaZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226786590527148034\/Am3UFTaZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118117690\/1514987240","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:04 +0000 2020","id":1234518346646769666,"id_str":"1234518346646769666","text":"Coronavirus - hitting tech ... No TCP handshakes allowed. \ud83d\ude05","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2344060088,"id_str":"2344060088","name":"Malware - Unicorn","screen_name":"malwareunicorn","location":"San Francisco, CA","description":"Offensive - Security Unicorn @ FB Red Team. Interested in Security, Malware, Reverse Engineering, - and Fashion. DEF CON. My thoughts are my own. Shitposter.","url":"https:\/\/t.co\/KaEdDwSpfC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KaEdDwSpfC","expanded_url":"http:\/\/malwareunicorn.org","display_url":"malwareunicorn.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":118748,"friends_count":592,"listed_count":1944,"created_at":"Fri - Feb 14 20:11:51 +0000 2014","favourites_count":19754,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1183,"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\/1224934501664448522\/lE2eHhBv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224934501664448522\/lE2eHhBv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2344060088\/1569257893","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":681,"favorite_count":2829,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":681,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518549047185410,"id_str":"1234518549047185410","text":"RT - @wx_becks: Along with following @CDCgov @WHO information, I would strongly - encourage everyone to be in touch w\/ local EMs & public healt\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wx_becks","name":"Becky - DePodwin","id":26043704,"id_str":"26043704","indices":[3,12]},{"screen_name":"CDCgov","name":"CDC","id":146569971,"id_str":"146569971","indices":[35,42]},{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[43,47]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344884217,"id_str":"344884217","name":"Jeff - George","screen_name":"JeffGeorge25","location":"Oklahoma, USA","description":"FOX - 25 Chief Meteorologist, Air Force Reservist & \u201cOkie\u201d in the 507th - ARW, Tinker AFB. Former OK National Guardsman. \ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1366,"friends_count":177,"listed_count":66,"created_at":"Fri - Jul 29 18:51:41 +0000 2011","favourites_count":771,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":14613,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1089200025845067776\/Gdcx77Nn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1089200025845067776\/Gdcx77Nn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344884217\/1548469842","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:05:59 +0000 2020","id":1234510272649465856,"id_str":"1234510272649465856","text":"Along - with following @CDCgov @WHO information, I would strongly encourage everyone - to be in touch w\/ local EMs & pu\u2026 https:\/\/t.co\/6LNNRW8VTu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CDCgov","name":"CDC","id":146569971,"id_str":"146569971","indices":[21,28]},{"screen_name":"WHO","name":"World - Health Organization (WHO)","id":14499829,"id_str":"14499829","indices":[29,33]}],"urls":[{"url":"https:\/\/t.co\/6LNNRW8VTu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510272649465856","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":26043704,"id_str":"26043704","name":"Becky - DePodwin","screen_name":"wx_becks","location":"Pennsylvania, USA","description":"B.S. - Meteorology | M.S. Emergency Management | Crisis\/Risk Communication | Mental - Health Advocate | she\/her | nature lover\ud83c\udf04 | cat, dog, & moose - tweets |","url":"https:\/\/t.co\/fYEeG4vzfm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fYEeG4vzfm","expanded_url":"https:\/\/medium.com\/@wx_becks\/she-looks-so-happy-how-can-she-be-depressed-bc1fb024d3da","display_url":"medium.com\/@wx_becks\/she-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11704,"friends_count":9949,"listed_count":450,"created_at":"Mon - Mar 23 17:17:13 +0000 2009","favourites_count":64092,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":66840,"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\/1214711229425627136\/rFY87LHd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214711229425627136\/rFY87LHd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26043704\/1575840928","profile_link_color":"7FDBB6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"042656","profile_text_color":"6FAF94","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548992663552,"id_str":"1234518548992663552","text":"RT - @DianaWr48476186: Was there VIRUS Breakouts during @BarackObama presidency? - YES! Do Democrats Remember EBOLA more DEADLY than CORONAVIR\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DianaWr48476186","name":"Diana - Wright","id":905861879825920000,"id_str":"905861879825920000","indices":[3,19]},{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[55,67]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1017481567361478658,"id_str":"1017481567361478658","name":"HillGirlStacy","screen_name":"StacyShafer6","location":"Texas, - USA","description":"Proud Army Brat and daughter of Vietnam Vet, Realistic - Conservative, Bad Catholic, Cool Mom, Texas Proud. #TRUMP2020 \ud83c\uddfa\ud83c\uddf8#WomenForTrump - \ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10193,"friends_count":10103,"listed_count":0,"created_at":"Thu - Jul 12 18:51:24 +0000 2018","favourites_count":36224,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21769,"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\/1167108237033910287\/vktwZhhm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167108237033910287\/vktwZhhm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1017481567361478658\/1572396662","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:18:33 +0000 2020","id":1234513433577639937,"id_str":"1234513433577639937","text":"Was - there VIRUS Breakouts during @BarackObama presidency? YES! Do Democrats Remember - EBOLA more DEADLY than CORONA\u2026 https:\/\/t.co\/eTkvmBayJU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[34,46]}],"urls":[{"url":"https:\/\/t.co\/eTkvmBayJU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234513433577639937","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905861879825920000,"id_str":"905861879825920000","name":"Diana - Wright","screen_name":"DianaWr48476186","location":"","description":"AUTHOR - SPEAKER VOICE OVER Talent SELF LOVE Coach Created I LOVE ME DAY APRIL 30 ICI - IMAGE Consultant International bedtalkwithdiana DWShow CONTACT Me for Work!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3770,"friends_count":3458,"listed_count":7,"created_at":"Thu - Sep 07 18:34:37 +0000 2017","favourites_count":4430,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/906170077912936450\/tskVsS6I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/906170077912936450\/tskVsS6I_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548942401537,"id_str":"1234518548942401537","text":"RT - @no_silenced: JUST IN: Pocahontas lays out her plan for CoronaVirus\n\nHer - proposal is to give \u2018free\u2019 testing to anybody who wants it....P\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"no_silenced","name":"\u2b50\ufe0f\u2b50\ufe0fRooster\u2b50\ufe0f\u2b50\ufe0f","id":1092086942198452224,"id_str":"1092086942198452224","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":868895751480455169,"id_str":"868895751480455169","name":"Patricia","screen_name":"buchen_patricia","location":"Port - Mansfield, Tx","description":"alias Capt.Tricia Google me. I dare ya! MAGA - TRUMP 4EVER\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2146,"friends_count":2557,"listed_count":0,"created_at":"Sun - May 28 18:24:25 +0000 2017","favourites_count":140714,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":111801,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903415229907959808\/ScQryrLe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903415229907959808\/ScQryrLe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/868895751480455169\/1518191834","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:38:14 +0000 2020","id":1234503288222937088,"id_str":"1234503288222937088","text":"JUST - IN: Pocahontas lays out her plan for CoronaVirus\n\nHer proposal is to give - \u2018free\u2019 testing to anybody who wants\u2026 https:\/\/t.co\/F1zvAnH5Z1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/F1zvAnH5Z1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503288222937088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1092086942198452224,"id_str":"1092086942198452224","name":"\u2b50\ufe0f\u2b50\ufe0fRooster\u2b50\ufe0f\u2b50\ufe0f","screen_name":"no_silenced","location":"","description":"Trump - Supporter....I \u2764\ufe0f \ud83c\uddfa\ud83c\uddf8 \n\nFollowed by \ud83d\udc49 - @Pam_sands.....My Bestie...\u2665\ufe0f\n\nFollowed by \ud83d\udc49@JulietKnows1....\u2665\ufe0f\u2665\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80984,"friends_count":76444,"listed_count":49,"created_at":"Sun - Feb 03 15:46:31 +0000 2019","favourites_count":268404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":104432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211850149158215681\/6R_L2FwF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211850149158215681\/6R_L2FwF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1092086942198452224\/1571715727","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":805,"favorite_count":1051,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":805,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548824940544,"id_str":"1234518548824940544","text":"RT - @CiroProg: Pronto! Nossos problemas agora ser\u00e3o todos resolvidos! Bolsonaro - vai cair, Trump vai perder reelei\u00e7\u00e3o, Inglaterra vai desisti\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CiroProg","name":"Ciro - Progressista","id":931226931068063744,"id_str":"931226931068063744","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137934094,"id_str":"137934094","name":"Paulo - Henrique Faria","screen_name":"PauloFaria88","location":"Brasil\/Goi\u00e2nia - - GO","description":"Jornalista e vocalista das bandas Black Griffin e Opus - Hominis.","url":"https:\/\/t.co\/QOp29Xoy8g","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QOp29Xoy8g","expanded_url":"https:\/\/www.youtube.com\/c\/PauloHenriquedeAssisFaria88","display_url":"youtube.com\/c\/PauloHenriqu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1785,"friends_count":848,"listed_count":7,"created_at":"Wed - Apr 28 05:04:16 +0000 2010","favourites_count":39985,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9843,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"59472F","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\/1049406516736995328\/EYTHnT7Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1049406516736995328\/EYTHnT7Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137934094\/1539032673","profile_link_color":"1B95E0","profile_sidebar_border_color":"000515","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:35 +0000 2020","id":1234518476124979205,"id_str":"1234518476124979205","text":"Pronto! - Nossos problemas agora ser\u00e3o todos resolvidos! Bolsonaro vai cair, Trump - vai perder reelei\u00e7\u00e3o, Inglaterra v\u2026 https:\/\/t.co\/6LIyaPG2Ic","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6LIyaPG2Ic","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518476124979205","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":931226931068063744,"id_str":"931226931068063744","name":"Ciro - Progressista","screen_name":"CiroProg","location":"Goi\u00e2nia","description":"Perfil - dedicado ao grande pol\u00edtico Ciro Ferreira Gomes. Filial da p\u00e1gina - no Facebook Ciro Progressista.","url":"https:\/\/t.co\/k1F7IE6du7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k1F7IE6du7","expanded_url":"https:\/\/www.facebook.com\/ciroprogressista\/","display_url":"facebook.com\/ciroprogressis\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19494,"friends_count":339,"listed_count":22,"created_at":"Thu - Nov 16 18:26:16 +0000 2017","favourites_count":25165,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9644,"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\/1192184828638244866\/FJEnKssd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192184828638244866\/FJEnKssd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/931226931068063744\/1573073986","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234501244347191297,"quoted_status_id_str":"1234501244347191297","quoted_status":{"created_at":"Mon - Mar 02 15:30:07 +0000 2020","id":1234501244347191297,"id_str":"1234501244347191297","text":"Almo\u00e7o - com o ex-presidente da Fran\u00e7a, @fhollande. Conversamos muito sobre a - conjuntura no Brasil e na Fran\u00e7a e as t\u2026 https:\/\/t.co\/8aRYcH2ZjT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fhollande","name":"Fran\u00e7ois - Hollande","id":18814998,"id_str":"18814998","indices":[38,48]}],"urls":[{"url":"https:\/\/t.co\/8aRYcH2ZjT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234501244347191297","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2670726740,"id_str":"2670726740","name":"Lula","screen_name":"LulaOficial","location":"","description":"Ex-presidente - da Rep\u00fablica do Brasil (2003-2010).","url":"https:\/\/t.co\/VtUIIAlkIw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VtUIIAlkIw","expanded_url":"http:\/\/www.lula.com.br","display_url":"lula.com.br","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1458306,"friends_count":871,"listed_count":2238,"created_at":"Tue - Jul 22 21:36:50 +0000 2014","favourites_count":3470,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":20109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217527056755494912\/N3wvBsKK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217527056755494912\/N3wvBsKK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2670726740\/1573484570","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":426,"favorite_count":2652,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":true,"quoted_status_id":1234501244347191297,"quoted_status_id_str":"1234501244347191297","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"}],"search_metadata":{"completed_in":0.07,"max_id":1234518556370440192,"max_id_str":"1234518556370440192","next_results":"?max_id=1234518548824940543&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1234518556370440192&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:11 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Florida,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:11 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/935509039492091904/WHIrGP5p_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '303459' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:11 GMT - Last-Modified: - - Tue, 28 Nov 2017 13:59:50 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/935509039492091904 - X-Cache: - - HIT - X-Connection-Hash: - - 922c0d2af3dae6ee946a47ff811b8bb6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:11 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Florida,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:11 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:11 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/660107919522856961/nnWx2yD2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '492844' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Last-Modified: - - Fri, 30 Oct 2015 14:54:06 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/660107919522856961 - X-Cache: - - HIT - X-Connection-Hash: - - 784aeded847ec6c4464e9fc9c4aaaaf8 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Cardiff,%20Wales&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1175018301484937216/AGTbJWR9_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1191' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Last-Modified: - - Fri, 20 Sep 2019 12:04:08 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1175018301484937216 - X-Cache: - - HIT - X-Connection-Hash: - - 6e7db801fb45f3e1a64c6de3bc4fc5bb - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Cardiff,%20Wales&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=san%20diego&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1056309605511413761/ibiMhYvV_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '193407' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Last-Modified: - - Sat, 27 Oct 2018 22:18:09 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1056309605511413761 - X-Cache: - - HIT - X-Connection-Hash: - - 6f5be3db6546f43b0cfb59143c09b6f3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=san%20diego&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:12 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Port%20Clinton,%20Ohio&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:12 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:13 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1222975234573316102/9IpzbusY_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '544463' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:14 GMT - Last-Modified: - - Thu, 30 Jan 2020 20:07:52 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1222975234573316102 - X-Cache: - - HIT - X-Connection-Hash: - - 658b387f21ac869f737a8913979f31dc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '166' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:14 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Port%20Clinton,%20Ohio&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:14 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:14 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234510093963624448.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="88c9f9da598abb6116b7ed1620c62034", - oauth_signature="Z%2FMQPm8AkbXrhnpCVPCSpDlBCgc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257094", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2801' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:14 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:14 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325709471239690; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:14 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_i9S/Yj11zECoTvxIE6gQ6g=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:14 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 5419ac9e042fa3c0827907986e335e97 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '861' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '140' - X-Transaction: - - 000b853000d74640 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:05:17 +0000 2020","id":1234510093963624448,"id_str":"1234510093963624448","text":"My - new plan for coronavirus response:\n1. Ensure every American can get all recommended - care for coronavirus for fre\u2026 https:\/\/t.co\/6Afxl67CH4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6Afxl67CH4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510093963624448","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":357606935,"id_str":"357606935","name":"Elizabeth - Warren","screen_name":"ewarren","location":"Massachusetts","description":"U.S. - Senator, former teacher, and candidate for president. Wife, mom (Amelia, Alex, - Bailey, @CFPB), grandmother, and Okie. She\/her. Official campaign account.","url":"https:\/\/t.co\/5jpXuSnwli","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5jpXuSnwli","expanded_url":"http:\/\/ewar.ren\/chip-in","display_url":"ewar.ren\/chip-in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3831316,"friends_count":521,"listed_count":15758,"created_at":"Thu - Aug 18 16:43:48 +0000 2011","favourites_count":116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9199,"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\/1215406626049413121\/LiVKh64l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215406626049413121\/LiVKh64l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357606935\/1578610497","profile_link_color":"232444","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"7DA6D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5538,"favorite_count":22072,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:14 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Massachusetts&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:14 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1215406626049413121/LiVKh64l_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '412957' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Last-Modified: - - Thu, 09 Jan 2020 22:52:55 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1215406626049413121 - X-Cache: - - HIT - X-Connection-Hash: - - 9f33be4d1b1bf304a728458917371916 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Massachusetts&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/660107919522856961/nnWx2yD2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '492847' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Last-Modified: - - Fri, 30 Oct 2015 14:54:06 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/660107919522856961 - X-Cache: - - HIT - X-Connection-Hash: - - 784aeded847ec6c4464e9fc9c4aaaaf8 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH3wAKAB4ADgA4AAdhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/AABEIAEkASQMBIgACEQEDEQH/xAAcAAACAgMBAQAAAAAAAAAAAAAGBwADAgQIAQX/xAA/EAABAwMCAgYECA8AAAAAAAABAgMEAAURBhIHIRMUMTJRYQhBcYEVIjNCUrHT4TQ1NkNTYnJzdJGSk6HBwv/EABsBAAMBAAMBAAAAAAAAAAAAAAQFBgMAAgcB/8QAJxEAAQQBAwQCAgMAAAAAAAAAAQACAwQFESExEhNBUSOBNGEUcZH/2gAMAwEAAhEDEQA/AOw6xdcQ02pxxYQhIySTgCo64hppTjiglCRkk+oUl+IWspF3lOQYLqm4SDtJSebn3VpQoSXJOlvHkrG3bZWZ1O58BFeqOJEKEtce1tdadTyKycIB/wB0BXPWuop6jvmlpB+a2MAUO1Ks62LrVxs3U+ypifIzzHc6D9LdN3uhVuM9/Oc53V9O26y1DBUC1PUtI+a4Mih+pRb60Txo5oP0hmzyNOocf9TY01xMjyFpYu7IYWeXSp7v3Uwoz7MllLzDiXEKGQpJyK5lop0Lq2VYpiGXVqcgrOFoJ7vmKQZDBMc0vr7H0nFPLuBDJuPaetSqokhqVGbkMLC23E7kkGrakyNDoVRA67hL/jDflwrc3ao68OyOayDzCaUNEXEaeqfqyWsnKWyG0+wUO16Bi6wr1mjydyo7IzmacnwNlKolSEMNlSiABV9begrTF1BxFtttnpDkRIXIcbPY5sTkJPiM4z5CirMwgjLz4Q0ERleGDytG327U1yi9ctunLnKinml1DB2qH6ue33ZrWjyyX1x3m3GX21bXGnElKknwIPMV1ghCUICUgBIGAAOQFKH0jbLDbt1v1I02luaiUmM4sDBdbUDgHxwRy9ppDVzT5Jg142KcWcUxkRc07hLkc6lVsHLYNWVSpEmjwavq19JZZC87RvZyfV6xTNrnfR8xUDUsGQlWMOhJ9h5U/uuNfSqJztXt2Opg2dv9qqxFjuQdLjwueL7u+GZe/O7pTmtKiDiHBVA1ZLbIwlZ3p8waH6sKzw+Jrh5AU1Yb0SuB9qVTDnTrFfod+twSqREXu2K7riSMKSfIgkVG23pt0h2yMpCX5j6WGi4SEhSjgZx6qKnOEGu1E4n2LHm879nQ1y1XYO3KeVvVrzPPXGOEwLVxf0XJgpemTnre+E/Hjvx1lQPgCkEK91LTidrU62nxokBh1m0Q19IkujC33MY3FPqABOB28yTVquDGuFHJm2H+879nXytT6UvOjVQkXh+A71wrDfVlqVjbjOdyR4ik9KGkJgWO1PhMrUtsxEOboPK1G07UAVlXiTkV7VOkKug566xtznpE4/nTl3O+K6VGk4ip2o4MdIzl0E+wc6f/AFFr6Jqczlhkb2NPpPsPEXMcUDcZLGuVDbu8dGVsfFdx2lNKWum5DTb7K2XUhSFjCgfWKSOv9IyLJMXJjNqcguHKSB3PI10wWQaW/wAd53HC5l6R17zB/aEtPoUrX2myOwXNgn+sV1NkeNcpSWEPJwqvOH1uaY4uaZdQVZEw/OP6Ndb5eiZfmB4CyxlwR/ERyV1dSW9JonrOmOf5yR9SKdKe6PZSW9Jr8K0x+8kfUikWP/JYm978dyAG+4KyrFvuCiXRWlpd/nIJQpENJy44R2jwFW80zIWF7zoApOOJ8rw1g3RTwZsa+lcvT6MJxsZz/k00cedUwIrMKG3FjoCG207UgVfXnt60bUxkP0rOpXFeIMClVyGWpDKmnm0uIUMFKhkGrKlCg6bhEcpcan4aMyFrkWZ0MrPPold33UC2LTl3tHFbThmxFJQmYcrHMfJrroGhK/8A5aWT+J/4VTRmXsdswvOoO37QDsdD3BI3Yo0T3R7KUfpB2ubdblphiEyXFhyRnngDkim6OwUH66/H1i/ae+pNDxzGBwkbyFvJEJWFh4KF9LcMtvRyL08FAYPQo7PeaZUKLHhx0x4zSWm0jASkYqxn5JHsrKutm9NaOshX2CrFANGBSpUqUIiF/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/660107919522856961/nnWx2yD2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '492847' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Last-Modified: - - Fri, 30 Oct 2015 14:54:06 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/660107919522856961 - X-Cache: - - HIT - X-Connection-Hash: - - 784aeded847ec6c4464e9fc9c4aaaaf8 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Evreux,%20France%20%F0%9F%87%AB%F0%9F%87%B7&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1220799451859705857/DMpxMBc7_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '279199' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Last-Modified: - - Fri, 24 Jan 2020 20:02:05 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1220799451859705857 - X-Cache: - - HIT - X-Connection-Hash: - - 732eb068712c628d9fe2561accd29e39 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '119' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Evreux,%20France%20%F0%9F%87%AB%F0%9F%87%B7&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:15 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:15 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Venezuela&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:16 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1213115128742322176/9WuTAeeW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '369106' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:16 GMT - Last-Modified: - - Fri, 03 Jan 2020 15:07:19 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1213115128742322176 - X-Cache: - - HIT - X-Connection-Hash: - - 15c5be7e7dd3ce53cd8cb9e6961857f3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Venezuela&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=SoCal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:16 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1139890418198274049/Aa2ibikY_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '213032' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:38:16 GMT - Last-Modified: - - Sat, 15 Jun 2019 13:38:28 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1139890418198274049 - X-Cache: - - HIT - X-Connection-Hash: - - d29419d6b627206c55d1e81f3f62bb2a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '124' - Content-Length: - - '14899' - body: - encoding: ASCII-8BIT - string: !binary |- - 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1N1GU592IMHHcwkftIhLen+Ur2jp2N3UsDyvYWWrCbn3VlNslhhkSpVzFTYZnnxwSg66zCTx4bSLiESEnJHnuLYaoBKhaRli6HZXvQsDltBkZAhn8QV5kYIlBjFFsCFk4YevLeDL33wBzVodGr2m6KEpFyN3HogYlUiWCJF+l6eM0THEVVCuV+6Ue+OUAJfmSncvzuzw/TzP/NwmVkhL/ME4jRlhioYULxKupwkceKLXFLqo+2daMpEh4tuT9KXhZ+fa2FhxsbtEorfkIrPZUPe2SoVQkxzqQOIyUce88GYBeqsEkzLAYsTJRJrcEKgIJr2oPndNAlEFbpf2y5fIBXlesEI1wrrZCbnpXyZN/urJC3jqyfPolMsw1C6wpJ+EoUSTYJS4GyqVhGgq6qMc0N2UlGac7Lt174oSTdY9r+wuXzh3BdvpPZ5HIks+TErSvstjuh+tCLUYtTbvtrHE9DLjzYz5v/qDz2vbnXLWAAAAAElFTkSuQmCCICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:16 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=SoCal&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:16 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:16 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234507544485195779.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8ac0a742873bd28b5066087eed989f98", - oauth_signature="y2liBpFoyq56u0ZcVg6VoMbDbmA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257096", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '5856' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:17 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:17 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325709746709982; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:17 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_v3Z+NYZgDXTnTa2Yjp/WpA=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:17 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - eaa04e8c398319b4ae9eddbf61d6e717 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '860' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '152' - X-Transaction: - - 00b88cb50090f9c0 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 15:55:09 +0000 2020","id":1234507544485195779,"id_str":"1234507544485195779","text":"\ud83d\udc81\ud83c\udffc\u200d\u2640\ufe0f - ... FACTS:\n\n\u2022 South Korea gives FREE TESTS to ALL citizens AND ALL - non-citizens as a part of their emergency\u2026 https:\/\/t.co\/eAdfvcUB35","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eAdfvcUB35","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234507544485195779","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,"user":{"id":957547453045092354,"id_str":"957547453045092354","name":"\u2763\ufe0f\u13ae\u13d2\u13a5\u13d5\u13d5\u13a9\u2763\ufe0f\ud83e\udd40","screen_name":"PrissyBritchez","location":"","description":"\u15f7\u15e9\u15ea\u15e9\u1515\u1515 - GI\u144eGE\u1587 \u1587E\u1515I\u1515T\u15e9\u144e\u1455E \u15f0E\u15f0\u15f7E\u1587 - ... \u146d\u2022\u1587\u2022\u144c ... \u15f7\u144c\u15f7\u15f7\u14aaE\u1515\ud83c\udf7e - ... & ... \u15f7\u144c\u15f7\u15f7\u14aaE \u15f7\u15e9T\u157c\u1515\ud83d\udec0 - ... #\u146d\u15e9YIT\u15b4O\u1587\u15ef\u15e9\u1587\u15ea ... \u2764 ... #spoonie","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22188,"friends_count":21241,"listed_count":7,"created_at":"Sun - Jan 28 09:34:37 +0000 2018","favourites_count":43427,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21700,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234233083592769539\/FWrULrLS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234233083592769539\/FWrULrLS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/957547453045092354\/1573246103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233400273013338112,"quoted_status_id_str":"1233400273013338112","quoted_status":{"created_at":"Fri - Feb 28 14:35:15 +0000 2020","id":1233400273013338112,"id_str":"1233400273013338112","text":"South - Korea has gone through over 10,000 COVID-19 tests today. People who have any - slightest of symptoms (or not) c\u2026 https:\/\/t.co\/TtBfHBsm8g","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TtBfHBsm8g","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233400273013338112","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":155488031,"id_str":"155488031","name":"Raphael - Rashid","screen_name":"koryodynasty","location":"Seoul, Republic of Korea","description":"Seoul-based - freelance journo & @KoreaExpose co-founder. Formerly @EdelmanPR \ud83d\udce7 - raphael [at] https:\/\/t.co\/fLY5GmQEoi \ud83c\uddec\ud83c\udde7\ud83c\uddeb\ud83c\uddf7\ud83c\udde7\ud83c\udde9\ud83c\uddf0\ud83c\uddf7 - \ud504\ub9ac\ub79c\uc11c \uae30\uc790 | \uc11c\uc6b8 \uac70\uc8fc","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/fLY5GmQEoi","expanded_url":"http:\/\/rashid.kr","display_url":"rashid.kr","indices":[91,114]}]}},"protected":false,"followers_count":9322,"friends_count":713,"listed_count":162,"created_at":"Mon - Jun 14 08:04:07 +0000 2010","favourites_count":13426,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10979,"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\/1223120496654311425\/Vq3cF2OJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223120496654311425\/Vq3cF2OJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155488031\/1581572990","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25984,"favorite_count":58625,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"retweet_count":82,"favorite_count":105,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:17 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1234233083592769539/FWrULrLS_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146174' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:17 GMT - Last-Modified: - - Sun, 01 Mar 2020 21:42:32 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1234233083592769539 - X-Cache: - - HIT - X-Connection-Hash: - - 2dc9b8e4247c7c5e62e82edd762a31b1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:17 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/660107919522856961/nnWx2yD2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '492850' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:18 GMT - Last-Modified: - - Fri, 30 Oct 2015 14:54:06 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/660107919522856961 - X-Cache: - - HIT - X-Connection-Hash: - - 784aeded847ec6c4464e9fc9c4aaaaf8 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Gateshead,%20England&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/744853453600591872/hphRM2_x_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1192' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:18 GMT - Last-Modified: - - Mon, 20 Jun 2016 11:22:36 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/744853453600591872 - X-Cache: - - HIT - X-Connection-Hash: - - 366eefe3c838730d7338c271a6ddf046 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Gateshead,%20England&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:18 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234462291652993032.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b4bbcdebf97720ad7877ada3a6949c66", - oauth_signature="2KonrWu%2B2rdw7e0yEgyhCD2yAJM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257098", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2693' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:19 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:18 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325709896762133; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:18 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_IrTXsXvWBwKHmW3Vi5Q+iQ=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:18 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 5bc6a5a31b37259b4c7fbba48863aab9 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '859' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '131' - X-Transaction: - - 00f821830005f519 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 12:55:20 +0000 2020","id":1234462291652993032,"id_str":"1234462291652993032","text":"I - was criticized by the Democrats when I closed the Country down to China many - weeks ahead of what almost everyone\u2026 https:\/\/t.co\/kZagXpNCvF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kZagXpNCvF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234462291652993032","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,"user":{"id":25073877,"id_str":"25073877","name":"Donald - J. Trump","screen_name":"realDonaldTrump","location":"Washington, DC","description":"45th - President of the United States of America\ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/OMxB0x7xC5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OMxB0x7xC5","expanded_url":"http:\/\/www.Instagram.com\/realDonaldTrump","display_url":"Instagram.com\/realDonaldTrump","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":73325113,"friends_count":47,"listed_count":115420,"created_at":"Wed - Mar 18 13:46:38 +0000 2009","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":49481,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"6D5C18","profile_background_image_url":"http:\/\/abs.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\/874276197357596672\/kUuht00m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874276197357596672\/kUuht00m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25073877\/1583212785","profile_link_color":"1B95E0","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"C5CEC0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35800,"favorite_count":155831,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=3 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/874276197357596672/kUuht00m_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '460915' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:19 GMT - Last-Modified: - - Mon, 12 Jun 2017 14:42:23 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/874276197357596672 - X-Cache: - - HIT - X-Connection-Hash: - - 95162390af31c9bc5a6506da1ab46a46 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/660114464453337088/m1G0Z0hu_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '346374' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:19 GMT - Last-Modified: - - Fri, 30 Oct 2015 15:20:07 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/660114464453337088 - X-Cache: - - HIT - X-Connection-Hash: - - e216f4cc72bb0af27b99daad2fecf26b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Italia&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218759966800003072/jj6Iozla_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '98259' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:19 GMT - Last-Modified: - - Sun, 19 Jan 2020 04:57:54 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1218759966800003072 - X-Cache: - - HIT - X-Connection-Hash: - - 9c3366bc9fc689a15506c907680d12d7 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Essen%20%26%20Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/698149615976259584/VtNO4Fi5_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '89951' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Last-Modified: - - Fri, 12 Feb 2016 14:18:14 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/698149615976259584 - X-Cache: - - HIT - X-Connection-Hash: - - 11326857e3f399a23280d925da646244 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Essen%20%26%20Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Albuquerque,%20NM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/928680778371776512/IEPLVUtH_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '307115' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Last-Modified: - - Thu, 09 Nov 2017 17:46:46 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/928680778371776512 - X-Cache: - - HIT - X-Connection-Hash: - - c5f843ee601c40ee67b5cb6d396d5fc9 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '113' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Albuquerque,%20NM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lagos,%20Nigeria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1221148035998240768/cU1VFUAr_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '61955' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Last-Modified: - - Sat, 25 Jan 2020 19:07:14 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1221148035998240768 - X-Cache: - - HIT - X-Connection-Hash: - - 6839bcbe381f7fa872ad813d824637ba - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lagos,%20Nigeria&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/986889596955955200/Yq3uEcfR_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '16232' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:21 GMT - Last-Modified: - - Thu, 19 Apr 2018 08:47:50 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/986889596955955200 - X-Cache: - - HIT - X-Connection-Hash: - - '018b0dae5e5d5079ce9ea173e7047846' - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=registering%20voters%20in%20bexar&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1172139254463569920/wO7LsDw6_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1187' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:21 GMT - Last-Modified: - - Thu, 12 Sep 2019 13:23:50 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1172139254463569920 - X-Cache: - - HIT - X-Connection-Hash: - - 5e1c956e012c1c2911750632b4230082 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=registering%20voters%20in%20bexar&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:21 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1234518548824940543&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="3593742e1ebe72a81ffd54cc73b4ffec", - oauth_signature="gP6j%2Ffh%2F3IhM9pOT1ScxSSf6DKw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257101", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '570559' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:22 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:22 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325710220763273; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:22 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_B7wh+EwQi5HliE/kNJ3Uww=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:22 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 0a339c43f23d020f4fa308d07d533674 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '169' - X-Rate-Limit-Reset: - - '1583257471' - X-Response-Time: - - '274' - X-Transaction: - - '008866b400ddf169' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Mar 02 16:38:52 +0000 2020","id":1234518548770381832,"id_str":"1234518548770381832","text":"RT - @PolScorr: Esultiamo perch\u00e9 i bambini sono immuni al #coronavirus\n\nE - poi facciamo finta di non vedere che i gas lanciati al confine #Gre\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[56,68]}],"symbols":[],"user_mentions":[{"screen_name":"PolScorr","name":"POLiticamenteScorretto\ud83c\udfb9#FR\u00a9","id":990614590156308480,"id_str":"990614590156308480","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96853674,"id_str":"96853674","name":"Attivissimo - me \ud83c\uddee\ud83c\uddf9\ud83c\uddea\ud83c\uddfa","screen_name":"elivito","location":"Sicilia, - Italia","description":"Sicilia, Italia, Europa, Terra","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1028,"friends_count":981,"listed_count":7,"created_at":"Mon - Dec 14 22:19:53 +0000 2009","favourites_count":31107,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22589,"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\/1184007492734541824\/l8JbGr7K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184007492734541824\/l8JbGr7K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96853674\/1579804041","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:18:37 +0000 2020","id":1234513451290124295,"id_str":"1234513451290124295","text":"Esultiamo - perch\u00e9 i bambini sono immuni al #coronavirus\n\nE poi facciamo finta - di non vedere che i gas lanciati al co\u2026 https:\/\/t.co\/V0qE9wP6mu","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[42,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/V0qE9wP6mu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234513451290124295","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":990614590156308480,"id_str":"990614590156308480","name":"POLiticamenteScorretto\ud83c\udfb9#FR\u00a9","screen_name":"PolScorr","location":"Italia","description":"\u0420\u044b\u0446\u0430\u0440\u044c - \u043d\u0430\u0432\u0441\u0435\u0433\u0434\u0430\/cosmopolita\/#antifascista\/#facciamorete\/#FBPE\/vegetarian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10161,"friends_count":5331,"listed_count":23,"created_at":"Sun - Apr 29 15:31:37 +0000 2018","favourites_count":89329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45323,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1135326825238933514\/Tv1_fvkb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1135326825238933514\/Tv1_fvkb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/990614590156308480\/1532355142","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":751,"favorite_count":1774,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":751,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548741074949,"id_str":"1234518548741074949","text":"RT - @nnayrodrigues: Eu&Ele se protegendo do coronav\u00edrus \ud83d\udc8f - https:\/\/t.co\/LCsfdysDYP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nnayrodrigues","name":"Nayara - Rodrigues","id":1671126145,"id_str":"1671126145","indices":[3,17]}],"urls":[],"media":[{"id":1234176460082089986,"id_str":"1234176460082089986","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","url":"https:\/\/t.co\/LCsfdysDYP","display_url":"pic.twitter.com\/LCsfdysDYP","expanded_url":"https:\/\/twitter.com\/nnayrodrigues\/status\/1234176474120425475\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1147,"resize":"fit"},"medium":{"w":960,"h":1147,"resize":"fit"},"small":{"w":569,"h":680,"resize":"fit"}},"source_status_id":1234176474120425475,"source_status_id_str":"1234176474120425475","source_user_id":1671126145,"source_user_id_str":"1671126145"}]},"extended_entities":{"media":[{"id":1234176460082089986,"id_str":"1234176460082089986","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","url":"https:\/\/t.co\/LCsfdysDYP","display_url":"pic.twitter.com\/LCsfdysDYP","expanded_url":"https:\/\/twitter.com\/nnayrodrigues\/status\/1234176474120425475\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1147,"resize":"fit"},"medium":{"w":960,"h":1147,"resize":"fit"},"small":{"w":569,"h":680,"resize":"fit"}},"source_status_id":1234176474120425475,"source_status_id_str":"1234176474120425475","source_user_id":1671126145,"source_user_id_str":"1671126145"}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":906852608673009664,"id_str":"906852608673009664","name":"\ud835\udd92\ud835\udd86\ud835\udd96\ud835\udd9a\ud835\udd8a\ud835\udd91\ud835\udd8e","screen_name":"maquelischell_","location":"TR&$ - C\u00d6R\u00d6@$","description":"se entrou tem que botar 1","url":"https:\/\/t.co\/sFyo5U9pXL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sFyo5U9pXL","expanded_url":"https:\/\/www.instagram.com\/mackyschell\/","display_url":"instagram.com\/mackyschell\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2262,"friends_count":615,"listed_count":5,"created_at":"Sun - Sep 10 12:11:25 +0000 2017","favourites_count":13375,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24741,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234172288569954304\/n6ZBWA8S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234172288569954304\/n6ZBWA8S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/906852608673009664\/1583084583","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 17:59:35 +0000 2020","id":1234176474120425475,"id_str":"1234176474120425475","text":"Eu&Ele - se protegendo do coronav\u00edrus \ud83d\udc8f https:\/\/t.co\/LCsfdysDYP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234176460082089986,"id_str":"1234176460082089986","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","url":"https:\/\/t.co\/LCsfdysDYP","display_url":"pic.twitter.com\/LCsfdysDYP","expanded_url":"https:\/\/twitter.com\/nnayrodrigues\/status\/1234176474120425475\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1147,"resize":"fit"},"medium":{"w":960,"h":1147,"resize":"fit"},"small":{"w":569,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234176460082089986,"id_str":"1234176460082089986","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","url":"https:\/\/t.co\/LCsfdysDYP","display_url":"pic.twitter.com\/LCsfdysDYP","expanded_url":"https:\/\/twitter.com\/nnayrodrigues\/status\/1234176474120425475\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1147,"resize":"fit"},"medium":{"w":960,"h":1147,"resize":"fit"},"small":{"w":569,"h":680,"resize":"fit"}}}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1671126145,"id_str":"1671126145","name":"Nayara - Rodrigues","screen_name":"nnayrodrigues","location":"048","description":"M\u00e3e - da Gabrielly \ud83d\udc96 \u2022 #EternoViny \ud83d\udc7c\u2728","url":"https:\/\/t.co\/QZ7COhrVEe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QZ7COhrVEe","expanded_url":"https:\/\/www.instagram.com\/rodriguessnay\/","display_url":"instagram.com\/rodriguessnay\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2866,"friends_count":938,"listed_count":1,"created_at":"Wed - Aug 14 18:00:45 +0000 2013","favourites_count":59186,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35988,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1233498721419177984\/BkbxnCE3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233498721419177984\/BkbxnCE3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1671126145\/1583099152","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3227,"favorite_count":24637,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":3227,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548678107137,"id_str":"1234518548678107137","text":"RT - @CRRJA5: .@MikeBloomberg repeated the false claim that @realDonaldTrump referred - to the coronavirus as a \"hoax.\" \n\nThe Democrats are hea\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CRRJA5","name":"Constitutional - Republic TEXT TRUMP 88022","id":4165642155,"id_str":"4165642155","indices":[3,10]},{"screen_name":"MikeBloomberg","name":"Mike - Bloomberg","id":16581604,"id_str":"16581604","indices":[13,27]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[58,74]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":260857015,"id_str":"260857015","name":"XWendyBX\ud83c\udf1f\u2b50\ud83c\udf1f","screen_name":"TennFloridian","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":647,"listed_count":3,"created_at":"Fri - Mar 04 19:10:02 +0000 2011","favourites_count":56369,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65981,"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\/1133761425736966144\/A9VzK8_d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133761425736966144\/A9VzK8_d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/260857015\/1559144698","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:16:13 +0000 2020","id":1234482647730151429,"id_str":"1234482647730151429","text":".@MikeBloomberg - repeated the false claim that @realDonaldTrump referred to the coronavirus - as a \"hoax.\" \n\nThe Democ\u2026 https:\/\/t.co\/Gnue6RfDYu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MikeBloomberg","name":"Mike - Bloomberg","id":16581604,"id_str":"16581604","indices":[1,15]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[46,62]}],"urls":[{"url":"https:\/\/t.co\/Gnue6RfDYu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234482647730151429","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4165642155,"id_str":"4165642155","name":"Constitutional - Republic TEXT TRUMP 88022","screen_name":"CRRJA5","location":"","description":"USAF - #VET RTed by the President \ud83d\ude4f\ud83c\udffb\ud83c\uddfa\ud83c\uddf8 - #AmericaFirst #MAGA #KAG #Trump2020 #2A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":237841,"friends_count":37447,"listed_count":235,"created_at":"Wed - Nov 11 18:40:29 +0000 2015","favourites_count":13100,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":190428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234304104085757953\/vrbdv8Nh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234304104085757953\/vrbdv8Nh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4165642155\/1580972368","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":350,"favorite_count":347,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":350,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548677984257,"id_str":"1234518548677984257","text":"RT - @jenniferatntd: After running out of cooking oil, I finally went to the shop. - This is what I see: no panic shopping, lots of rice and ev\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jenniferatntd","name":"\u66fe\u931a - Jennifer Zeng","id":2313027666,"id_str":"2313027666","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"zh","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":801606627421884417,"id_str":"801606627421884417","name":"\ud83d\ude0e","screen_name":"Dean28062159","location":" - ","description":"Welcome here. Married\/ Father of two awesome kids . \ud83c\udf0e - Just hurling through the universe. Jesus Saves","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":453,"friends_count":736,"listed_count":8,"created_at":"Thu - Nov 24 02:01:27 +0000 2016","favourites_count":25072,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11193,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191964728354062336\/zugY91Wl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191964728354062336\/zugY91Wl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/801606627421884417\/1577223033","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:54 +0000 2020","id":1234517800292700160,"id_str":"1234517800292700160","text":"After - running out of cooking oil, I finally went to the shop. This is what I see: - no panic shopping, lots of rice a\u2026 https:\/\/t.co\/MCC2Djl0Hv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MCC2Djl0Hv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517800292700160","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"zh","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2313027666,"id_str":"2313027666","name":"\u66fe\u931a - Jennifer Zeng","screen_name":"jenniferatntd","location":"New York, USA","description":"Writer - at https:\/\/t.co\/XRo5fzvFMx , YouTuber at https:\/\/t.co\/1MSzWTBJPE \u4f5c\u5bb6\u3001\u8a18\u8005\u3001\u81ea\u5a92\u9ad4\u4eba\u3002\u9858\u81ea\u5df1\u548c\u4e16\u754c\u66f4\u7f8e\u597d\u3002\u500b\u4eba\u7db2\u7ad9\u53ca\u6cb9\u7ba1\u7db2\u5740\u5982\u524d\u3002","url":"https:\/\/t.co\/DVUmHwyaie","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DVUmHwyaie","expanded_url":"https:\/\/www.jenniferzengblog.com","display_url":"jenniferzengblog.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/XRo5fzvFMx","expanded_url":"http:\/\/jenniferzengblog.com","display_url":"jenniferzengblog.com","indices":[10,33]},{"url":"https:\/\/t.co\/1MSzWTBJPE","expanded_url":"http:\/\/youtube.com\/c\/JenniferZeng","display_url":"youtube.com\/c\/JenniferZeng","indices":[48,71]}]}},"protected":false,"followers_count":85872,"friends_count":365,"listed_count":643,"created_at":"Mon - Jan 27 04:58:03 +0000 2014","favourites_count":16832,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10842,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165454070854930432\/rlFABk5V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165454070854930432\/rlFABk5V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2313027666\/1558527954","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":104,"favorite_count":473,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},"is_quote_status":false,"retweet_count":104,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"zh"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548606836742,"id_str":"1234518548606836742","text":"RT - @StarSports_Bet: \u2b55 | NEW THREE WAY MARKET\n\nIt\u2019s the question everyone\u2019s - asking - will #Cheltenham beat the #coronavirus? Star have odds\u2026","truncated":false,"entities":{"hashtags":[{"text":"Cheltenham","indices":[89,100]},{"text":"coronavirus","indices":[110,122]}],"symbols":[],"user_mentions":[{"screen_name":"StarSports_Bet","name":"Star - Sports Bookmakers","id":196155379,"id_str":"196155379","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27500961,"id_str":"27500961","name":"Simon - Holden","screen_name":"lordoakwell","location":"London, England","description":"Columnist - for the Value Rater Racing Club, author of The Betting Blueprint https:\/\/t.co\/fQntdwSwrc - DM to join my Golf Service@ Racing Service","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/fQntdwSwrc","expanded_url":"http:\/\/Amazon.amazon.co.uk\/dp\/1916189504\/","display_url":"Amazon.amazon.co.uk\/dp\/1916189504\/","indices":[76,99]}]}},"protected":false,"followers_count":1911,"friends_count":1370,"listed_count":21,"created_at":"Sun - Mar 29 20:50:42 +0000 2009","favourites_count":13427,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4553,"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\/1225151569710239749\/AwIVTT3k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225151569710239749\/AwIVTT3k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27500961\/1580933871","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:59:46 +0000 2020","id":1234418110020620289,"id_str":"1234418110020620289","text":"\u2b55 - | NEW THREE WAY MARKET\n\nIt\u2019s the question everyone\u2019s asking - - will #Cheltenham beat the #coronavirus? Star have o\u2026 https:\/\/t.co\/Jv693RZs1k","truncated":true,"entities":{"hashtags":[{"text":"Cheltenham","indices":[69,80]},{"text":"coronavirus","indices":[90,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Jv693RZs1k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234418110020620289","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196155379,"id_str":"196155379","name":"Star - Sports Bookmakers","screen_name":"StarSports_Bet","location":"","description":"Welcome - to Star Sports, layers of some of the biggest bets in the industry since ''99. - Please gamble responsibly. 18+. | \ud83d\udda5\u00a0https:\/\/t.co\/3Lzx2mLbI2 - | \u260e\ufe0f 08000 521 321","url":"https:\/\/t.co\/3Lzx2mLbI2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3Lzx2mLbI2","expanded_url":"http:\/\/starsports.bet","display_url":"starsports.bet","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/3Lzx2mLbI2","expanded_url":"http:\/\/starsports.bet","display_url":"starsports.bet","indices":[122,145]}]}},"protected":false,"followers_count":10382,"friends_count":1596,"listed_count":75,"created_at":"Tue - Sep 28 13:28:46 +0000 2010","favourites_count":3702,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41994,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1060459506516275200\/ogS5LGCU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1060459506516275200\/ogS5LGCU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196155379\/1573731157","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548543754240,"id_str":"1234518548543754240","text":"BREAKING: - GB U18s tournaments cancelled by IIHF due to Coronavirus\u00a0concerns https:\/\/t.co\/2uYceIyOtQ - https:\/\/t.co\/CcJKRcMj9D","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2uYceIyOtQ","expanded_url":"https:\/\/chasingthepuck.com\/breaking-gb-u18s-tournaments-cancelled-by-iihf-due-to-coronavirus-concerns\/","display_url":"chasingthepuck.com\/breaking-gb-u1\u2026","indices":[76,99]}],"media":[{"id":1234518546857652224,"id_str":"1234518546857652224","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkE94U8AAaUso.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkE94U8AAaUso.png","url":"https:\/\/t.co\/CcJKRcMj9D","display_url":"pic.twitter.com\/CcJKRcMj9D","expanded_url":"https:\/\/twitter.com\/OliverJHampson\/status\/1234518548543754240\/photo\/1","type":"photo","sizes":{"small":{"w":632,"h":438,"resize":"fit"},"medium":{"w":632,"h":438,"resize":"fit"},"large":{"w":632,"h":438,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1234518546857652224,"id_str":"1234518546857652224","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkE94U8AAaUso.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkE94U8AAaUso.png","url":"https:\/\/t.co\/CcJKRcMj9D","display_url":"pic.twitter.com\/CcJKRcMj9D","expanded_url":"https:\/\/twitter.com\/OliverJHampson\/status\/1234518548543754240\/photo\/1","type":"photo","sizes":{"small":{"w":632,"h":438,"resize":"fit"},"medium":{"w":632,"h":438,"resize":"fit"},"large":{"w":632,"h":438,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.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,"user":{"id":2829583241,"id_str":"2829583241","name":"Oliver - Hampson","screen_name":"OliverJHampson","location":"Cardiff","description":"Commentator - for IceTime TV, writer for Chasing the Puck and Champions Hockey League. Host - of the @HampsonHockey podcast.","url":"https:\/\/t.co\/WFcouPHRP9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WFcouPHRP9","expanded_url":"https:\/\/chasingthepuck.com\/author\/olliehampson\/","display_url":"chasingthepuck.com\/author\/ollieha\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":706,"friends_count":499,"listed_count":12,"created_at":"Tue - Oct 14 14:15:39 +0000 2014","favourites_count":7375,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5014,"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\/1211246633092091904\/cqaMe-wX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211246633092091904\/cqaMe-wX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829583241\/1565094716","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":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548501991424,"id_str":"1234518548501991424","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2322202436,"id_str":"2322202436","name":"Heather - Weir","screen_name":"HeatherJWeir","location":"Dubai, Dubai","description":"Yoga - instructor, plant based, wine lover, world traveler","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":28,"listed_count":2,"created_at":"Sat - Feb 01 11:45:08 +0000 2014","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1419,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542922624955731968\/FD_URjFW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542922624955731968\/FD_URjFW_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153510,"favorite_count":478721,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153510,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548371955712,"id_str":"1234518548371955712","text":"RT - @SuzyKhimm: EXCLUSIVE: @NBCNews has obtained internal docs showing FEMA is - preparing for possibility that Trump will make an emergency d\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SuzyKhimm","name":"Suzy - Khimm","id":18174520,"id_str":"18174520","indices":[3,13]},{"screen_name":"NBCNews","name":"NBC - News","id":14173315,"id_str":"14173315","indices":[26,34]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":308403457,"id_str":"308403457","name":"\ud83d\udc53 - Harry Does \ud83d\udc53 Videos \ud83d\udc53 Reviews \ud83d\udc53 Promo Codes","screen_name":"HarryDoes","location":"#BernieBros - + #YangGang = WIN!","description":"https:\/\/t.co\/HXfEkve202 Amazon Associate - Promo Codes & Product Reviews. Political Rants for Humor & Fun. I would love - to see a Bernie\/Yang 2020 ticket with Tulsi SECstate","url":"https:\/\/t.co\/XgYmTPGM1e","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XgYmTPGM1e","expanded_url":"https:\/\/www.HarryDoes.com","display_url":"HarryDoes.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/HXfEkve202","expanded_url":"http:\/\/HarryDoes.com","display_url":"HarryDoes.com","indices":[0,23]}]}},"protected":false,"followers_count":21728,"friends_count":685,"listed_count":17,"created_at":"Tue - May 31 10:42:42 +0000 2011","favourites_count":12025,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14047,"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\/1225195876450103297\/wJCQOwfp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225195876450103297\/wJCQOwfp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/308403457\/1580944255","profile_link_color":"054B96","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:37:42 +0000 2020","id":1234518255060033543,"id_str":"1234518255060033543","text":"EXCLUSIVE: - @NBCNews has obtained internal docs showing FEMA is preparing for possibility - that Trump will make an em\u2026 https:\/\/t.co\/ynpTosXt1M","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NBCNews","name":"NBC - News","id":14173315,"id_str":"14173315","indices":[11,19]}],"urls":[{"url":"https:\/\/t.co\/ynpTosXt1M","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518255060033543","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18174520,"id_str":"18174520","name":"Suzy - Khimm","screen_name":"SuzyKhimm","location":"Washington, DC","description":"National - reporter for @NBCNews, investigating HUD, USDA, DOL, & other federal agencies. - Toddler mom. Phone person. Tips? suzy.khimm@nbcuni.com \/ DM for Signal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18339,"friends_count":1138,"listed_count":1111,"created_at":"Tue - Dec 16 22:17:48 +0000 2008","favourites_count":3396,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":491,"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\/1139926190129647616\/xhUrpFZl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1139926190129647616\/xhUrpFZl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18174520\/1505749662","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":623,"favorite_count":571,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":623,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548183224320,"id_str":"1234518548183224320","text":"RT - @ForumHSPH: Don''t miss today''s Forum event, The Coronavirus Outbreak: Tracking - COVID-19, at noon EST. You can tune in via Facebook, Harv\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ForumHSPH","name":"The - Forum","id":261825774,"id_str":"261825774","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2692076577,"id_str":"2692076577","name":"joan - enric \ud83d\udcaf","screen_name":"Joanenric67Joan","location":"","description":"SOM - VALENCIANS. Pero un hombre honesto, no es frances, ni alem\u00e1n, ni espa\u00f1ol, - es ciudadano del mundo, y su patria esta en todas partes. 100% VALENCIANISTE.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2345,"friends_count":2630,"listed_count":56,"created_at":"Wed - Jul 09 18:48:34 +0000 2014","favourites_count":153814,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":132265,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1108457802689925120\/x69d6_-7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1108457802689925120\/x69d6_-7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2692076577\/1512329950","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:00:22 +0000 2020","id":1234463557846282242,"id_str":"1234463557846282242","text":"Don''t - miss today''s Forum event, The Coronavirus Outbreak: Tracking COVID-19, at - noon EST. You can tune in via Faceb\u2026 https:\/\/t.co\/OujrF6AEHk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OujrF6AEHk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234463557846282242","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":261825774,"id_str":"261825774","name":"The - Forum","screen_name":"ForumHSPH","location":"Boston, MA","description":"The - official account of The Forum at Harvard T.H. Chan School of Public Health\ud83d\udca1","url":"http:\/\/t.co\/VP5dfiRrHT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/VP5dfiRrHT","expanded_url":"http:\/\/www.ForumHSPH.org","display_url":"ForumHSPH.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4033,"friends_count":2099,"listed_count":146,"created_at":"Sun - Mar 06 19:50:36 +0000 2011","favourites_count":979,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9207,"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\/593150603964096512\/ypmqiY0R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593150603964096512\/ypmqiY0R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/261825774\/1487732131","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":48,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548166430720,"id_str":"1234518548166430720","text":"RT - @elnacionalcat_e: V\u00cdDEO | El ministro de Interior alem\u00e1n niega el - saludo a Merkel por el coronavirus https:\/\/t.co\/hBZRD9oc12","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elnacionalcat_e","name":"ElNacional - .cat","id":3504318874,"id_str":"3504318874","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/hBZRD9oc12","expanded_url":"https:\/\/www.elnacional.cat\/es\/internacional\/ministro-interior-aleman-niega-saludo-merkel-coronavirus_475431_102.html","display_url":"elnacional.cat\/es\/internacion\u2026","indices":[104,127]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127351764,"id_str":"127351764","name":"Walter - Romero","screen_name":"romerowalter","location":"Costa Rica","description":"En - construcci\u00f3n, hasta que muera. No espere siempre un s\u00ed. Abierto - al debate, sin ofensas. Por un mundo mejor.","url":"https:\/\/t.co\/7JbqK2NMBM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7JbqK2NMBM","expanded_url":"https:\/\/www.facebook.com\/Letras-sueltas-Walter-Romero-992952300798917\/","display_url":"facebook.com\/Letras-sueltas\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2838,"friends_count":1213,"listed_count":31,"created_at":"Sun - Mar 28 23:00:44 +0000 2010","favourites_count":27110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50250,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213080065052938245\/a76OnoRk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213080065052938245\/a76OnoRk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127351764\/1578055802","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:30:31 +0000 2020","id":1234516443808567298,"id_str":"1234516443808567298","text":"V\u00cdDEO - | El ministro de Interior alem\u00e1n niega el saludo a Merkel por el coronavirus - https:\/\/t.co\/hBZRD9oc12","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hBZRD9oc12","expanded_url":"https:\/\/www.elnacional.cat\/es\/internacional\/ministro-interior-aleman-niega-saludo-merkel-coronavirus_475431_102.html","display_url":"elnacional.cat\/es\/internacion\u2026","indices":[83,106]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/www.wearebab.com\" rel=\"nofollow\"\u003eComitium5 BAB\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3504318874,"id_str":"3504318874","name":"ElNacional - .cat","screen_name":"elnacionalcat_e","location":"Barcelona, Catalu\u00f1a","description":"\u00daltima - hora pol\u00edtica y econ\u00f3mica de Catalunya, Espa\u00f1a e internacional. - Creado por Jos\u00e9 Antich. FB https:\/\/t.co\/lzMVtwRBeF En catal\u00e1n - @elnacionalcat","url":"http:\/\/t.co\/VUOkdUVhmY","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/VUOkdUVhmY","expanded_url":"http:\/\/www.elnacional.cat\/es\/","display_url":"elnacional.cat\/es\/","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzMVtwRBeF","expanded_url":"http:\/\/facebook.com\/elnacionalcates\/","display_url":"facebook.com\/elnacionalcate\u2026","indices":[98,121]}]}},"protected":false,"followers_count":8299,"friends_count":349,"listed_count":183,"created_at":"Mon - Aug 31 18:10:25 +0000 2015","favourites_count":76,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":269705,"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\/646298514385960960\/VEutSP7L_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646298514385960960\/VEutSP7L_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3504318874\/1457114112","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548128526337,"id_str":"1234518548128526337","text":"RT - @Newsweek: CDC mistakenly released Texas coronavirus patient who later tested - positive, San Antonio mayor says https:\/\/t.co\/5WpzYifHlQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Newsweek","name":"Newsweek","id":2884771,"id_str":"2884771","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/5WpzYifHlQ","expanded_url":"https:\/\/www.newsweek.com\/cdc-mistakenly-released-texas-coronavirus-patient-who-later-tested-positive-san-antonio-mayor-says-1489939?utm_term=Autofeed&utm_medium=Social&utm_source=Twitter#Echobox=1583117560","display_url":"newsweek.com\/cdc-mistakenly\u2026","indices":[114,137]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118298041,"id_str":"118298041","name":"HargiHero\ud83c\udfb6\ud83c\udf3b","screen_name":"HargiHero","location":"United - States","description":"*Followed by @Mariska \ud83d\udc6e\u200d\u2640\ufe0f4-11-18* - @eddiehargitay @endthebacklog @IAMEVIDENCEmov\n@TheJHF @official_orfeh @andy_karl - @kellyclarkson\n@KellyClarksonTV","url":"https:\/\/t.co\/O4xOOIevZb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/O4xOOIevZb","expanded_url":"https:\/\/give.joyfulheartfoundation.org\/fundraiser\/1570028","display_url":"give.joyfulheartfoundation.org\/fundraiser\/157\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1122,"friends_count":4545,"listed_count":9,"created_at":"Sun - Feb 28 06:23:10 +0000 2010","favourites_count":30732,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50168,"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\/1209506758470721536\/LxkTKABo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209506758470721536\/LxkTKABo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118298041\/1566588749","profile_link_color":"9266CC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 02:54:07 +0000 2020","id":1234310992399605760,"id_str":"1234310992399605760","text":"CDC - mistakenly released Texas coronavirus patient who later tested positive, San - Antonio mayor says https:\/\/t.co\/5WpzYifHlQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5WpzYifHlQ","expanded_url":"https:\/\/www.newsweek.com\/cdc-mistakenly-released-texas-coronavirus-patient-who-later-tested-positive-san-antonio-mayor-says-1489939?utm_term=Autofeed&utm_medium=Social&utm_source=Twitter#Echobox=1583117560","display_url":"newsweek.com\/cdc-mistakenly\u2026","indices":[100,123]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":2884771,"id_str":"2884771","name":"Newsweek","screen_name":"Newsweek","location":"New - York, NY","description":"Stay relevant. News and analysis on politics, science, - technology, and culture. Our staff likes to tweet: https:\/\/t.co\/9nAK2YjGoz","url":"https:\/\/t.co\/92gD7evE72","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/92gD7evE72","expanded_url":"http:\/\/www.newsweek.com","display_url":"newsweek.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9nAK2YjGoz","expanded_url":"https:\/\/twitter.com\/Newsweek\/lists\/newsweek-editorial","display_url":"twitter.com\/Newsweek\/lists\u2026","indices":[106,129]}]}},"protected":false,"followers_count":3425174,"friends_count":506,"listed_count":37985,"created_at":"Thu - Mar 29 19:51:11 +0000 2007","favourites_count":2690,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":230898,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EE2A26","profile_background_image_url":"http:\/\/abs.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\/741603495929905152\/di0NxkFa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/741603495929905152\/di0NxkFa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2884771\/1554409697","profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2F2F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1583,"favorite_count":1821,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1583,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548082495489,"id_str":"1234518548082495489","text":"RT - @RealWayneRoot: This is how a country destroys itself: OPEN BORDERS. Open - borders will bury us w\/Coronavirus. Dumb, dumb, dumb. At this\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealWayneRoot","name":"Wayne - Allyn Root","id":38284349,"id_str":"38284349","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":916888176265895937,"id_str":"916888176265895937","name":"Reg - H \u2b50\u2b50\u2b50","screen_name":"RHohnadel","location":"","description":"An - American \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":611,"friends_count":1002,"listed_count":4,"created_at":"Sun - Oct 08 04:49:10 +0000 2017","favourites_count":38008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43994,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137428763149459456\/Hcz31ibv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137428763149459456\/Hcz31ibv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/916888176265895937\/1560019123","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:32 +0000 2020","id":1234518463768449026,"id_str":"1234518463768449026","text":"This - is how a country destroys itself: OPEN BORDERS. Open borders will bury us - w\/Coronavirus. Dumb, dumb, dumb. At\u2026 https:\/\/t.co\/1IsoE5VarZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1IsoE5VarZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518463768449026","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38284349,"id_str":"38284349","name":"Wayne - Allyn Root","screen_name":"RealWayneRoot","location":"Las Vegas, Nevada","description":"Conservative - Warrior, National Media Personality, Bestselling author, Host \"WAR Now: Wayne - Allyn Root Show\" on Newsmax TV at 8 PM ET & USA Radio Network 6 PM ET","url":"https:\/\/t.co\/0993jwSntM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0993jwSntM","expanded_url":"http:\/\/www.rootforamerica.com","display_url":"rootforamerica.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":78971,"friends_count":6689,"listed_count":943,"created_at":"Wed - May 06 21:43:22 +0000 2009","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28488,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/683535584707518464\/pOxaE23a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/683535584707518464\/pOxaE23a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38284349\/1525118791","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":52,"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518548053209093,"id_str":"1234518548053209093","text":"Trump''s - coronavirus strategy faces new scrutiny after second US death\n\nhttps:\/\/t.co\/BYupbqbCSW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BYupbqbCSW","expanded_url":"https:\/\/www.cnn.com\/2020\/03\/02\/politics\/us-coronavirus-politics-donald-trump-joe-biden-washington\/index.html","display_url":"cnn.com\/2020\/03\/02\/pol\u2026","indices":[71,94]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28786312,"id_str":"28786312","name":"SoNotTrump\ud83e\udd14","screen_name":"kcmohondro","location":"Middle - of the country","description":"#FakePOTUS gotta go\ud83e\udd28 Wife, sister, - veteran\ud83d\udc95humanity & fairness. Hate & discrimination have NO PLACE - in America. Strong women rule \ud83d\udc4a #nevertrump\ud83d\ude16","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13816,"friends_count":15127,"listed_count":3,"created_at":"Sat - Apr 04 12:46:26 +0000 2009","favourites_count":36945,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":96122,"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\/965655969630998530\/uPW2ehiX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/965655969630998530\/uPW2ehiX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28786312\/1518997711","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547952365568,"id_str":"1234518547952365568","text":"RT - @Dan_KP: #thfc International Champions Cup matches scheduled to take place - in Asia this summer have been cancelled due to the coronaviru\u2026","truncated":false,"entities":{"hashtags":[{"text":"thfc","indices":[12,17]}],"symbols":[],"user_mentions":[{"screen_name":"Dan_KP","name":"Dan - Kilpatrick","id":4653929363,"id_str":"4653929363","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3015009971,"id_str":"3015009971","name":"Spurs - LJB","screen_name":"tottenham2238","location":"\ub300\ud55c\ubbfc\uad6d \uc778\ucc9c","description":"COYS\n\n\ub77c\uba5c\ub77c\uac00 - \ud1a0\ud2b8\ub118\uc5d0\uc11c \uc131\uacf5\ud558\ub294 \uadf8 \ub0a0\uae4c\uc9c0...","url":"https:\/\/t.co\/3JnG3ynsQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3JnG3ynsQ0","expanded_url":"http:\/\/blog.naver.com\/nwhl1023","display_url":"blog.naver.com\/nwhl1023","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":1010,"listed_count":6,"created_at":"Tue - Feb 03 18:43:36 +0000 2015","favourites_count":6847,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6403,"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\/1214149146514345984\/E2SY_PSw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214149146514345984\/E2SY_PSw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3015009971\/1511023824","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:27:46 +0000 2020","id":1234515752063053824,"id_str":"1234515752063053824","text":"#thfc - International Champions Cup matches scheduled to take place in Asia this summer - have been cancelled due to th\u2026 https:\/\/t.co\/MTxSNFMnwv","truncated":true,"entities":{"hashtags":[{"text":"thfc","indices":[0,5]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MTxSNFMnwv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234515752063053824","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4653929363,"id_str":"4653929363","name":"Dan - Kilpatrick","screen_name":"Dan_KP","location":"London, England","description":"Football - correspondent @EveningStandard, mainly covering Spurs and England. dan.kilpatrick@standard.co.uk - or DMs open.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31910,"friends_count":1039,"listed_count":531,"created_at":"Wed - Dec 30 12:54:12 +0000 2015","favourites_count":7710,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":19779,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/863860890747187200\/tmhZHh4u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/863860890747187200\/tmhZHh4u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4653929363\/1494963281","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":70,"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547914723328,"id_str":"1234518547914723328","text":"RT - @gretchenfrazee: Pence will hold a coronavirus presser at 5pm today. Here''s - a look back at his record on handling outbreaks....for this\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gretchenfrazee","name":"Gretchen - Frazee","id":16157640,"id_str":"16157640","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17418867,"id_str":"17418867","name":"Travis","screen_name":"tcd004","location":"Washington, - DC","description":"Dad, husband and guy who works at the PBS @NewsHour. Former - @ForeignPolicy, @DMRegister","url":"https:\/\/t.co\/ZlBbygyXMZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZlBbygyXMZ","expanded_url":"http:\/\/www.pbs.org\/newshour","display_url":"pbs.org\/newshour","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1287,"friends_count":1274,"listed_count":43,"created_at":"Sun - Nov 16 05:15:16 +0000 2008","favourites_count":6477,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":12550,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/834923508090224640\/MPDN57o2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/834923508090224640\/MPDN57o2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17418867\/1424631595","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:51:56 +0000 2020","id":1234476538583801856,"id_str":"1234476538583801856","text":"Pence - will hold a coronavirus presser at 5pm today. Here''s a look back at his record - on handling outbreaks....for t\u2026 https:\/\/t.co\/jk4OmbkJAA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jk4OmbkJAA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234476538583801856","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16157640,"id_str":"16157640","name":"Gretchen - Frazee","screen_name":"gretchenfrazee","location":"Arlington, VA","description":"Deputy - Digital Editor @NewsHour. Public media nerd. Mizzou grad. San Antonio native.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2161,"friends_count":1076,"listed_count":95,"created_at":"Sat - Sep 06 15:38:36 +0000 2008","favourites_count":1961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8811,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/809968124414099456\/WgfBTy0O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809968124414099456\/WgfBTy0O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16157640\/1441462723","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233950083323809792,"quoted_status_id_str":"1233950083323809792","quoted_status":{"created_at":"Sun - Mar 01 03:00:00 +0000 2020","id":1233950083323809792,"id_str":"1233950083323809792","text":"When - President Trump announced that VP Pence would oversee U.S. response to novel - coronavirus, he pointed to Pence\u2019\u2026 https:\/\/t.co\/rWzC0Me3JS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rWzC0Me3JS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233950083323809792","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14437914,"id_str":"14437914","name":"PBS - NewsHour","screen_name":"NewsHour","location":"Arlington, VA | New York, NY","description":"PBS - NewsHour is one of the most trusted news programs on TV and online.","url":"https:\/\/t.co\/MUiamBtq28","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MUiamBtq28","expanded_url":"https:\/\/www.pbs.org\/newshour\/","display_url":"pbs.org\/newshour\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1046902,"friends_count":123658,"listed_count":14569,"created_at":"Fri - Apr 18 21:57:17 +0000 2008","favourites_count":16301,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":169458,"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\/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\/875456540450443265\/W5yKx8um_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875456540450443265\/W5yKx8um_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14437914\/1541434373","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":31,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233950083323809792,"quoted_status_id_str":"1233950083323809792","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547877040129,"id_str":"1234518547877040129","text":"RT - @El_Trimax: Coronavirus llega a Monterrey y le hacen una carnita asada.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"El_Trimax","name":"Trimax","id":90801734,"id_str":"90801734","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163290743,"id_str":"163290743","name":"Sparrow","screen_name":"JackLlaniels","location":" - Tulum \ud83c\udf34","description":"Chef \/\/ \ud83d\udd2a","url":"https:\/\/t.co\/ZY3VVHv46n","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZY3VVHv46n","expanded_url":"http:\/\/Www.instagram.com\/jackllaniels","display_url":"instagram.com\/jackllaniels","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":862,"friends_count":192,"listed_count":4,"created_at":"Tue - Jul 06 01:35:41 +0000 2010","favourites_count":41012,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9482,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4A913C","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\/1228903755430662145\/tSelWkfs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228903755430662145\/tSelWkfs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163290743\/1578781775","profile_link_color":"91888A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 16:27:53 +0000 2020","id":1233791008539697152,"id_str":"1233791008539697152","text":"Coronavirus - llega a Monterrey y le hacen una carnita asada. https:\/\/t.co\/4fr94bg7LA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4fr94bg7LA","expanded_url":"https:\/\/twitter.com\/sonrisapunk\/status\/1233790344241778688","display_url":"twitter.com\/sonrisapunk\/st\u2026","indices":[60,83]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":90801734,"id_str":"90801734","name":"Trimax","screen_name":"El_Trimax","location":"","description":"Caballero - con los hombres, galante con las mujeres, tierno con los ni\u00f1os e incansable - con los malvados.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1782,"friends_count":745,"listed_count":41,"created_at":"Wed - Nov 18 04:33:46 +0000 2009","favourites_count":377,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":98440,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E6634C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123612187782574080\/eRehkZtH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123612187782574080\/eRehkZtH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90801734\/1474089373","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233790344241778688,"quoted_status_id_str":"1233790344241778688","quoted_status":{"created_at":"Sat - Feb 29 16:25:15 +0000 2020","id":1233790344241778688,"id_str":"1233790344241778688","text":"Coronavirus - llega a Hermosillo y los de la creme lo llevan al mariach\u00edsimo y le ense\u00f1an - \"groser\u00edas\"","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52532527,"id_str":"52532527","name":"cerpin","screen_name":"sonrisapunk","location":"la - nada\u2122","description":"artefacto.","url":"https:\/\/t.co\/metQ6ZiHmg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/metQ6ZiHmg","expanded_url":"https:\/\/chamizo.pro\/jrnl","display_url":"chamizo.pro\/jrnl","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3079,"friends_count":1677,"listed_count":71,"created_at":"Tue - Jun 30 21:47:57 +0000 2009","favourites_count":62422,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":176739,"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\/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\/1181274032165068805\/s8v1OqyB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181274032165068805\/s8v1OqyB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52532527\/1462952694","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B3B3B3","profile_text_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":382,"favorited":false,"retweeted":false,"lang":"es"},"retweet_count":96,"favorite_count":725,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1233790344241778688,"quoted_status_id_str":"1233790344241778688","retweet_count":96,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547700867072,"id_str":"1234518547700867072","text":"RT - @yumcoconutmilk: I really hate this country. $3,000 to get tested for the - coronavirus, bc they wanted to reject the WHO\u2019s test so they c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yumcoconutmilk","name":"nylah - burton","id":703052849039675393,"id_str":"703052849039675393","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1184282510,"id_str":"1184282510","name":"briana - lagos \u2728","screen_name":"brianatrevino28","location":"Jersey Village, - TX","description":"clear eyes, full hearts, can\u2019t lose.\ud83c\udf37| - luis \ud83d\udc8d\ud83d\udc9b|","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1010,"friends_count":714,"listed_count":1,"created_at":"Sat - Feb 16 01:24:03 +0000 2013","favourites_count":14734,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":66208,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1188515876917694466\/Ry6yW-Vc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188515876917694466\/Ry6yW-Vc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1184282510\/1569350809","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 16:52:32 +0000 2020","id":1234159596379529216,"id_str":"1234159596379529216","text":"I - really hate this country. $3,000 to get tested for the coronavirus, bc they - wanted to reject the WHO\u2019s test so th\u2026 https:\/\/t.co\/jKUj9JPPCt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jKUj9JPPCt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234159596379529216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703052849039675393,"id_str":"703052849039675393","name":"nylah - burton","screen_name":"yumcoconutmilk","location":"Washington, DC ","description":"Writer - | race, climate, mental health | words @NYMag @Essence @zoramag @byshondaland - @TheNation @bustle @Independent | \u201coverwhelming Aries energy\u201d","url":"https:\/\/t.co\/rcfUUE7kM1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rcfUUE7kM1","expanded_url":"https:\/\/nylahburton.contently.com\/","display_url":"nylahburton.contently.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16427,"friends_count":3022,"listed_count":169,"created_at":"Fri - Feb 26 03:03:56 +0000 2016","favourites_count":37151,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16924,"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\/1212065411816136704\/EqCukNXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212065411816136704\/EqCukNXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703052849039675393\/1561545197","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50653,"favorite_count":261092,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":50653,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547658944514,"id_str":"1234518547658944514","text":"RT - @JuliaDavisNews: U.S. officials fear adversaries might weaponize public fears - about coronavirus ahead of Super Tuesday to spread disinfo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JuliaDavisNews","name":"Julia - Davis","id":105327432,"id_str":"105327432","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":845415022540967936,"id_str":"845415022540967936","name":"VoteBlue...FlipTheSenate","screen_name":"CeeReedy","location":"United - States","description":"\u201cIf you\u2019re not outraged, you\u2019re not - paying attention\u201d... Heather Heyer #Resist.","url":"https:\/\/t.co\/eZdPIrYkfQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eZdPIrYkfQ","expanded_url":"http:\/\/join.bethematch.org\/MelMann","display_url":"join.bethematch.org\/MelMann","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1736,"friends_count":3936,"listed_count":7,"created_at":"Fri - Mar 24 23:20:23 +0000 2017","favourites_count":89359,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":149027,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161687475431137280\/PjGuOupJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161687475431137280\/PjGuOupJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/845415022540967936\/1563809029","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:37:57 +0000 2020","id":1234518315026067456,"id_str":"1234518315026067456","text":"U.S. - officials fear adversaries might weaponize public fears about coronavirus - ahead of Super Tuesday to spread dis\u2026 https:\/\/t.co\/TsP4uGoaSc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TsP4uGoaSc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518315026067456","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":105327432,"id_str":"105327432","name":"Julia - Davis","screen_name":"JuliaDavisNews","location":"United States","description":"Columnist - @TheDailyBeast, Russian Media Analyst, featured expert @AtlanticCouncil @DisinfoPortal, - member @TheEmmys, @SAGAFTRA, @FLEOAORG, @WomenInFilm","url":"https:\/\/t.co\/q6VafM7SCB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/q6VafM7SCB","expanded_url":"https:\/\/www.thedailybeast.com\/author\/julia-davis","display_url":"thedailybeast.com\/author\/julia-d\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":150738,"friends_count":1428,"listed_count":2016,"created_at":"Sat - Jan 16 01:34:50 +0000 2010","favourites_count":101361,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":80232,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F71B1B","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\/1173814137878646784\/Gu54B4pc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1173814137878646784\/Gu54B4pc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105327432\/1515339180","profile_link_color":"395A61","profile_sidebar_border_color":"1AFF05","profile_sidebar_fill_color":"FFD9F7","profile_text_color":"0E0F0F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":121,"favorite_count":122,"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547587641345,"id_str":"1234518547587641345","text":"RT - @And89_3: Ni\u00f1os,mujeres y hombres que huyen de la guerra est\u00e1n siendo - recibidos en Lesbos con agresiones de fascistas y cargas policiale\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"And89_3","name":"Andr\u00e9s - \ud83d\udd3b","id":246037559,"id_str":"246037559","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":985575963277721600,"id_str":"985575963277721600","name":"WideMindFierceHeart - \ud83e\udd93 \ud83c\udd98\ud83d\uddfd\ud83c\udd98","screen_name":"wydmindfeersart","location":"\ud83d\udc22\ud83c\udfdd","description":"Left - Internationalist \ud83d\uddfa\ufe0f fighting for Human Rights for ALL not - *some*. We''re #1PeopleOn1World! \ud83d\udc9e\ud83d\uddfd\u270a\ud83c\udffc\u270a\ud83c\udfff\u270a\ud83c\udffd\u270a\ud83c\udffe\u270a\ud83c\udffc\ud83d\uddfa\ufe0f\ud83d\udc9e\n~ - ALT: @WydMyndFeersHrt","url":"https:\/\/t.co\/wGJ20WcIw2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wGJ20WcIw2","expanded_url":"http:\/\/un.org\/en\/universal-declaration-human-rights\/","display_url":"un.org\/en\/universal-d\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2044,"friends_count":4990,"listed_count":7,"created_at":"Sun - Apr 15 17:49:55 +0000 2018","favourites_count":126924,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182170,"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\/1149933149817716738\/KkgTAa4h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149933149817716738\/KkgTAa4h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/985575963277721600\/1562175005","profile_link_color":"08465B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:17:12 +0000 2020","id":1234497995913252865,"id_str":"1234497995913252865","text":"Ni\u00f1os,mujeres - y hombres que huyen de la guerra est\u00e1n siendo recibidos en Lesbos con - agresiones de fascistas y carga\u2026 https:\/\/t.co\/VZ8UAXwPYh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VZ8UAXwPYh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234497995913252865","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246037559,"id_str":"246037559","name":"Andr\u00e9s - \ud83d\udd3b","screen_name":"And89_3","location":"Madrid, Comunidad de Madrid","description":"\u00a1\u00a1Porque - fueron somos, porque somos ser\u00e1n!! \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68\ud83c\udff3\ufe0f\u200d\ud83c\udf08 \n\ud83d\udd3b - Ni guerra entre pueblos ni paz entre clases\ud83d\udd3b\u270a\ud83c\udffc \u2764\ufe0f\ud83d\udc9b\ud83d\udc9c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9170,"friends_count":8057,"listed_count":9,"created_at":"Wed - Feb 02 00:24:22 +0000 2011","favourites_count":30983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34812,"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\/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\/1218878692014862337\/7O239X6B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218878692014862337\/7O239X6B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246037559\/1573947936","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":65,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":36,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547537154052,"id_str":"1234518547537154052","text":"RT - @BNODesk: WHO chief on coronavirus: \"Our message to all countries is: This - is not a one-way street. We can push this virus back. Your ac\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BNODesk","name":"BNO - Newsroom","id":2985479932,"id_str":"2985479932","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":562706156,"id_str":"562706156","name":"Eric_nishi","screen_name":"bnr32nismo32","location":"\u5343\u8449\u770c\u5343\u8449\u5e02\u4e2d\u592e\u533a","description":"Trumpet\u3092\u3053\u3088\u306a\u304f\u611b\u3057\u3066\u3044\u307e\u3059\u3002\u30e4\u30de\u30cf\u306e\u30d3\u30c3\u30af\u30d0\u30f3\u30c9\u3067Trumpet\u30d1\u30fc\u30c8\u306b\u307e\u3057\u305f\u3002\u79cb\u7530\u5148\u751f\u304c\u5409\u7965\u5bfa\u306b(\uff65_\uff65;\u5d29\u58ca\uff1f2013\u5e747\u670827\u65e5\u306b\u30ea\u30fc\u30d5\u3092\u8cb7\u3044\u307e\u3057\u305f\u3002\u96fb\u6c17\u81ea\u52d5\u8eca\u3067\u3059\u3002\u9759\u304b\u3067\u5feb\u9069","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":608,"friends_count":714,"listed_count":9,"created_at":"Wed - Apr 25 08:33:13 +0000 2012","favourites_count":44,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33393,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2166829377\/prof2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2166829377\/prof2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:47:45 +0000 2020","id":1234505681027444738,"id_str":"1234505681027444738","text":"WHO - chief on coronavirus: \"Our message to all countries is: This is not a one-way - street. We can push this virus ba\u2026 https:\/\/t.co\/b1SXGTNTqk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/b1SXGTNTqk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234505681027444738","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2985479932,"id_str":"2985479932","name":"BNO - Newsroom","screen_name":"BNODesk","location":"Worldwide","description":"Live - updates from the team behind BNO News. Currently covering coronavirus. For - our regular news coverage, follow our main account: @BNONews","url":"https:\/\/t.co\/by7zZiBwBe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/by7zZiBwBe","expanded_url":"http:\/\/www.bnonews.com","display_url":"bnonews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":118217,"friends_count":5,"listed_count":1677,"created_at":"Mon - Jan 19 09:28:21 +0000 2015","favourites_count":4034,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5192,"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\/882093872452698113\/kPkSnGlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882093872452698113\/kPkSnGlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2985479932\/1499139659","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1057,"favorite_count":2393,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1057,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547528765440,"id_str":"1234518547528765440","text":"RT - @CDCgov: CDC does not currently recommend the use of facemasks to help prevent - novel #coronavirus. Take everyday preventive actions, lik\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[88,100]}],"symbols":[],"user_mentions":[{"screen_name":"CDCgov","name":"CDC","id":146569971,"id_str":"146569971","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1071791823184584704,"id_str":"1071791823184584704","name":"\ucc44\ud654","screen_name":"0stracods","location":"YOLO - ","description":"Artemis.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":667,"friends_count":822,"listed_count":0,"created_at":"Sun - Dec 09 15:40:58 +0000 2018","favourites_count":10123,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4012,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227963035878227968\/93efE5e4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227963035878227968\/93efE5e4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1071791823184584704\/1581604176","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 27 21:00:00 +0000 2020","id":1233134710638825473,"id_str":"1233134710638825473","text":"CDC - does not currently recommend the use of facemasks to help prevent novel #coronavirus. - Take everyday preventive\u2026 https:\/\/t.co\/bzS18N5j7N","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[76,88]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bzS18N5j7N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233134710638825473","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":146569971,"id_str":"146569971","name":"CDC","screen_name":"CDCgov","location":"Atlanta, - GA","description":"CDC''s official Twitter source for daily credible health - & safety updates from Centers for Disease Control & Prevention. Privacy policy: - https:\/\/t.co\/N3OhkbXTAq","url":"http:\/\/t.co\/5a7cTu2vly","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/5a7cTu2vly","expanded_url":"http:\/\/www.cdc.gov","display_url":"cdc.gov","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/N3OhkbXTAq","expanded_url":"http:\/\/bit.ly\/2MhQ6Hp","display_url":"bit.ly\/2MhQ6Hp","indices":[136,159]}]}},"protected":false,"followers_count":1487663,"friends_count":267,"listed_count":13207,"created_at":"Fri - May 21 19:40:40 +0000 2010","favourites_count":522,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":26227,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880104586211581952\/KPwn1JyQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880104586211581952\/KPwn1JyQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146569971\/1577110048","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8518,"favorite_count":7788,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8518,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547516264448,"id_str":"1234518547516264448","text":"RT - @NHSEnglandLDN: Washing your hands is the best way to protect yourself and - others from the spread of germs, including coronavirus.\n\nYou\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NHSEnglandLDN","name":"NHS - London","id":31129844,"id_str":"31129844","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2366143536,"id_str":"2366143536","name":"jade","screen_name":"CHECKEREDLESTER","location":"she\/her","description":"i\u2019ll - morph to someone else i\u2019m just a ghost \ud83d\udc7b","url":"https:\/\/t.co\/ynQd8MtYSY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ynQd8MtYSY","expanded_url":"https:\/\/www.twitter.com\/HERSHEYSLESTER","display_url":"twitter.com\/HERSHEYSLESTER","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3928,"friends_count":493,"listed_count":135,"created_at":"Fri - Feb 28 22:05:04 +0000 2014","favourites_count":86507,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":92467,"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\/1156613778882158592\/QMeABLCl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1156613778882158592\/QMeABLCl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2366143536\/1564593651","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 27 10:25:00 +0000 2020","id":1232974907597840384,"id_str":"1232974907597840384","text":"Washing - your hands is the best way to protect yourself and others from the spread - of germs, including coronavirus.\u2026 https:\/\/t.co\/v2DlDLkf7J","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/v2DlDLkf7J","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1232974907597840384","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":31129844,"id_str":"31129844","name":"NHS - London","screen_name":"NHSEnglandLDN","location":"London, England","description":"We - are the NHS in London; working together to better support Londoners and make - London the world''s healthiest city.","url":"https:\/\/t.co\/a85GFgSjX1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/a85GFgSjX1","expanded_url":"http:\/\/www.england.nhs.uk\/london","display_url":"england.nhs.uk\/london","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":68185,"friends_count":5473,"listed_count":721,"created_at":"Tue - Apr 14 14:12:32 +0000 2009","favourites_count":7942,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":15610,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0066CC","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\/1196358787784986624\/tXycBtI9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196358787784986624\/tXycBtI9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31129844\/1562599266","profile_link_color":"0066CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5161,"favorite_count":8271,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5161,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547507949574,"id_str":"1234518547507949574","text":"RT - @MrMichaelSpicer: the room next door - President Trump and the Coronavirus - https:\/\/t.co\/LTYYYIYUMi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrMichaelSpicer","name":"Michael - Spicer","id":93222172,"id_str":"93222172","indices":[3,19]}],"urls":[],"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234458301368164352,"source_status_id_str":"1234458301368164352","source_user_id":93222172,"source_user_id_str":"93222172"}]},"extended_entities":{"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234458301368164352,"source_status_id_str":"1234458301368164352","source_user_id":93222172,"source_user_id_str":"93222172","video_info":{"aspect_ratio":[16,9],"duration_millis":137638,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/480x270\/8fmAAK02A6it9wjT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/640x360\/lSnahBMYahnylH8j.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/pl\/tL2aDEJGkHpos0BZ.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/1280x720\/y9-Yn9X6Q-PF7xSz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":237179,"friends_count":1730,"listed_count":713,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29226,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19532407,"id_str":"19532407","name":"CH","screen_name":"Chr1sH0lt","location":"Timperley","description":"My - two boys, Libby, food, teaching, MCFC and a Timperley sunset.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":363,"friends_count":1181,"listed_count":6,"created_at":"Mon - Jan 26 12:55:30 +0000 2009","favourites_count":2096,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4623,"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\/797236500719083520\/O3CD8Mx5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/797236500719083520\/O3CD8Mx5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19532407\/1466925784","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:39:28 +0000 2020","id":1234458301368164352,"id_str":"1234458301368164352","text":"the - room next door - President Trump and the Coronavirus https:\/\/t.co\/LTYYYIYUMi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234457531797266432,"id_str":"1234457531797266432","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":137638,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/480x270\/8fmAAK02A6it9wjT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/640x360\/lSnahBMYahnylH8j.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/pl\/tL2aDEJGkHpos0BZ.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/1280x720\/y9-Yn9X6Q-PF7xSz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":237179,"friends_count":1730,"listed_count":713,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29226,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15228,"favorite_count":53875,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15228,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547495256064,"id_str":"1234518547495256064","text":"RT - @AintSnp: @lorraine1locked SNP PLAN for Coronavirus\n\n1. DO NOT GET CORONAVIRUS\n\n2. - If you do get Coronavirus, we will send you to Englan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AintSnp","name":"SNP - aint Scottish","id":1150878294717472768,"id_str":"1150878294717472768","indices":[3,11]},{"screen_name":"lorraine1locked","name":"Lorraine1locked","id":1220440972468850688,"id_str":"1220440972468850688","indices":[13,29]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1167437935710560257,"id_str":"1167437935710560257","name":"Ann - uk 1 eu 0, 31st Dec bring it on\ud83c\uddec\ud83c\udde7\ud83c\uddec\ud83c\udde7\ud83c\uddec\ud83c\udde7","screen_name":"Ann06957684","location":"","description":"Not - interested in bots or deniers of democracy or swearing I will just block you....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1812,"friends_count":2350,"listed_count":8,"created_at":"Fri - Aug 30 14:04:40 +0000 2019","favourites_count":49622,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35164,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:34:58 +0000 2020","id":1234517565239676928,"id_str":"1234517565239676928","text":"@lorraine1locked - SNP PLAN for Coronavirus\n\n1. DO NOT GET CORONAVIRUS\n\n2. If you do get - Coronavirus, we will send yo\u2026 https:\/\/t.co\/B56KUZPPwu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lorraine1locked","name":"Lorraine1locked","id":1220440972468850688,"id_str":"1220440972468850688","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/B56KUZPPwu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517565239676928","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234402996949262336,"in_reply_to_status_id_str":"1234402996949262336","in_reply_to_user_id":1220440972468850688,"in_reply_to_user_id_str":"1220440972468850688","in_reply_to_screen_name":"lorraine1locked","user":{"id":1150878294717472768,"id_str":"1150878294717472768","name":"SNP - aint Scottish","screen_name":"AintSnp","location":"","description":"Part Time - MI5 Agent. \nDetest SNP & all who vote for them. Cant stand lefties in general. - Fiercely British. Pro christian \/ Israel. Voted BREXIT.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2155,"friends_count":2434,"listed_count":2,"created_at":"Mon - Jul 15 21:22:22 +0000 2019","favourites_count":37120,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189615434666041346\/zrD-Gf67_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189615434666041346\/zrD-Gf67_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1150878294717472768\/1572461397","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547252031491,"id_str":"1234518547252031491","text":"RT - @kylegriffin1: Weeks after covid-19 had been recognized as a virus with pandemic - potential, the Trump admin proposed a budget that calle\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kylegriffin1","name":"Kyle - Griffin","id":32871086,"id_str":"32871086","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1181250665814855680,"id_str":"1181250665814855680","name":"Tina - Hindman","screen_name":"hindman_tina","location":"","description":"Scientist, - concerned about the fate of our country and our Constitution under Trump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":338,"listed_count":0,"created_at":"Mon - Oct 07 16:51:40 +0000 2019","favourites_count":9473,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2927,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181251341877948423\/sSXNk8Mx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181251341877948423\/sSXNk8Mx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:00:22 +0000 2020","id":1234508858229284864,"id_str":"1234508858229284864","text":"Weeks - after covid-19 had been recognized as a virus with pandemic potential, the - Trump admin proposed a budget that\u2026 https:\/\/t.co\/HnvuEV13JP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HnvuEV13JP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234508858229284864","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32871086,"id_str":"32871086","name":"Kyle - Griffin","screen_name":"kylegriffin1","location":"Manhattan, NY","description":"Senior - Producer. MSNBC''s @TheLastWord. Opinions mine. Not as outlandish as I could - be.","url":"https:\/\/t.co\/lgyZmnczMB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lgyZmnczMB","expanded_url":"https:\/\/www.instagram.com\/griffinkyle\/","display_url":"instagram.com\/griffinkyle\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687119,"friends_count":876,"listed_count":7704,"created_at":"Sat - Apr 18 12:45:48 +0000 2009","favourites_count":38136,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":57293,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961462238732275712\/omWV1cZs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961462238732275712\/omWV1cZs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32871086\/1455243585","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2520,"favorite_count":3154,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2520,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547134500865,"id_str":"1234518547134500865","text":"RT - @KylieMcGivern: Florida officials waited for more than 24 hours to tell the - public about confirmed coronavirus cases https:\/\/t.co\/CYWzKa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KylieMcGivern","name":"Kylie - McGivern","id":186658918,"id_str":"186658918","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17068891,"id_str":"17068891","name":"Nicole - Grigg","screen_name":"NicoleSGrigg","location":"Phoenix, AZ","description":"Reporter - for ABC 15 Arizona. News junkie. Mother x 3. Wife. Coffee addict. AZ native. - \u2600\ufe0f devil. Cronkite grad. Believer. Chasing dreams.","url":"https:\/\/t.co\/b6rVRWaHQj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/b6rVRWaHQj","expanded_url":"http:\/\/www.abc15.com","display_url":"abc15.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1538,"friends_count":1254,"listed_count":57,"created_at":"Thu - Oct 30 16:49:12 +0000 2008","favourites_count":1486,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12022,"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\/1225622739400052736\/GmAO7tVy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225622739400052736\/GmAO7tVy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17068891\/1582267781","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:58 +0000 2020","id":1234517817065713665,"id_str":"1234517817065713665","text":"Florida - officials waited for more than 24 hours to tell the public about confirmed - coronavirus cases https:\/\/t.co\/CYWzKahd3s @abcactionnews","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"abcactionnews","name":"ABC - Action News","id":15138087,"id_str":"15138087","indices":[125,139]}],"urls":[{"url":"https:\/\/t.co\/CYWzKahd3s","expanded_url":"https:\/\/www.abcactionnews.com\/news\/local-news\/i-team-investigates\/florida-officials-waited-for-more-than-24-hours-to-tell-the-public-about-confirmed-coronavirus-cases","display_url":"abcactionnews.com\/news\/local-new\u2026","indices":[101,124]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":186658918,"id_str":"186658918","name":"Kylie - McGivern","screen_name":"KylieMcGivern","location":"Tampa, FL","description":"Investigative - Reporter @abcactionnews Native Floridian. Mizzou Grad. Previously @KXAN_News - Have a story idea? Would love to hear it! kylie.mcgivern@wfts.com","url":"https:\/\/t.co\/HKiowNI2vt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HKiowNI2vt","expanded_url":"http:\/\/kyliemcgivern.com","display_url":"kyliemcgivern.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2334,"friends_count":2356,"listed_count":79,"created_at":"Sat - Sep 04 01:34:53 +0000 2010","favourites_count":2241,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4863,"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\/1054932761859911680\/uoftwYAU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1054932761859911680\/uoftwYAU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/186658918\/1551139294","profile_link_color":"092A7D","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"},"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547084304385,"id_str":"1234518547084304385","text":"RT - @itvnews: There was an awkward moment for Angela Merkel on Monday when her - Interior Minister rejected a handshake as coronavirus fears g\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"itvnews","name":"ITV - News","id":21866939,"id_str":"21866939","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":719232107323764737,"id_str":"719232107323764737","name":"iradukunda - yassin","screen_name":"yassin_bchr","location":"Kigali-Rwanda","description":"Founder - | ExecutivePresident | HumanRightsAdvocate | CivicLeader | CommunitiyEventsOrganizer - @HOPEOFTOMORROW2. Reader&Writer | Poet | Economist | Entrepreneur","url":"https:\/\/t.co\/235Ig738p4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/235Ig738p4","expanded_url":"http:\/\/www.hopeoftomorrow.org","display_url":"hopeoftomorrow.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":514,"friends_count":799,"listed_count":10,"created_at":"Sun - Apr 10 18:34:31 +0000 2016","favourites_count":8818,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5725,"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\/1193841214161915904\/J0S5s_vc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193841214161915904\/J0S5s_vc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719232107323764737\/1573467911","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:14:20 +0000 2020","id":1234512373182083074,"id_str":"1234512373182083074","text":"There - was an awkward moment for Angela Merkel on Monday when her Interior Minister - rejected a handshake as coronavi\u2026 https:\/\/t.co\/4cAQEblxng","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4cAQEblxng","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234512373182083074","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":21866939,"id_str":"21866939","name":"ITV - News","screen_name":"itvnews","location":"United Kingdom","description":"Breaking - news and the biggest stories from the UK and around the world. Bulletins weekdays - at 1:30pm, 6:30pm and 10pm on ITV. Email yourstory@itv.com","url":"https:\/\/t.co\/aFhKWdeYQd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aFhKWdeYQd","expanded_url":"http:\/\/www.itv.com\/news","display_url":"itv.com\/news","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2232715,"friends_count":1477,"listed_count":7868,"created_at":"Wed - Feb 25 13:51:23 +0000 2009","favourites_count":515,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":205716,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"006473","profile_background_image_url":"http:\/\/abs.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\/1148175349915799552\/aGtEPm7b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148175349915799552\/aGtEPm7b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21866939\/1539874746","profile_link_color":"006473","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":71,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":25,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547071733763,"id_str":"1234518547071733763","text":"RT - @LaStampa: L\u2019Oms: il coronavirus si pu\u00f2 contenere, non \u00e8 ancora - pandemia https:\/\/t.co\/UGB9wJBHoB https:\/\/t.co\/uFkUBOw5qt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LaStampa","name":"La - Stampa","id":29416653,"id_str":"29416653","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/UGB9wJBHoB","expanded_url":"http:\/\/dlvr.it\/RR5jXm","display_url":"dlvr.it\/RR5jXm","indices":[76,99]}],"media":[{"id":1234518349469499392,"id_str":"1234518349469499392","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHj5ejUwAArW47.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHj5ejUwAArW47.jpg","url":"https:\/\/t.co\/uFkUBOw5qt","display_url":"pic.twitter.com\/uFkUBOw5qt","expanded_url":"https:\/\/twitter.com\/LaStampa\/status\/1234518351063306241\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":506,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":900,"h":506,"resize":"fit"}},"source_status_id":1234518351063306241,"source_status_id_str":"1234518351063306241","source_user_id":29416653,"source_user_id_str":"29416653"}]},"extended_entities":{"media":[{"id":1234518349469499392,"id_str":"1234518349469499392","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHj5ejUwAArW47.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHj5ejUwAArW47.jpg","url":"https:\/\/t.co\/uFkUBOw5qt","display_url":"pic.twitter.com\/uFkUBOw5qt","expanded_url":"https:\/\/twitter.com\/LaStampa\/status\/1234518351063306241\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":506,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":900,"h":506,"resize":"fit"}},"source_status_id":1234518351063306241,"source_status_id_str":"1234518351063306241","source_user_id":29416653,"source_user_id_str":"29416653"}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1211040547462213632,"id_str":"1211040547462213632","name":"Marco","screen_name":"MarcH_prof","location":"","description":"Ascoltare - per esprimersi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":633,"listed_count":0,"created_at":"Sat - Dec 28 21:45:58 +0000 2019","favourites_count":8327,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1568,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211040809421856768\/DkrKzE-8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211040809421856768\/DkrKzE-8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1211040547462213632\/1582198781","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:05 +0000 2020","id":1234518351063306241,"id_str":"1234518351063306241","text":"L\u2019Oms: - il coronavirus si pu\u00f2 contenere, non \u00e8 ancora pandemia https:\/\/t.co\/UGB9wJBHoB - https:\/\/t.co\/uFkUBOw5qt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UGB9wJBHoB","expanded_url":"http:\/\/dlvr.it\/RR5jXm","display_url":"dlvr.it\/RR5jXm","indices":[62,85]}],"media":[{"id":1234518349469499392,"id_str":"1234518349469499392","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHj5ejUwAArW47.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHj5ejUwAArW47.jpg","url":"https:\/\/t.co\/uFkUBOw5qt","display_url":"pic.twitter.com\/uFkUBOw5qt","expanded_url":"https:\/\/twitter.com\/LaStampa\/status\/1234518351063306241\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":506,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":900,"h":506,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518349469499392,"id_str":"1234518349469499392","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHj5ejUwAArW47.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHj5ejUwAArW47.jpg","url":"https:\/\/t.co\/uFkUBOw5qt","display_url":"pic.twitter.com\/uFkUBOw5qt","expanded_url":"https:\/\/twitter.com\/LaStampa\/status\/1234518351063306241\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":506,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":900,"h":506,"resize":"fit"}}}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":29416653,"id_str":"29416653","name":"La - Stampa","screen_name":"LaStampa","location":"Torino, Piemonte","description":"Notizie, - inchieste, analisi e breaking news. RT dei nostri giornalisti e lettori","url":"https:\/\/t.co\/DqTQs84xqS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DqTQs84xqS","expanded_url":"http:\/\/www.lastampa.it","display_url":"lastampa.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1083548,"friends_count":389,"listed_count":6420,"created_at":"Tue - Apr 07 09:31:23 +0000 2009","favourites_count":1621,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":415617,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1145280231089037314\/G6vSIv1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145280231089037314\/G6vSIv1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29416653\/1516478172","profile_link_color":"738EBE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7FCFF","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"},"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":"it"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518547050659843,"id_str":"1234518547050659843","text":"RT - @tragicom24: Coronavirus, arriva la decisione della Lega Serie A, Juve-Inter - si giocher\u00e0 a Ferragosto a Wuhan.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tragicom24","name":"Tragicom24","id":497190015,"id_str":"497190015","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1135682296214892544,"id_str":"1135682296214892544","name":"Marianna","screen_name":"Marymarinooo","location":"Cosenza, - Calabria","description":"studentessa di giurisprudenza","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":275,"listed_count":0,"created_at":"Mon - Jun 03 22:58:54 +0000 2019","favourites_count":4874,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":179,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137770718651924481\/-4zeJ-T-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137770718651924481\/-4zeJ-T-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1135682296214892544\/1564768344","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 18:35:36 +0000 2020","id":1234185535268192257,"id_str":"1234185535268192257","text":"Coronavirus, - arriva la decisione della Lega Serie A, Juve-Inter si giocher\u00e0 a Ferragosto - a Wuhan.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":497190015,"id_str":"497190015","name":"Tragicom24","screen_name":"tragicom24","location":"Bologna, - Emilia Romagna","description":"Fino Alla Fine \u26aa\ufe0f\u26ab\ufe0f Ball - is Life \ud83c\udfc0 Law Student \u2696\ufe0f #MambaForever \ud83d\udc9b\ud83d\udc9c - 8\ufe0f\u20e3\/2\ufe0f\u20e34\ufe0f\u20e3 TuidderCalcio\u26bd\ufe0f","url":"https:\/\/t.co\/IgXVNp0tJR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IgXVNp0tJR","expanded_url":"https:\/\/www.instagram.com\/aluz12\/?hl=it","display_url":"instagram.com\/aluz12\/?hl=it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4796,"friends_count":166,"listed_count":3,"created_at":"Sun - Feb 19 18:28:00 +0000 2012","favourites_count":16784,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3686,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231609074455805956\/9VJJNj1g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231609074455805956\/9VJJNj1g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/497190015\/1580549361","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":618,"favorite_count":3004,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":618,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518546966892552,"id_str":"1234518546966892552","text":"RT - @DrDenaGrayson: In the U.S., individual patients (or their insurance companies, - if applicable), must pay for #coronavirus testing, treat\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[112,124]}],"symbols":[],"user_mentions":[{"screen_name":"DrDenaGrayson","name":"Dr. - Dena Grayson","id":1651522832,"id_str":"1651522832","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26348896,"id_str":"26348896","name":"Lisa - OKC","screen_name":"LisaOKC","location":"Oklahoma City","description":"\u201cIf - we had had confidence that the pres clearly did not commit a crime, we would - have said so.\" Lifelong educator, arts lover. #resistance","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4901,"friends_count":5391,"listed_count":71,"created_at":"Tue - Mar 24 22:59:42 +0000 2009","favourites_count":526383,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154515,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223426756838928386\/GPyV6YSx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223426756838928386\/GPyV6YSx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26348896\/1571283645","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:56:13 +0000 2020","id":1234492714667868162,"id_str":"1234492714667868162","text":"In - the U.S., individual patients (or their insurance companies, if applicable), - must pay for #coronavirus testing,\u2026 https:\/\/t.co\/KkQGffERzj","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[93,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KkQGffERzj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234492714667868162","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1651522832,"id_str":"1651522832","name":"Dr. - Dena Grayson","screen_name":"DrDenaGrayson","location":"Florida","description":"Patriotic - liberal. Former Democratic candidate for U.S. Congress, physician (MD) and - scientist (PhD). Expert on #Ebola and other #pandemic threats.","url":"https:\/\/t.co\/5BmBFaFyit","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5BmBFaFyit","expanded_url":"http:\/\/denagrayson.com","display_url":"denagrayson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":231244,"friends_count":333,"listed_count":1443,"created_at":"Tue - Aug 06 23:34:40 +0000 2013","favourites_count":157303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":63563,"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\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057414409423933440\/ETW3KzZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1651522832\/1541350200","profile_link_color":"0000E5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234274878326329344,"quoted_status_id_str":"1234274878326329344","quoted_status":{"created_at":"Mon - Mar 02 00:30:37 +0000 2020","id":1234274878326329344,"id_str":"1234274878326329344","text":"A - serious #COVID19US query\n \nQUESTIONs: Who pays for \n1. initial medical - screen \n2. the treatment\n3. non-medical\u2026 https:\/\/t.co\/rkF8HxU9wp","truncated":true,"entities":{"hashtags":[{"text":"COVID19US","indices":[10,20]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rkF8HxU9wp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234274878326329344","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16966104,"id_str":"16966104","name":"Christopher - Burgess","screen_name":"burgessct","location":"Washington State","description":"30+ - years w\/CIA\ud83d\udd75\ufe0f\u200d\u2642\ufe0f- Founder @securelytravel - \u2708 Co-Author Book \ud83d\udcd5 Secrets Stolen Fortunes Lost Preventing - IP Theft and Economic Espionage in 21st Century","url":"https:\/\/t.co\/nG65hqrlus","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nG65hqrlus","expanded_url":"https:\/\/www.burgessct.com\/about\/christopher-burgess-articles\/","display_url":"burgessct.com\/about\/christop\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11187,"friends_count":4401,"listed_count":641,"created_at":"Sat - Oct 25 12:53:30 +0000 2008","favourites_count":22419,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":50285,"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\/1212603804387921921\/YDCRTGUw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212603804387921921\/YDCRTGUw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16966104\/1565455539","profile_link_color":"000080","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":63,"favorite_count":92,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1386,"favorite_count":2976,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234274878326329344,"quoted_status_id_str":"1234274878326329344","retweet_count":1386,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518546895527939,"id_str":"1234518546895527939","text":"RT - @RepMattGaetz: The country can take great comfort in the fact that @realDonaldTrump - has built teams to solve problems his entire life.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepMattGaetz","name":"Rep. - Matt Gaetz","id":818948638890217473,"id_str":"818948638890217473","indices":[3,16]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[70,86]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1079778406684901376,"id_str":"1079778406684901376","name":"Mtrike","screen_name":"ManuelM21736554","location":"Houston, - TX","description":"I am proudly Cuban American, Texan of heart and republican - of conviction, against socialism. my support for TRUMP 2020 \ud83c\uddfa\ud83c\uddf8 - POTUS \ud83c\uddfa\ud83c\uddf8\u2764\u2764Build the wall.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2647,"friends_count":3271,"listed_count":1,"created_at":"Mon - Dec 31 16:36:48 +0000 2018","favourites_count":31231,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32210,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1150799856262438912\/VDS8CN9w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1150799856262438912\/VDS8CN9w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1079778406684901376\/1549424364","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:06:15 +0000 2020","id":1234495240851116033,"id_str":"1234495240851116033","text":"The - country can take great comfort in the fact that @realDonaldTrump has built - teams to solve problems his entire l\u2026 https:\/\/t.co\/MT4viNaNLv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[52,68]}],"urls":[{"url":"https:\/\/t.co\/MT4viNaNLv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234495240851116033","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":818948638890217473,"id_str":"818948638890217473","name":"Rep. - Matt Gaetz","screen_name":"RepMattGaetz","location":"","description":"Official - Twitter for Congressman Matt Gaetz. Proud conservative who is honored to serve - the First District of Florida.","url":"https:\/\/t.co\/GcjK1dZCtR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GcjK1dZCtR","expanded_url":"http:\/\/Gaetz.house.gov","display_url":"Gaetz.house.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":651203,"friends_count":854,"listed_count":2231,"created_at":"Tue - Jan 10 22:32:25 +0000 2017","favourites_count":612,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":5227,"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\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080559825946374144\/n1tU4WLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818948638890217473\/1546465602","profile_link_color":"BB1A2A","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4547,"favorite_count":16028,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4547,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518546815897600,"id_str":"1234518546815897600","text":"RT - @nnayrodrigues: Eu&Ele se protegendo do coronav\u00edrus \ud83d\udc8f - https:\/\/t.co\/LCsfdysDYP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nnayrodrigues","name":"Nayara - Rodrigues","id":1671126145,"id_str":"1671126145","indices":[3,17]}],"urls":[],"media":[{"id":1234176460082089986,"id_str":"1234176460082089986","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","url":"https:\/\/t.co\/LCsfdysDYP","display_url":"pic.twitter.com\/LCsfdysDYP","expanded_url":"https:\/\/twitter.com\/nnayrodrigues\/status\/1234176474120425475\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1147,"resize":"fit"},"medium":{"w":960,"h":1147,"resize":"fit"},"small":{"w":569,"h":680,"resize":"fit"}},"source_status_id":1234176474120425475,"source_status_id_str":"1234176474120425475","source_user_id":1671126145,"source_user_id_str":"1671126145"}]},"extended_entities":{"media":[{"id":1234176460082089986,"id_str":"1234176460082089986","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","url":"https:\/\/t.co\/LCsfdysDYP","display_url":"pic.twitter.com\/LCsfdysDYP","expanded_url":"https:\/\/twitter.com\/nnayrodrigues\/status\/1234176474120425475\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1147,"resize":"fit"},"medium":{"w":960,"h":1147,"resize":"fit"},"small":{"w":569,"h":680,"resize":"fit"}},"source_status_id":1234176474120425475,"source_status_id_str":"1234176474120425475","source_user_id":1671126145,"source_user_id_str":"1671126145"}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":985005548318928896,"id_str":"985005548318928896","name":"sophia\u2600\ufe0f","screen_name":"sophiaralli_","location":"Belo - Horizonte, Brasil","description":"insta: @sophiarali","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":538,"friends_count":458,"listed_count":0,"created_at":"Sat - Apr 14 04:03:18 +0000 2018","favourites_count":5372,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3525,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1193720367606616064\/r3i5p9o1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193720367606616064\/r3i5p9o1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/985005548318928896\/1581563898","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 17:59:35 +0000 2020","id":1234176474120425475,"id_str":"1234176474120425475","text":"Eu&Ele - se protegendo do coronav\u00edrus \ud83d\udc8f https:\/\/t.co\/LCsfdysDYP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234176460082089986,"id_str":"1234176460082089986","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","url":"https:\/\/t.co\/LCsfdysDYP","display_url":"pic.twitter.com\/LCsfdysDYP","expanded_url":"https:\/\/twitter.com\/nnayrodrigues\/status\/1234176474120425475\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1147,"resize":"fit"},"medium":{"w":960,"h":1147,"resize":"fit"},"small":{"w":569,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234176460082089986,"id_str":"1234176460082089986","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESCs85VXkAI5Ciz.jpg","url":"https:\/\/t.co\/LCsfdysDYP","display_url":"pic.twitter.com\/LCsfdysDYP","expanded_url":"https:\/\/twitter.com\/nnayrodrigues\/status\/1234176474120425475\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1147,"resize":"fit"},"medium":{"w":960,"h":1147,"resize":"fit"},"small":{"w":569,"h":680,"resize":"fit"}}}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1671126145,"id_str":"1671126145","name":"Nayara - Rodrigues","screen_name":"nnayrodrigues","location":"048","description":"M\u00e3e - da Gabrielly \ud83d\udc96 \u2022 #EternoViny \ud83d\udc7c\u2728","url":"https:\/\/t.co\/QZ7COhrVEe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QZ7COhrVEe","expanded_url":"https:\/\/www.instagram.com\/rodriguessnay\/","display_url":"instagram.com\/rodriguessnay\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2866,"friends_count":938,"listed_count":1,"created_at":"Wed - Aug 14 18:00:45 +0000 2013","favourites_count":59186,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35988,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1233498721419177984\/BkbxnCE3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233498721419177984\/BkbxnCE3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1671126145\/1583099152","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3227,"favorite_count":24637,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":3227,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518546497069056,"id_str":"1234518546497069056","text":"RT - @CNNEE: Consecuencias del brote del coronavirus: cancelan competencias deportivas - y cierran lugares tur\u00edsticos https:\/\/t.co\/P2csVEJAtk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNNEE","name":"CNN - en Espa\u00f1ol","id":33884545,"id_str":"33884545","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/P2csVEJAtk","expanded_url":"https:\/\/cnn.it\/2PDvoow","display_url":"cnn.it\/2PDvoow","indices":[114,137]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118894526,"id_str":"118894526","name":"Geovanni - A. S\u00e1enz","screen_name":"AngelelliSaenz","location":"Ecuador","description":"Abogado- - Manabita- Escritor-Docente - Amante de la vida y mi familia.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":93,"listed_count":3,"created_at":"Tue - Mar 02 01:34:43 +0000 2010","favourites_count":10925,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5993,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216747199364837376\/SoRcWSVV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216747199364837376\/SoRcWSVV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118894526\/1471401774","profile_link_color":"0033B3","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:32 +0000 2020","id":1234517707242033153,"id_str":"1234517707242033153","text":"Consecuencias - del brote del coronavirus: cancelan competencias deportivas y cierran lugares - tur\u00edsticos https:\/\/t.co\/P2csVEJAtk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/P2csVEJAtk","expanded_url":"https:\/\/cnn.it\/2PDvoow","display_url":"cnn.it\/2PDvoow","indices":[103,126]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":33884545,"id_str":"33884545","name":"CNN - en Espa\u00f1ol","screen_name":"CNNEE","location":"En todas partes","description":"CNN - en Espa\u00f1ol es tu principal fuente de informaci\u00f3n y breaking news. - Cubrimos las noticias de Am\u00e9rica Latina y el resto del mundo. Vive la - noticia.","url":"https:\/\/t.co\/592LYnRFm4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/592LYnRFm4","expanded_url":"http:\/\/cnnespanol.cnn.com","display_url":"cnnespanol.cnn.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18086278,"friends_count":567,"listed_count":51903,"created_at":"Tue - Apr 21 12:14:47 +0000 2009","favourites_count":1462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":254369,"lang":null,"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\/589795319216504832\/6a71ZHkx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589795319216504832\/6a71ZHkx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33884545\/1411070627","profile_link_color":"AB1529","profile_sidebar_border_color":"B5B5B5","profile_sidebar_fill_color":"B5B5B5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":100,"favorite_count":209,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":100,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518546329325572,"id_str":"1234518546329325572","text":"@thehill - The same moron still holding rallies and saying coronavirus is no big deal? That - Trump?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[0,8]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234518102349623298,"in_reply_to_status_id_str":"1234518102349623298","in_reply_to_user_id":1917731,"in_reply_to_user_id_str":"1917731","in_reply_to_screen_name":"thehill","user":{"id":22942805,"id_str":"22942805","name":"E","screen_name":"nancyfuqindrew","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127,"friends_count":849,"listed_count":1,"created_at":"Thu - Mar 05 16:52:23 +0000 2009","favourites_count":85522,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1614,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1041775812209532933\/Aebv-171_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041775812209532933\/Aebv-171_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22942805\/1537214207","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518546278952960,"id_str":"1234518546278952960","text":"RT - @PabloTorresI03: Si me da coronavirus ya se a quien estornudarle","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PabloTorresI03","name":"Pablo - Torres","id":1176476533499678720,"id_str":"1176476533499678720","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2159178349,"id_str":"2159178349","name":"\u2744 - Yuko \u2744","screen_name":"valeria_sato","location":"","description":"","url":"https:\/\/t.co\/84uOVK0mKP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/84uOVK0mKP","expanded_url":"https:\/\/instagram.com\/yuko_sato_2707","display_url":"instagram.com\/yuko_sato_2707","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":318,"friends_count":470,"listed_count":2,"created_at":"Sun - Oct 27 16:14:05 +0000 2013","favourites_count":408,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15154,"lang":null,"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\/1104523523488473088\/rMp4HTvZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1104523523488473088\/rMp4HTvZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2159178349\/1551884830","profile_link_color":"A200FF","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 16:43:46 +0000 2020","id":1233795003043893248,"id_str":"1233795003043893248","text":"Si - me da coronavirus ya se a quien estornudarle","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1176476533499678720,"id_str":"1176476533499678720","name":"Pablo - Torres","screen_name":"PabloTorresI03","location":"","description":"me hackearon - la otra","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":81,"listed_count":0,"created_at":"Tue - Sep 24 12:40:44 +0000 2019","favourites_count":56,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176476675812384768\/ILgJHHxX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176476675812384768\/ILgJHHxX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1176476533499678720\/1569328993","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1766,"favorite_count":2468,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1766,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518546065084416,"id_str":"1234518546065084416","text":"Estado - tem 15 casos suspeitos de coronav\u00edrus, informa Sesab - https:\/\/t.co\/Mtm8zr1RMx - https:\/\/t.co\/cNiIV7S9Qe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Mtm8zr1RMx","expanded_url":"https:\/\/bahia.ba\/bahia\/estado-tem-15-casos-suspeitos-de-coronavirus-informa-sesab\/","display_url":"bahia.ba\/bahia\/estado-t\u2026","indices":[62,85]}],"media":[{"id":1234518544563527686,"id_str":"1234518544563527686","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkE1VXYAYPk_F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkE1VXYAYPk_F.jpg","url":"https:\/\/t.co\/cNiIV7S9Qe","display_url":"pic.twitter.com\/cNiIV7S9Qe","expanded_url":"https:\/\/twitter.com\/pontoBA\/status\/1234518546065084416\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":420,"resize":"fit"},"medium":{"w":600,"h":420,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518544563527686,"id_str":"1234518544563527686","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkE1VXYAYPk_F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkE1VXYAYPk_F.jpg","url":"https:\/\/t.co\/cNiIV7S9Qe","display_url":"pic.twitter.com\/cNiIV7S9Qe","expanded_url":"https:\/\/twitter.com\/pontoBA\/status\/1234518546065084416\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":420,"resize":"fit"},"medium":{"w":600,"h":420,"resize":"fit"}}}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/bahia.ba\" rel=\"nofollow\"\u003eBahia.ba\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3523906335,"id_str":"3523906335","name":"bahia.ba","screen_name":"pontoBA","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2435,"friends_count":787,"listed_count":25,"created_at":"Wed - Sep 02 14:10:54 +0000 2015","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":81586,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640163423700000768\/Eus_nBYo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640163423700000768\/Eus_nBYo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3523906335\/1521743362","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545956032514,"id_str":"1234518545956032514","text":"https:\/\/t.co\/kNpSjr3NvX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kNpSjr3NvX","expanded_url":"https:\/\/link.conexaopolitica.com.br\/Moww3YD3msq548ym9","display_url":"link.conexaopolitica.com.br\/Moww3YD3msq548\u2026","indices":[0,23]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131211142,"id_str":"131211142","name":"AllAmPatriot\ud83d\udcafCult45\ud83c\udde7\ud83c\uddf7\ud83c\uddfa\ud83c\uddf8\ud83c\uddee\ud83c\uddf1","screen_name":"AllAmPatriots","location":"No - locked accounts","description":"#MAGA #KAG #Trump2020 #FBTS \ud83d\udeabIslam - #NRA #BOLSONARO \ud83d\udc49\ud83c\udffbIn this profile there r tweets from - other languages 2 \ud83d\udc49I Tweet\/RT Conservative Actions Around The - World","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16818,"friends_count":16856,"listed_count":55,"created_at":"Fri - Apr 09 16:12:38 +0000 2010","favourites_count":106791,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":516058,"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\/1195084424427298821\/MsZygZI2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195084424427298821\/MsZygZI2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131211142\/1564625448","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545905700864,"id_str":"1234518545905700864","text":"RT - @KMGGaryde: Calls Grow to Quarantine Senator Chris Murphy \u2026\n\nQuarantine - Senator Chris Murphy & everyone that attended the Secret Meeting\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KMGGaryde","name":"Gary","id":482418139,"id_str":"482418139","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2316336500,"id_str":"2316336500","name":"Patty - Ostrowe, RN","screen_name":"POstrowe","location":"Baton Rouge ","description":"Mom, - Wife, over 55. 20 years in Nursing, PACU, Clinical Information Services, Legal - Nurse Consultant, Medical Records Coding, Medical Office Management.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":322,"listed_count":0,"created_at":"Wed - Jan 29 01:49:54 +0000 2014","favourites_count":2691,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1057,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086304629112139778\/nI8vV2LF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086304629112139778\/nI8vV2LF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:25:10 +0000 2020","id":1234499998781493248,"id_str":"1234499998781493248","text":"Calls - Grow to Quarantine Senator Chris Murphy \u2026\n\nQuarantine Senator Chris - Murphy & everyone that attended the Secre\u2026 https:\/\/t.co\/sR10g8f8Si","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sR10g8f8Si","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234499998781493248","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482418139,"id_str":"482418139","name":"Gary","screen_name":"KMGGaryde","location":"United - States","description":"Architect ~ Artist ~ Musician \n \ud83c\uddfa\ud83c\uddf8 - VET \ud83c\uddfa\ud83c\uddf8 TRUMP 2020 #KAG\ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78813,"friends_count":49731,"listed_count":61,"created_at":"Fri - Feb 03 21:56:42 +0000 2012","favourites_count":71630,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150882,"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\/1210389197565169665\/oN7N9pYn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210389197565169665\/oN7N9pYn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482418139\/1574708374","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":180,"favorite_count":162,"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545809182723,"id_str":"1234518545809182723","text":"RT - @MayLeePro: Y a des gens ils ach\u00e8tent pleins de masques contre le coronavirus - et expulsent les asiatiques des transports en communs alor\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MayLeePro","name":"May-Lee","id":1228796622999556104,"id_str":"1228796622999556104","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3382336985,"id_str":"3382336985","name":"\ud835\udc6b\ud835\udc90\ud835\udc8f\ud835\udc90\ud835\udc97\ud835\udc82\ud835\udc8f","screen_name":"Donovan_Lpt","location":"\ud835\udc68\ud835\udc8f\ud835\udc88\ud835\udc86\ud835\udc93\ud835\udc94, - \ud835\udc6d\ud835\udc93\ud835\udc82\ud835\udc8f\ud835\udc84\ud835\udc86","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":120,"listed_count":0,"created_at":"Sat - Jul 18 22:34:21 +0000 2015","favourites_count":1648,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1518,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1155578375248994304\/WLm3fd6D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1155578375248994304\/WLm3fd6D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3382336985\/1576951448","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 21:22:02 +0000 2020","id":1233865032729026562,"id_str":"1233865032729026562","text":"Y - a des gens ils ach\u00e8tent pleins de masques contre le coronavirus et expulsent - les asiatiques des transports en com\u2026 https:\/\/t.co\/8XtbTABV7T","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8XtbTABV7T","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233865032729026562","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1228796622999556104,"id_str":"1228796622999556104","name":"May-Lee","screen_name":"MayLeePro","location":"","description":"Structureuse - en Finance de March\u00e9 et Investment Banking \ud83d\udcca\ud83d\udcc8\ud83d\udcb9\ud83c\udfe6 - Paris c''est la vie \ud83c\udde8\ud83c\uddf5","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":53,"listed_count":0,"created_at":"Sat - Feb 15 21:42:33 +0000 2020","favourites_count":314,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228853520335421441\/_3uZZ9zO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228853520335421441\/_3uZZ9zO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1228796622999556104\/1581804438","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1232561734046617601,"quoted_status_id_str":"1232561734046617601","quoted_status":{"created_at":"Wed - Feb 26 07:03:11 +0000 2020","id":1232561734046617601,"id_str":"1232561734046617601","text":"Les - Fran\u00e7ais manquent-ils d''hygi\u00e8ne? 1 sur 3 ne se lave pas les mains - apr\u00e8s \u00eatre all\u00e9 aux toilettes\u2026 https:\/\/t.co\/owhpcPV0nl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/owhpcPV0nl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1232561734046617601","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[101,124]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":133663801,"id_str":"133663801","name":"BFMTV","screen_name":"BFMTV","location":"France","description":"Premi\u00e8re - sur l''info. Retrouvez-nous sur Snapchat\/Instagram \u27a1 bfmtv","url":"https:\/\/t.co\/Mjm8y6dGAC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Mjm8y6dGAC","expanded_url":"http:\/\/www.bfmtv.com","display_url":"bfmtv.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2636620,"friends_count":576,"listed_count":9730,"created_at":"Fri - Apr 16 09:55:26 +0000 2010","favourites_count":545,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":433895,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"1277C9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165822715732930565\/uz3J1eOl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165822715732930565\/uz3J1eOl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133663801\/1579608118","profile_link_color":"1277C9","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":185,"favorite_count":153,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"retweet_count":7119,"favorite_count":15917,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1232561734046617601,"quoted_status_id_str":"1232561734046617601","retweet_count":7119,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545800794112,"id_str":"1234518545800794112","text":"RT - @FMoniteau: The stock market dropping is not because of the #coronavirus\n\nThe - stock market dropping is because investors have no confide\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[63,75]}],"symbols":[],"user_mentions":[{"screen_name":"FMoniteau","name":"Fredon - Moniteau","id":788417346092183552,"id_str":"788417346092183552","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25614085,"id_str":"25614085","name":"\ud83c\udd72\ud83c\udd7e\ud83c\udd75\ud83c\udd75\ud83c\udd74\ud83c\udd74 - \ud83c\udd82\ud83c\udd7f\ud83c\udd70\ud83c\udd82\ud83c\udd7c\ud83c\udd7e\ud83c\udd73\ud83c\udd78\ud83c\udd72 - \u2615\ufe0f","screen_name":"CoffeeSpasmodic","location":"The land of more - oxygen.","description":"Losing faith in humanity one human at a time. #GenX - #AlwaysSkeptical #NoDemagogues #noCultists C3-S1 \u267f\ufe0f \"I don''t want - to live like this but I don''t want to die\"","url":"https:\/\/t.co\/ct2w0vHsDP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ct2w0vHsDP","expanded_url":"https:\/\/www.youtube.com\/watch?v=PpccpglnNf0","display_url":"youtube.com\/watch?v=Ppccpg\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4478,"friends_count":3655,"listed_count":224,"created_at":"Sat - Mar 21 01:12:56 +0000 2009","favourites_count":203516,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":340159,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B20000","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\/1215763093260832774\/wTgG8yAR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215763093260832774\/wTgG8yAR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25614085\/1581983737","profile_link_color":"003300","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:27:01 +0000 2020","id":1234500465313886210,"id_str":"1234500465313886210","text":"The - stock market dropping is not because of the #coronavirus\n\nThe stock market - dropping is because investors have n\u2026 https:\/\/t.co\/T9BklTRqYu","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[48,60]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T9BklTRqYu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234500465313886210","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":788417346092183552,"id_str":"788417346092183552","name":"Fredon - Moniteau","screen_name":"FMoniteau","location":"United States","description":"Diluted - Droplets of Drollery #TheResistance #Resist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26057,"friends_count":21801,"listed_count":111,"created_at":"Tue - Oct 18 16:31:58 +0000 2016","favourites_count":6150,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9814,"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\/953264417063383040\/-PxQ8q5Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/953264417063383040\/-PxQ8q5Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/788417346092183552\/1582294533","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":442,"favorite_count":1240,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":442,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545767202816,"id_str":"1234518545767202816","text":"Coronavirus: - just eight out of 1,600 doctors in poll say NHS is ready https:\/\/t.co\/n6Ah6BKSkP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/n6Ah6BKSkP","expanded_url":"https:\/\/www.theguardian.com\/society\/2020\/mar\/02\/coronavirus-just-eight-out-of-1600-doctors-in-poll-say-nhs-is-ready?CMP=share_btn_tw","display_url":"theguardian.com\/society\/2020\/m\u2026","indices":[70,93]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1278863941,"id_str":"1278863941","name":"York - Defend Our NHS","screen_name":"YorkDefendNHS","location":"York, UK","description":"Defend - our NHS York - The Campaign to Save NHS York Chapter - https:\/\/t.co\/Y4E2vGh5q8","url":"http:\/\/t.co\/rmbPMJ8j6v","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/rmbPMJ8j6v","expanded_url":"http:\/\/defendournhsyork.wordpress.com\/","display_url":"defendournhsyork.wordpress.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Y4E2vGh5q8","expanded_url":"https:\/\/www.facebook.com\/groups\/defendournhsyork\/","display_url":"facebook.com\/groups\/defendo\u2026","indices":[62,85]}]}},"protected":false,"followers_count":1432,"friends_count":804,"listed_count":88,"created_at":"Mon - Mar 18 22:01:42 +0000 2013","favourites_count":1512,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20942,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3413958003\/f75fc5c9316f8c3fc230a8ee471c296f_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3413958003\/f75fc5c9316f8c3fc230a8ee471c296f_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1278863941\/1363961942","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545666576385,"id_str":"1234518545666576385","text":"RT - @minsaude: #Coronav\u00edrus | O que voc\u00ea precisa saber e fazer. Fique - atento aos sintomas e \u00e0s formas de preven\u00e7\u00e3o da doen\u00e7a.\nSiga - as orient\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronav\u00edrus","indices":[14,26]}],"symbols":[],"user_mentions":[{"screen_name":"minsaude","name":"Minist\u00e9rio - da Sa\u00fade","id":37717107,"id_str":"37717107","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78344595,"id_str":"78344595","name":"midnight - \ud83c\udf49","screen_name":"melmories","location":"\ud835\udc13\ud835\udc0f\ud835\udc16\ud835\udc0a","description":"\ud835\udc14\ud835\udc29 - \ud835\udc00\ud835\udc25\ud835\udc25 \ud835\udc0d\ud835\udc22\ud835\udc20\ud835\udc21\ud835\udc2d - \ud835\udc2d\ud835\udc21\ud835\udc1a\ud835\udc2d \ud835\udc22\ud835\udc2c - \ud835\udc26\ud835\udc32 \ud835\udc12\ud835\udc20\ud835\udc2d. \ud835\udc0f\ud835\udc1e\ud835\udc29\ud835\udc29\ud835\udc1e\ud835\udc2b - \ud835\udc26\ud835\udc32 \ud835\udc1f\ud835\udc2b\ud835\udc22\ud835\udc1e\ud835\udc27\ud835\udc1d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2347,"friends_count":1655,"listed_count":43,"created_at":"Tue - Sep 29 15:53:48 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83544,"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\/1230108140735270912\/T0r-i5me_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230108140735270912\/T0r-i5me_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78344595\/1582118181","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 00:00:00 +0000 2020","id":1234267172710408193,"id_str":"1234267172710408193","text":"#Coronav\u00edrus - | O que voc\u00ea precisa saber e fazer. Fique atento aos sintomas e \u00e0s - formas de preven\u00e7\u00e3o da doen\u00e7a.\nSiga\u2026 https:\/\/t.co\/1CWC0nlo1d","truncated":true,"entities":{"hashtags":[{"text":"Coronav\u00edrus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1CWC0nlo1d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234267172710408193","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"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,"user":{"id":37717107,"id_str":"37717107","name":"Minist\u00e9rio - da Sa\u00fade","screen_name":"minsaude","location":"Brasil, Bras\u00edlia","description":"Perfil - oficial de divulga\u00e7\u00e3o de programas, campanhas e relacionamento com - o usu\u00e1rio. Siga-nos nas redes: https:\/\/t.co\/xmOigN1T2d","url":"https:\/\/t.co\/BbtNTX5xFm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BbtNTX5xFm","expanded_url":"http:\/\/www.blog.saude.gov.br","display_url":"blog.saude.gov.br","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/xmOigN1T2d","expanded_url":"http:\/\/www.saude.gov.br\/redessociais","display_url":"saude.gov.br\/redessociais","indices":[105,128]}]}},"protected":false,"followers_count":755748,"friends_count":692,"listed_count":2906,"created_at":"Mon - May 04 18:11:59 +0000 2009","favourites_count":11542,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":136499,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233420945324462080\/jnurhrAX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233420945324462080\/jnurhrAX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37717107\/1582905446","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3356,"favorite_count":10187,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":3356,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545662218240,"id_str":"1234518545662218240","text":"RT - @FrancisBrennan: Joe Biden just touted the debunked talking point that President - Trump had muzzled Doctor Fauci form discussing the coro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FrancisBrennan","name":"Francis - Brennan (Text TRUMP to 88022)","id":718187712,"id_str":"718187712","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1005313701056995328,"id_str":"1005313701056995328","name":"APH\ud83c\uddfa\ud83c\uddf8","screen_name":"el_leche_malo","location":"","description":"#wwg1wga - #wethepeople #maga #kag #trump2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":268,"listed_count":0,"created_at":"Sat - Jun 09 05:00:38 +0000 2018","favourites_count":8900,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6821,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1208428864105377793\/-O155SII_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208428864105377793\/-O155SII_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1005313701056995328\/1529032412","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 14:27:29 +0000 2020","id":1234123094865928193,"id_str":"1234123094865928193","text":"Joe - Biden just touted the debunked talking point that President Trump had muzzled - Doctor Fauci form discussing the\u2026 https:\/\/t.co\/PxAvaZST7V","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PxAvaZST7V","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234123094865928193","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":718187712,"id_str":"718187712","name":"Francis - Brennan (Text TRUMP to 88022)","screen_name":"FrancisBrennan","location":"Washington - D.C.","description":"Director of Strategic Response for @RealDonaldTrump 2020 - Campaign @TeamTrump + @TrumpWarRoom","url":"https:\/\/t.co\/DHRWm4KRN1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DHRWm4KRN1","expanded_url":"http:\/\/donaldtrump.com","display_url":"donaldtrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16940,"friends_count":987,"listed_count":117,"created_at":"Thu - Jul 26 14:13:41 +0000 2012","favourites_count":1602,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6765,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554632885131411457\/utDQoEIF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554632885131411457\/utDQoEIF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718187712\/1560777324","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4899,"favorite_count":10280,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4899,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545578561536,"id_str":"1234518545578561536","text":"RT - @KarluskaP: Calls Grow to Quarantine Senator Chris Murphy after Secret Meeting - with Coronavirus Carriers from Iranian Regime- add some m\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KarluskaP","name":"Karli - Q \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f - Text TRUMP to 88022","id":1199522589573554176,"id_str":"1199522589573554176","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81859756,"id_str":"81859756","name":"SandySueWho - \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f Text TRUMP to 88022","screen_name":"realSandySueWho","location":"United - States \ud83c\uddfa\ud83c\uddf8 I stand with Trump!","description":"Only Here - To Support My President @realdonaldtrump, While He Rocks The World! #MAGA - #KAG The Best Is Yet To Come!\nFollowed By A Great American Hero @Genflynn","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4915,"friends_count":4906,"listed_count":2,"created_at":"Mon - Oct 12 14:54:42 +0000 2009","favourites_count":107027,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":87516,"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\/1056582023031205890\/W71tZw8L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1056582023031205890\/W71tZw8L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81859756\/1581179258","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:10:05 +0000 2020","id":1234511302330064899,"id_str":"1234511302330064899","text":"Calls - Grow to Quarantine Senator Chris Murphy after Secret Meeting with Coronavirus - Carriers from Iranian Regime- a\u2026 https:\/\/t.co\/FU7LUAGlHV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FU7LUAGlHV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234511302330064899","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1199522589573554176,"id_str":"1199522589573554176","name":"Karli - Q \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f - Text TRUMP to 88022","screen_name":"KarluskaP","location":"","description":"That - Cackling Conservative sings too! #Trump2020-Music-https:\/\/t.co\/YsG6bhpmYq - https:\/\/t.co\/j4UaHbDRBo","url":"https:\/\/t.co\/5ud3Qh3Lf1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5ud3Qh3Lf1","expanded_url":"https:\/\/www.youtube.com\/channel\/UC617TWvZYVVl7tNdpdgnQeQ","display_url":"youtube.com\/channel\/UC617T\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/YsG6bhpmYq","expanded_url":"https:\/\/store.cdbaby.com\/artist\/karlibonne","display_url":"store.cdbaby.com\/artist\/karlibo\u2026","indices":[55,78]},{"url":"https:\/\/t.co\/j4UaHbDRBo","expanded_url":"https:\/\/music.apple.com\/in\/artist\/karli-bonne\/29014046","display_url":"music.apple.com\/in\/artist\/karl\u2026","indices":[79,102]}]}},"protected":false,"followers_count":38216,"friends_count":17076,"listed_count":92,"created_at":"Wed - Nov 27 02:57:42 +0000 2019","favourites_count":72589,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224518894683140097\/liGqDGZ9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224518894683140097\/liGqDGZ9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1199522589573554176\/1582947437","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":177,"favorite_count":290,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":177,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545494528003,"id_str":"1234518545494528003","text":"RT - @AlexRiosXI: Llego primero el coronavirus que la canci\u00f3n del avi\u00f3n - de Christian Nodal","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlexRiosXI","name":"Alex","id":443467816,"id_str":"443467816","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813988830,"id_str":"813988830","name":"Andrea - Martinez","screen_name":"andrea99mtz","location":"Monterrey, Nuevo Le\u00f3n","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":328,"friends_count":150,"listed_count":0,"created_at":"Sun - Sep 09 22:21:15 +0000 2012","favourites_count":3645,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13524,"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\/1216748627600629760\/cvYUJcV9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216748627600629760\/cvYUJcV9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813988830\/1576984227","profile_link_color":"8A0E0E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 02:08:20 +0000 2020","id":1234299471464296450,"id_str":"1234299471464296450","text":"Llego - primero el coronavirus que la canci\u00f3n del avi\u00f3n de Christian Nodal","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":443467816,"id_str":"443467816","name":"Alex","screen_name":"AlexRiosXI","location":"M\u00e9xico","description":"Borracho - pero buen muchacho. No soy Alex Strecci soy Alex el de beso de 10. Aqu\u00ed - escribo pendejadas en mi Instagram las digo","url":"https:\/\/t.co\/OOcTpzUISQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OOcTpzUISQ","expanded_url":"http:\/\/Instagram.com\/alexriosxi","display_url":"Instagram.com\/alexriosxi","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":51388,"friends_count":597,"listed_count":147,"created_at":"Thu - Dec 22 06:23:58 +0000 2011","favourites_count":4739,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23262,"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\/1137781074962993152\/eBCZUmD0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137781074962993152\/eBCZUmD0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/443467816\/1583082280","profile_link_color":"DD2E44","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2463,"favorite_count":8541,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":2463,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545473601539,"id_str":"1234518545473601539","text":"RT - @bopinion: The coronavirus has now spread to at least 65 countries, and the - WHO has raised its threat level to \u201cvery high.\u201d\n\nThere\u2019s - no\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bopinion","name":"Bloomberg - Opinion","id":227682918,"id_str":"227682918","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3122376836,"id_str":"3122376836","name":"Bill - from IA","screen_name":"WMSchmit","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":68,"listed_count":0,"created_at":"Wed - Apr 01 01:21:12 +0000 2015","favourites_count":329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":382,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226155279324237824\/QjuDWGZh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226155279324237824\/QjuDWGZh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3122376836\/1550289326","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:54:48 +0000 2020","id":1234507458753724416,"id_str":"1234507458753724416","text":"The - coronavirus has now spread to at least 65 countries, and the WHO has raised - its threat level to \u201cvery high.\u201d\n\nT\u2026 https:\/\/t.co\/TW1PN7U4W6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TW1PN7U4W6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234507458753724416","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":227682918,"id_str":"227682918","name":"Bloomberg - Opinion","screen_name":"bopinion","location":"Worldwide","description":"Opinions - on business, economics and much more from the editors and columnists at Bloomberg - Opinion.","url":"https:\/\/t.co\/eY4AY2rZeQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eY4AY2rZeQ","expanded_url":"http:\/\/bloomberg.com\/opinion","display_url":"bloomberg.com\/opinion","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":225961,"friends_count":453,"listed_count":4412,"created_at":"Fri - Dec 17 14:20:58 +0000 2010","favourites_count":8051,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":159964,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/991778099397320705\/6LWXR6MS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/991778099397320705\/6LWXR6MS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227682918\/1525292911","profile_link_color":"0072FF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1375,"favorite_count":2474,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1375,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545431769089,"id_str":"1234518545431769089","text":"RT - @RepDeFiFidonia: Prensa: Si se diera una emergencia sanitaria por el coronavirus, - \u00bfcancelar\u00eda las ma\u00f1aneras?\n\nAndr\u00e9s: \u00a1Brincos dieran!,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepDeFiFidonia","name":"Rep\u00fablica - de FiFidonia","id":1114001391540822017,"id_str":"1114001391540822017","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":347189325,"id_str":"347189325","name":"Heri - Marquez","screen_name":"marquhx1974","location":"M\u00e9xico","description":"Un - buen amigo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":171,"friends_count":2464,"listed_count":0,"created_at":"Tue - Aug 02 12:12:24 +0000 2011","favourites_count":24220,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19664,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1629595088\/otra_pedorra_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1629595088\/otra_pedorra_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:53:11 +0000 2020","id":1234507048462610433,"id_str":"1234507048462610433","text":"Prensa: - Si se diera una emergencia sanitaria por el coronavirus, \u00bfcancelar\u00eda - las ma\u00f1aneras?\n\nAndr\u00e9s: \u00a1Brincos diera\u2026 https:\/\/t.co\/XVi21QkX1R","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XVi21QkX1R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234507048462610433","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1114001391540822017,"id_str":"1114001391540822017","name":"Rep\u00fablica - de FiFidonia","screen_name":"RepDeFiFidonia","location":"Rep\u00fablica de - FiFidonia","description":"Rep\u00fablica 100% libre de rifas y Coronavirus.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26339,"friends_count":179,"listed_count":67,"created_at":"Fri - Apr 05 03:06:43 +0000 2019","favourites_count":59241,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10869,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225090567824003073\/O4yjtqk9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225090567824003073\/O4yjtqk9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1114001391540822017\/1576639124","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":325,"favorite_count":649,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":325,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545322708992,"id_str":"1234518545322708992","text":"RT - @mecindt: Lleg\u00f3 el coronavirus a mi ciudad. \ud83d\ude37","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mecindt","name":"juan - manuel \ud83e\udd85","id":319396430,"id_str":"319396430","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1024991972,"id_str":"1024991972","name":"~Lady - Gordiva~","screen_name":"anna_72bis","location":"Donde Quepa (3er.Mundo)","description":"Aprendiz\n - Trascendental ac\u00e1? no...","url":"https:\/\/t.co\/mpwhD5Xb9H","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mpwhD5Xb9H","expanded_url":"http:\/\/es.favstar.fm\/users\/anna_72bis","display_url":"es.favstar.fm\/users\/anna_72b\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1458,"friends_count":668,"listed_count":64,"created_at":"Thu - Dec 20 20:43:56 +0000 2012","favourites_count":108744,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":200770,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195860627614584832\/GYVazwI8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195860627614584832\/GYVazwI8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1024991972\/1526742861","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:08:33 +0000 2020","id":1234510915896303617,"id_str":"1234510915896303617","text":"Lleg\u00f3 - el coronavirus a mi ciudad. \ud83d\ude37","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":319396430,"id_str":"319396430","name":"juan - manuel \ud83e\udd85","screen_name":"mecindt","location":"","description":"runner. - ingeniero industrial. motociclista. eleuteromaniaco. otra vez soltero.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":562,"friends_count":143,"listed_count":29,"created_at":"Sat - Jun 18 01:47:36 +0000 2011","favourites_count":165103,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1160311358099021824\/arZ42ohG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1160311358099021824\/arZ42ohG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/319396430\/1568932718","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545180057600,"id_str":"1234518545180057600","text":"RT - @alvez_rebeca: #FelizLunes Cuando te encuentras a tu vecina en El Walmart - y te das cuenta que ya est\u00e1 preparada hasta Para un atentado t\u2026","truncated":false,"entities":{"hashtags":[{"text":"FelizLunes","indices":[18,29]}],"symbols":[],"user_mentions":[{"screen_name":"alvez_rebeca","name":"Rebbekkita - \u2764\u2764\ud83c\udf39\ud83c\udf39","id":3137737092,"id_str":"3137737092","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":896210778,"id_str":"896210778","name":"Mars - Ronnie \ud83c\udf40","screen_name":"RonnieJuniorMBa","location":"","description":"Soy - un chico invisible, si me viste es porque tal vez debes tener un s\u00faper - poder. Soy tonto, escribo canciones, libros y guiones de pel\u00edculas no - por pendejo\ud83c\udf40","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":321,"friends_count":178,"listed_count":5,"created_at":"Sun - Oct 21 21:44:27 +0000 2012","favourites_count":3467,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7080,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231284375242842113\/mpPugq-V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231284375242842113\/mpPugq-V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/896210778\/1569261907","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:28 +0000 2020","id":1234518446676889601,"id_str":"1234518446676889601","text":"#FelizLunes - Cuando te encuentras a tu vecina en El Walmart y te das cuenta que ya est\u00e1 - preparada hasta Para un aten\u2026 https:\/\/t.co\/mNg2KMXf4i","truncated":true,"entities":{"hashtags":[{"text":"FelizLunes","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mNg2KMXf4i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518446676889601","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3137737092,"id_str":"3137737092","name":"Rebbekkita - \u2764\u2764\ud83c\udf39\ud83c\udf39","screen_name":"alvez_rebeca","location":"cd - juarez,chihuahua,Mexico\ud83c\uddee\ud83c\uddf9","description":"Amo el f\u00fatbol! - a partidista estudiante en la #UACJ #RaulJimenez #ClubAmerica #Boxeo #RealMadrid #SeleccionMexicana - #NFL #SiguemeYteSigoAlInstante #NoDM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43182,"friends_count":32264,"listed_count":88,"created_at":"Fri - Apr 03 20:37:16 +0000 2015","favourites_count":27549,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31279,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219798246333259783\/cIfpWDOk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219798246333259783\/cIfpWDOk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3137737092\/1511662595","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":27,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"es"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545163333632,"id_str":"1234518545163333632","text":"RT - @sargentoovaldes: 80000 personas con coronavirus y todo el mundo quiere usar - mascarilla. 37,8 millones de personas con VIH y todav\u00eda hay\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sargentoovaldes","name":"Alicia - Vald\u00e9s\ud83c\udf3b","id":1165974366749900802,"id_str":"1165974366749900802","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":835522642325221376,"id_str":"835522642325221376","name":"Carmen - Rodriguez","screen_name":"caaarmeeen_rv","location":"Espa\u00f1a","description":"i\u2019m - choosing me","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":121,"listed_count":0,"created_at":"Sat - Feb 25 16:11:35 +0000 2017","favourites_count":10086,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3892,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166260107384107008\/2ksozhNG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166260107384107008\/2ksozhNG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/835522642325221376\/1488039617","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:05:55 +0000 2020","id":1234464955782615041,"id_str":"1234464955782615041","text":"80000 - personas con coronavirus y todo el mundo quiere usar mascarilla. 37,8 millones - de personas con VIH y todav\u00eda\u2026 https:\/\/t.co\/LsAKiCf1D3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LsAKiCf1D3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234464955782615041","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1165974366749900802,"id_str":"1165974366749900802","name":"Alicia - Vald\u00e9s\ud83c\udf3b","screen_name":"sargentoovaldes","location":"","description":"Una - siesta de dos horas y me pongo\ud83c\udfd5\ufe0f\u269c\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":120,"listed_count":0,"created_at":"Mon - Aug 26 13:08:53 +0000 2019","favourites_count":995,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1120,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233914824314281985\/8A8Q_DGy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233914824314281985\/8A8Q_DGy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1165974366749900802\/1566825960","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"f7e89e60ea52207c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/f7e89e60ea52207c.json","place_type":"city","name":"Algeciras","full_name":"Algeciras, - Spain","country_code":"ES","country":"Spain","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-5.5507944,36.0502188],[-5.4223232,36.0502188],[-5.4223232,36.176308],[-5.5507944,36.176308]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":611,"favorite_count":1127,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":611,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545117171717,"id_str":"1234518545117171717","text":"RT - @DeItaOne: SENEGAL CONFIRMS FIRST CORONAVIRUS CASE - HEALTH MINISTRY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeItaOne","name":"*Walter - Bloomberg","id":2704294333,"id_str":"2704294333","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224756196,"id_str":"224756196","name":"Glen - Burnie","screen_name":"Hikeman5000","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":335,"listed_count":3,"created_at":"Thu - Dec 09 19:58:59 +0000 2010","favourites_count":71,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":36179,"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\/747957805886365696\/C6iJvL9i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/747957805886365696\/C6iJvL9i_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:08 +0000 2020","id":1234518363507974145,"id_str":"1234518363507974145","text":"SENEGAL - CONFIRMS FIRST CORONAVIRUS CASE - HEALTH MINISTRY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2704294333,"id_str":"2704294333","name":"*Walter - Bloomberg","screen_name":"DeItaOne","location":"twitter","description":"Real-time - financial markets News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44718,"friends_count":31,"listed_count":1501,"created_at":"Sun - Aug 03 14:34:52 +0000 2014","favourites_count":3584,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69546,"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\/1147773866242129921\/v_HeM0Fm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1147773866242129921\/v_HeM0Fm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2704294333\/1557143876","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":51,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518545008091139,"id_str":"1234518545008091139","text":"El - estado de Washington registra el segundo muerto por coronavirus en EE.UU. - #NoticiasSIN https:\/\/t.co\/anT5Rg6ghU","truncated":false,"entities":{"hashtags":[{"text":"NoticiasSIN","indices":[77,89]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/anT5Rg6ghU","expanded_url":"https:\/\/noticiassin.com\/el-estado-de-washington-registra-el-segundo-muerto-por-coronavirus-en-ee-uu\/#.Xl02linOtCw.twitter","display_url":"noticiassin.com\/el-estado-de-w\u2026","indices":[90,113]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":55660696,"id_str":"55660696","name":"Noticias - SIN","screen_name":"SIN24Horas","location":"Rep\u00fablica Dominicana","description":"Periodismo - Independiente \nLun-Vie 2PM, 7PM y 10PM. S\u00e1b-Dom - 7PM.","url":"http:\/\/t.co\/DTByFv6OHu","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/DTByFv6OHu","expanded_url":"http:\/\/www.noticiassin.com","display_url":"noticiassin.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1203627,"friends_count":643,"listed_count":3112,"created_at":"Fri - Jul 10 20:52:16 +0000 2009","favourites_count":1470,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":399821,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"042D85","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\/1214975100677742600\/MmhDhRwE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214975100677742600\/MmhDhRwE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55660696\/1488811208","profile_link_color":"C90E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B8F1FF","profile_text_color":"0A066E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"es"},{"created_at":"Mon - Mar 02 16:38:52 +0000 2020","id":1234518544898871296,"id_str":"1234518544898871296","text":"RT - @Mojahedineng: Iranian regime Deputy Health Minister acknowledges 60,000 people - in Iran have been diagnosed with the coronavirus.\n#Iran\u2026","truncated":false,"entities":{"hashtags":[{"text":"Iran","indices":[133,138]}],"symbols":[],"user_mentions":[{"screen_name":"Mojahedineng","name":"People''s - Mojahedin Organization of Iran (PMOI\/MEK)","id":62088756,"id_str":"62088756","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":202006828,"id_str":"202006828","name":"iGoogleplex - (''\u30fb\u03c9\u30fb'')","screen_name":"iGoogleplex","location":"Googleplex","description":"Google - LLC.","url":"https:\/\/t.co\/S8g60n4UYm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S8g60n4UYm","expanded_url":"http:\/\/www.usuk.xyz","display_url":"usuk.xyz","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":376,"listed_count":78,"created_at":"Wed - Oct 13 02:58:38 +0000 2010","favourites_count":551,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":115932,"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\/690191813487890432\/7DXfqYPS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/690191813487890432\/7DXfqYPS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/202006828\/1425636911","profile_link_color":"B40B43","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:12:57 +0000 2020","id":1234406327587205120,"id_str":"1234406327587205120","text":"Iranian - regime Deputy Health Minister acknowledges 60,000 people in Iran have been - diagnosed with the coronavirus.\u2026 https:\/\/t.co\/lLIIyTHVIP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lLIIyTHVIP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234406327587205120","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62088756,"id_str":"62088756","name":"People''s - Mojahedin Organization of Iran (PMOI\/MEK)","screen_name":"Mojahedineng","location":"IRAN","description":"Official - account of PMOI\/MEK, the main Iranian opposition group seeking to establish - a free & democratic state respecting freedoms & gender equality.\n@PMOIRAN","url":"https:\/\/t.co\/qtNgJsZiZM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qtNgJsZiZM","expanded_url":"http:\/\/mojahedin.org\/home\/en","display_url":"mojahedin.org\/home\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13408,"friends_count":11,"listed_count":411,"created_at":"Sat - Aug 01 18:28:15 +0000 2009","favourites_count":2026,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":117229,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3173295102\/f160eefbf0125c34aa1195a31c897286_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3173295102\/f160eefbf0125c34aa1195a31c897286_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62088756\/1553526595","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234404033953071104,"quoted_status_id_str":"1234404033953071104","quoted_status":{"created_at":"Mon - Mar 02 09:03:50 +0000 2020","id":1234404033953071104,"id_str":"1234404033953071104","text":"\u06f6\u06f0\u0647\u0632\u0627\u0631 - \u0645\u0628\u062a\u0644\u0627 \u0628\u0647 \u06a9\u0631\u0648\u0646\u0627 - \u0628\u0647 \u0627\u0639\u062a\u0631\u0627\u0641 \u0645\u0639\u0627\u0648\u0646 - \u0648\u0632\u06cc\u0631 \u0628\u0647\u062f\u0627\u0634\u062a \u0622\u062e\u0648\u0646\u062f\u0647\u0627! - \n#\u06a9\u0631\u0648\u0646\u0627_\u0648\u06cc\u0631\u0648\u0633\n#\u0633\u0627\u0644_\u0633\u0631\u0646\u06af\u0648\u0646\u06cc\n#coronavirus\nhttps:\/\/t.co\/RyUhGTAvq5","truncated":false,"entities":{"hashtags":[{"text":"\u06a9\u0631\u0648\u0646\u0627_\u0648\u06cc\u0631\u0648\u0633","indices":[60,72]},{"text":"\u0633\u0627\u0644_\u0633\u0631\u0646\u06af\u0648\u0646\u06cc","indices":[73,85]},{"text":"coronavirus","indices":[86,98]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RyUhGTAvq5","expanded_url":"https:\/\/news.mojahedin.org\/id\/9d65b96a-fd87-4bed-988c-54c22f0d1d0c","display_url":"news.mojahedin.org\/id\/9d65b96a-fd\u2026","indices":[99,122]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1555561052,"id_str":"1555561052","name":"\u0633\u0627\u0632\u0645\u0627\u0646 - \u0645\u062c\u0627\u0647\u062f\u06cc\u0646 \u062e\u0644\u0642 \u0627\u06cc\u0631\u0627\u0646","screen_name":"PMOIRAN","location":"IRAN","description":"#\u0645\u062c\u0627\u0647\u062f\u06cc\u0646 - \u062e\u0644\u0642 \u062f\u0631\u067e\u06cc \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc - \u062f\u06cc\u06a9\u062a\u0627\u062a\u0648\u0631\u06cc \u062f\u06cc\u0646\u06cc - #\u0627\u06cc\u0631\u0627\u0646 \u0628\u0627 \u062f\u0648\u0644\u062a\u06cc - \u062f\u0645\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u0648 \u06a9\u062b\u0631\u062a\u200c\u06af\u0631\u0627 - \u0645\u0628\u062a\u0646\u06cc \u0628\u0631\u062c\u062f\u0627\u06cc\u06cc - \u062f\u06cc\u0646 \u0627\u0632 \u062f\u0648\u0644\u062a \u0647\u0633\u062a\u0646\u062f - \u06a9\u0647 \u0628\u0647 \u0622\u0632\u0627\u062f\u06cc\u0647\u0627\u06cc - \u0641\u0631\u062f\u06cc \u0648\u062a\u0633\u0627\u0648\u06cc \u0632\u0646 - \u0648 \u0645\u0631\u062f \u0627\u062d\u062a\u0631\u0627\u0645 \u0645\u06cc\u06af\u0630\u0627\u0631\u062f","url":"https:\/\/t.co\/d60B6DGe7K","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/d60B6DGe7K","expanded_url":"https:\/\/www.mojahedin.org","display_url":"mojahedin.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11654,"friends_count":1,"listed_count":237,"created_at":"Sat - Jun 29 12:23:31 +0000 2013","favourites_count":1100,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":131318,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1072646576194183168\/Zu2E7VYb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1072646576194183168\/Zu2E7VYb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1555561052\/1553526619","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":104,"favorite_count":106,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fa"},"retweet_count":273,"favorite_count":292,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234404033953071104,"quoted_status_id_str":"1234404033953071104","retweet_count":273,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518544844496902,"id_str":"1234518544844496902","text":"RT - @TexasTribune: A person in the San Antonio area had a \u201cweakly positive\u201d - test result for the new coronavirus after being released from qu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TexasTribune","name":"Texas - Tribune","id":44513878,"id_str":"44513878","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":635805455,"id_str":"635805455","name":"michelle - \ud83e\udd0d","screen_name":"itsmichellerae_","location":"Texas, USA","description":"22 - \u2022 i cannot eat dairy or consume caffeine so life is rough","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1103,"friends_count":752,"listed_count":16,"created_at":"Sun - Jul 15 01:39:24 +0000 2012","favourites_count":27870,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28563,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"041042","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\/1232071119181508608\/4zvPmFbu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232071119181508608\/4zvPmFbu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/635805455\/1579279710","profile_link_color":"041042","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 03:19:13 +0000 2020","id":1234317306920083456,"id_str":"1234317306920083456","text":"A - person in the San Antonio area had a \u201cweakly positive\u201d test result - for the new coronavirus after being released f\u2026 https:\/\/t.co\/flYAfDgHOw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/flYAfDgHOw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234317306920083456","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":44513878,"id_str":"44513878","name":"Texas - Tribune","screen_name":"TexasTribune","location":"Austin, Texas","description":"A - member-supported, nonpartisan newsroom informing & engaging Texans on state - politics & policy. Tweets by @regmack_. Subscribe: https:\/\/t.co\/7vzWxFt29b","url":"http:\/\/t.co\/THOyB5XQbo","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/THOyB5XQbo","expanded_url":"http:\/\/www.texastribune.org","display_url":"texastribune.org","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/7vzWxFt29b","expanded_url":"http:\/\/trib.it\/subscribe","display_url":"trib.it\/subscribe","indices":[129,152]}]}},"protected":false,"followers_count":211949,"friends_count":59710,"listed_count":4987,"created_at":"Thu - Jun 04 01:37:46 +0000 2009","favourites_count":3144,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":84993,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2E3A58","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\/1190790308860190720\/z8WO5CjJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190790308860190720\/z8WO5CjJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44513878\/1581511162","profile_link_color":"F15D5A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF6DD","profile_text_color":"292929","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1217,"favorite_count":1530,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1217,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518544693506049,"id_str":"1234518544693506049","text":"RT - @CNNEE: Consecuencias del brote del coronavirus: cancelan competencias deportivas - y cierran lugares tur\u00edsticos https:\/\/t.co\/P2csVEJAtk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNNEE","name":"CNN - en Espa\u00f1ol","id":33884545,"id_str":"33884545","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/P2csVEJAtk","expanded_url":"https:\/\/cnn.it\/2PDvoow","display_url":"cnn.it\/2PDvoow","indices":[114,137]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":227498665,"id_str":"227498665","name":"S - O T O \ud83d\udde3","screen_name":"CiudadanoSoto","location":"Te Sigo De Vuelta.. - ","description":"Ex Empleado P\u00fablico.. Espero volver pronto | Albo | - 1,85 cms de Hombre | #DogLover | Actualidad, Pol\u00edtica, Deportes y Pel\u00edculas.. - #APRUEBO","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3660,"friends_count":4675,"listed_count":13,"created_at":"Fri - Dec 17 00:28:21 +0000 2010","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7444,"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\/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\/1193210920778043393\/oC9ecp2o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193210920778043393\/oC9ecp2o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227498665\/1576709569","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:32 +0000 2020","id":1234517707242033153,"id_str":"1234517707242033153","text":"Consecuencias - del brote del coronavirus: cancelan competencias deportivas y cierran lugares - tur\u00edsticos https:\/\/t.co\/P2csVEJAtk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/P2csVEJAtk","expanded_url":"https:\/\/cnn.it\/2PDvoow","display_url":"cnn.it\/2PDvoow","indices":[103,126]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":33884545,"id_str":"33884545","name":"CNN - en Espa\u00f1ol","screen_name":"CNNEE","location":"En todas partes","description":"CNN - en Espa\u00f1ol es tu principal fuente de informaci\u00f3n y breaking news. - Cubrimos las noticias de Am\u00e9rica Latina y el resto del mundo. Vive la - noticia.","url":"https:\/\/t.co\/592LYnRFm4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/592LYnRFm4","expanded_url":"http:\/\/cnnespanol.cnn.com","display_url":"cnnespanol.cnn.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18086278,"friends_count":567,"listed_count":51903,"created_at":"Tue - Apr 21 12:14:47 +0000 2009","favourites_count":1462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":254369,"lang":null,"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\/589795319216504832\/6a71ZHkx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589795319216504832\/6a71ZHkx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33884545\/1411070627","profile_link_color":"AB1529","profile_sidebar_border_color":"B5B5B5","profile_sidebar_fill_color":"B5B5B5","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":100,"favorite_count":209,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":100,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518544660025347,"id_str":"1234518544660025347","text":"RT - @AJEnglish: #Coronavirus updates\n\n\u26ab\ufe0fOver 89,000 infected - death - toll tops 3,000 globally\n\u26ab\ufe0f Jordan announces its 1st case\n\u26ab\ufe0f - UK cases j\u2026","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[15,27]}],"symbols":[],"user_mentions":[{"screen_name":"AJEnglish","name":"Al - Jazeera English","id":4970411,"id_str":"4970411","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4704844942,"id_str":"4704844942","name":"Mushtaq - Ahmad Jan","screen_name":"SMAJ_UoP","location":"Peshawar, Pakistan","description":"Change - your thoughts and you change your world....\n\n\n\nhttps:\/\/t.co\/NUT95eX9qo","url":"https:\/\/t.co\/MmdSU1BQUu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MmdSU1BQUu","expanded_url":"http:\/\/www.uop.edu.pk","display_url":"uop.edu.pk","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/NUT95eX9qo","expanded_url":"http:\/\/facebook.com\/CDPMP\/","display_url":"facebook.com\/CDPMP\/","indices":[54,77]}]}},"protected":false,"followers_count":253,"friends_count":233,"listed_count":0,"created_at":"Mon - Jan 04 12:33:15 +0000 2016","favourites_count":2985,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3167,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848060930680266753\/uP6a1bXH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848060930680266753\/uP6a1bXH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4704844942\/1574238684","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:08:58 +0000 2020","id":1234511022448353280,"id_str":"1234511022448353280","text":"#Coronavirus - updates\n\n\u26ab\ufe0fOver 89,000 infected - death toll tops 3,000 globally\n\u26ab\ufe0f - Jordan announces its 1st case\n\u26ab\ufe0f U\u2026 https:\/\/t.co\/uEHG2EvdeK","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uEHG2EvdeK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234511022448353280","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":4970411,"id_str":"4970411","name":"Al - Jazeera English","screen_name":"AJEnglish","location":"Doha, Qatar","description":"Hear - the human story and join the discussion. For more news follow @AJENews.","url":"https:\/\/t.co\/D38RZjLnhI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/D38RZjLnhI","expanded_url":"http:\/\/aljazeera.com","display_url":"aljazeera.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5863884,"friends_count":247,"listed_count":53277,"created_at":"Tue - Apr 17 08:23:08 +0000 2007","favourites_count":5429,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":246176,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1190503555901394944\/T4qowO0X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190503555901394944\/T4qowO0X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4970411\/1578048923","profile_link_color":"234D8C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDDDDD","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":680,"favorite_count":856,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":680,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518544622215169,"id_str":"1234518544622215169","text":"RT - @Education4Libs: Dear libs,\n\nI\u2019ve found a simple & effective way - to stay safe from the Coronavirus....\n\nIt\u2019s called turning off the - Fake\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Education4Libs","name":"Educating - Liberals","id":817661098988019712,"id_str":"817661098988019712","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821559726781722624,"id_str":"821559726781722624","name":"Aric - Brocker","screen_name":"AricBrocker","location":"Texas","description":"Father, - Husband, Proud American Patriot \ud83c\uddfa\ud83c\uddf8. \n\ud83d\udeabDMs - for dating\n#IStandWithPresidentTrump #KAG #Trump2020 #2A #Q\nIFBAP #WWG1WGA","url":"https:\/\/t.co\/rhQRMgTzH9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rhQRMgTzH9","expanded_url":"https:\/\/qanon.pub\/","display_url":"qanon.pub","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":479,"friends_count":558,"listed_count":1,"created_at":"Wed - Jan 18 03:27:57 +0000 2017","favourites_count":6856,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2716,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194995657532170240\/DcY9je4c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194995657532170240\/DcY9je4c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821559726781722624\/1577180463","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:54 +0000 2020","id":1234518050017349633,"id_str":"1234518050017349633","text":"Dear - libs,\n\nI\u2019ve found a simple & effective way to stay safe from the - Coronavirus....\n\nIt\u2019s called turning off the\u2026 https:\/\/t.co\/VT6kEravcu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VT6kEravcu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518050017349633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":817661098988019712,"id_str":"817661098988019712","name":"Educating - Liberals","screen_name":"Education4Libs","location":"Minnesota, USA","description":"Digital - soldier. Followed by @GenFlynn. Mentioned by Q. Retweeted by Trump. Shadowbanned - by Twitter. #WWG1WGA \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/rW7JqtLh0G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rW7JqtLh0G","expanded_url":"http:\/\/Patreon.com\/E4L","display_url":"Patreon.com\/E4L","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":477785,"friends_count":280124,"listed_count":2129,"created_at":"Sat - Jan 07 09:16:12 +0000 2017","favourites_count":130074,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9378,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127981592696115202\/WBcMbFd-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127981592696115202\/WBcMbFd-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/817661098988019712\/1563879746","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1636,"favorite_count":5215,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1636,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518544617963520,"id_str":"1234518544617963520","text":"RT - @kapn_krude: Coronavirus is no joke. It WILL kill people with compromised - immune systems. Antibiotics are never used for viruses. Just l\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kapn_krude","name":"Kapn - KR\u00dcDE","id":968224784,"id_str":"968224784","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":968224784,"id_str":"968224784","name":"Kapn - KR\u00dcDE","screen_name":"kapn_krude","location":"NJ","description":"Music - Sports Politics Life observations\n Pontificating philological carnality\nAuthor - of The Krude Experience weekly blog at https:\/\/t.co\/g3U6tMPnDm","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/g3U6tMPnDm","expanded_url":"http:\/\/bumwinebob.com","display_url":"bumwinebob.com","indices":[124,147]}]}},"protected":false,"followers_count":1070,"friends_count":924,"listed_count":24,"created_at":"Sat - Nov 24 15:31:41 +0000 2012","favourites_count":33524,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27929,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214323486098952192\/-pVP88oN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214323486098952192\/-pVP88oN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/968224784\/1577932421","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 14:22:58 +0000 2020","id":1234121959027412992,"id_str":"1234121959027412992","text":"Coronavirus - is no joke. It WILL kill people with compromised immune systems. Antibiotics - are never used for viruses\u2026 https:\/\/t.co\/9cGLYwtb4h","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9cGLYwtb4h","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234121959027412992","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":968224784,"id_str":"968224784","name":"Kapn - KR\u00dcDE","screen_name":"kapn_krude","location":"NJ","description":"Music - Sports Politics Life observations\n Pontificating philological carnality\nAuthor - of The Krude Experience weekly blog at https:\/\/t.co\/g3U6tMPnDm","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/g3U6tMPnDm","expanded_url":"http:\/\/bumwinebob.com","display_url":"bumwinebob.com","indices":[124,147]}]}},"protected":false,"followers_count":1070,"friends_count":924,"listed_count":24,"created_at":"Sat - Nov 24 15:31:41 +0000 2012","favourites_count":33524,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27929,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214323486098952192\/-pVP88oN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214323486098952192\/-pVP88oN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/968224784\/1577932421","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518544529928193,"id_str":"1234518544529928193","text":"RT - @ReutersBiz: Goldman Sachs halts all non-essential business travel: memo https:\/\/t.co\/O2hzHoM3bY - https:\/\/t.co\/Y0mjmZBHW7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReutersBiz","name":"Reuters - Business","id":15110357,"id_str":"15110357","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/O2hzHoM3bY","expanded_url":"https:\/\/reut.rs\/2vnurtX","display_url":"reut.rs\/2vnurtX","indices":[76,99]}],"media":[{"id":1234474940730134528,"id_str":"1234474940730134528","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESG8awZXUAAbTxM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESG8awZXUAAbTxM.jpg","url":"https:\/\/t.co\/Y0mjmZBHW7","display_url":"pic.twitter.com\/Y0mjmZBHW7","expanded_url":"https:\/\/twitter.com\/ReutersBiz\/status\/1234474942407811076\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":800,"h":533,"resize":"fit"},"large":{"w":800,"h":533,"resize":"fit"}},"source_status_id":1234474942407811076,"source_status_id_str":"1234474942407811076","source_user_id":15110357,"source_user_id_str":"15110357"}]},"extended_entities":{"media":[{"id":1234474940730134528,"id_str":"1234474940730134528","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESG8awZXUAAbTxM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESG8awZXUAAbTxM.jpg","url":"https:\/\/t.co\/Y0mjmZBHW7","display_url":"pic.twitter.com\/Y0mjmZBHW7","expanded_url":"https:\/\/twitter.com\/ReutersBiz\/status\/1234474942407811076\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":800,"h":533,"resize":"fit"},"large":{"w":800,"h":533,"resize":"fit"}},"source_status_id":1234474942407811076,"source_status_id_str":"1234474942407811076","source_user_id":15110357,"source_user_id_str":"15110357"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":601389392,"id_str":"601389392","name":"Susan - Vermazen","screen_name":"SusanVermazen","location":"newton ma","description":"the - truth can be found. look for the story behind the story. retired photo editor - NY Magazine, Rolling Stone, Premiere, multi media The Boston Globe. Rower.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2819,"friends_count":2709,"listed_count":19,"created_at":"Wed - Jun 06 23:52:09 +0000 2012","favourites_count":336563,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":271316,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230873760082931715\/m1xMTlPy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230873760082931715\/m1xMTlPy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601389392\/1579372089","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:45:36 +0000 2020","id":1234474942407811076,"id_str":"1234474942407811076","text":"Goldman - Sachs halts all non-essential business travel: memo https:\/\/t.co\/O2hzHoM3bY - https:\/\/t.co\/Y0mjmZBHW7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/O2hzHoM3bY","expanded_url":"https:\/\/reut.rs\/2vnurtX","display_url":"reut.rs\/2vnurtX","indices":[60,83]}],"media":[{"id":1234474940730134528,"id_str":"1234474940730134528","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/ESG8awZXUAAbTxM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESG8awZXUAAbTxM.jpg","url":"https:\/\/t.co\/Y0mjmZBHW7","display_url":"pic.twitter.com\/Y0mjmZBHW7","expanded_url":"https:\/\/twitter.com\/ReutersBiz\/status\/1234474942407811076\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":800,"h":533,"resize":"fit"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234474940730134528,"id_str":"1234474940730134528","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/ESG8awZXUAAbTxM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESG8awZXUAAbTxM.jpg","url":"https:\/\/t.co\/Y0mjmZBHW7","display_url":"pic.twitter.com\/Y0mjmZBHW7","expanded_url":"https:\/\/twitter.com\/ReutersBiz\/status\/1234474942407811076\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":800,"h":533,"resize":"fit"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":15110357,"id_str":"15110357","name":"Reuters - Business","screen_name":"ReutersBiz","location":"Around the world","description":"Top - business news around the world. Join us @Reuters, @breakingviews, @ReutersGMF","url":"http:\/\/t.co\/PsQMvEFldh","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PsQMvEFldh","expanded_url":"http:\/\/reuters.com\/finance","display_url":"reuters.com\/finance","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2064104,"friends_count":241,"listed_count":23165,"created_at":"Fri - Jun 13 18:56:09 +0000 2008","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":203466,"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\/877263475034042368\/xbU9vTKw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877263475034042368\/xbU9vTKw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15110357\/1429124372","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":74,"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"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543980470274,"id_str":"1234518543980470274","text":"RT - @davidaxelrod: The health and safety of people comes first, of course, but - to the extent that the Coronavirus is top of the news, I wond\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidaxelrod","name":"David - Axelrod","id":244655353,"id_str":"244655353","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":472073937,"id_str":"472073937","name":"ESPERANZAOPPENHEIMER","screen_name":"EspeOppenheimer","location":"","description":"retired - teacher Early Intervention \/Special Education #resist #voteblue","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2459,"friends_count":2086,"listed_count":164,"created_at":"Mon - Jan 23 15:34:43 +0000 2012","favourites_count":152993,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":359189,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229053653635489793\/ddZwFTHQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229053653635489793\/ddZwFTHQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/472073937\/1484072351","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:23:02 +0000 2020","id":1234499464351670273,"id_str":"1234499464351670273","text":"The - health and safety of people comes first, of course, but to the extent that - the Coronavirus is top of the news,\u2026 https:\/\/t.co\/dXlX4JN9jV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dXlX4JN9jV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234499464351670273","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":244655353,"id_str":"244655353","name":"David - Axelrod","screen_name":"davidaxelrod","location":"","description":"Director, - @UChiPolitics. Senior Political Commentator @CNN. Author, Believer: My Forty - Years in Politics. Host of The Axe Files podcast.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1200595,"friends_count":744,"listed_count":11234,"created_at":"Sat - Jan 29 20:34:55 +0000 2011","favourites_count":162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025494480303149056\/TQxxSehL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025494480303149056\/TQxxSehL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244655353\/1578497657","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":489,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":60,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543925960704,"id_str":"1234518543925960704","text":"RT - @nonunadimeno: VIETATO LO SCIOPERO DEL #9MARZO per l''emergenza #coronavirus. - Saremo comunque nelle piazze in tutte le forme che saranno\u2026","truncated":false,"entities":{"hashtags":[{"text":"9MARZO","indices":[42,49]},{"text":"coronavirus","indices":[66,78]}],"symbols":[],"user_mentions":[{"screen_name":"nonunadimeno","name":"NonUnaDiMeno","id":775766232159191040,"id_str":"775766232159191040","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1019332135524675584,"id_str":"1019332135524675584","name":"Maria","screen_name":"2174Mari","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":35,"listed_count":0,"created_at":"Tue - Jul 17 21:24:54 +0000 2018","favourites_count":378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":749,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1145368583637278720\/osMuvyWK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145368583637278720\/osMuvyWK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1019332135524675584\/1534279173","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:22:12 +0000 2020","id":1234453953108115456,"id_str":"1234453953108115456","text":"VIETATO - LO SCIOPERO DEL #9MARZO per l''emergenza #coronavirus. Saremo comunque nelle - piazze in tutte le forme che sa\u2026 https:\/\/t.co\/6T1KfaTbVz","truncated":true,"entities":{"hashtags":[{"text":"9MARZO","indices":[24,31]},{"text":"coronavirus","indices":[48,60]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6T1KfaTbVz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234453953108115456","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":775766232159191040,"id_str":"775766232159191040","name":"NonUnaDiMeno","screen_name":"nonunadimeno","location":"Universo","description":"Contro - la violenza sulle donne, tutti i giorni.","url":"https:\/\/t.co\/mhMgN8rmIn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mhMgN8rmIn","expanded_url":"https:\/\/nonunadimeno.wordpress.com\/","display_url":"nonunadimeno.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21969,"friends_count":1474,"listed_count":106,"created_at":"Tue - Sep 13 18:40:57 +0000 2016","favourites_count":4179,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7697,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1099366498102071297\/stZzaVJ__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1099366498102071297\/stZzaVJ__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/775766232159191040\/1580675770","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":114,"favorite_count":150,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":114,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543871377408,"id_str":"1234518543871377408","text":"RT - @sporza_koers: Organisator RCS Sport bevestigt: Strade Bianche, Tirreno en - Milaan-Sanremo gaan door #coronavirus\nhttps:\/\/t.co\/3XowTTmzR2\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[103,115]}],"symbols":[],"user_mentions":[{"screen_name":"sporza_koers","name":"Sporza - \ud83d\udeb4","id":31713149,"id_str":"31713149","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/3XowTTmzR2","expanded_url":"https:\/\/sporza.be\/artikels\/organisator-rcs-bevestigt-strade-bianche-tirreno-en-milaan-sanremo-gaan-door~1583151924510\/","display_url":"sporza.be\/artikels\/organ\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"nl","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63678936,"id_str":"63678936","name":"Jeroen - van Diesen","screen_name":"jeroenvandiesen","location":"The Netherlands","description":"All - Blacks, Crusaders, Barbarians, Atlanta Braves, Bar\u00e7a fan | Brabander","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":167,"listed_count":22,"created_at":"Fri - Aug 07 09:55:51 +0000 2009","favourites_count":7188,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4721,"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\/3481200520\/9ed2fc6aa30153e6332e497e6ba0f7f4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3481200520\/9ed2fc6aa30153e6332e497e6ba0f7f4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63678936\/1356470428","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:32:48 +0000 2020","id":1234456623286030336,"id_str":"1234456623286030336","text":"Organisator - RCS Sport bevestigt: Strade Bianche, Tirreno en Milaan-Sanremo gaan door #coronavirus\u2026 - https:\/\/t.co\/3HI1gbgIJn","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[85,97]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3HI1gbgIJn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234456623286030336","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[99,122]}]},"metadata":{"iso_language_code":"nl","result_type":"recent"},"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,"user":{"id":31713149,"id_str":"31713149","name":"Sporza - \ud83d\udeb4","screen_name":"sporza_koers","location":"Brussels","description":"Alle - wielernieuws van @sporza. All about cycling on Sporza, Flemish public broadcaster - (VRT, Belgium)","url":"https:\/\/t.co\/p0QtbZbipP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p0QtbZbipP","expanded_url":"http:\/\/www.sporza.be\/cm\/sporza\/wielrennen","display_url":"sporza.be\/cm\/sporza\/wiel\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":108957,"friends_count":56,"listed_count":1452,"created_at":"Thu - Apr 16 10:16:25 +0000 2009","favourites_count":256,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":59924,"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\/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\/1001315010080059392\/26fLlDHZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1001315010080059392\/26fLlDHZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31713149\/1527566898","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":509,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},"is_quote_status":false,"retweet_count":81,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543821103105,"id_str":"1234518543821103105","text":"RT - @AmericaNewsroom: THE HEADLINER: @PressSec discusses the White House response - to Coronavirus #nine2noon https:\/\/t.co\/rNfCvxkcnE","truncated":false,"entities":{"hashtags":[{"text":"nine2noon","indices":[96,106]}],"symbols":[],"user_mentions":[{"screen_name":"AmericaNewsroom","name":"America''s - Newsroom","id":312800783,"id_str":"312800783","indices":[3,19]},{"screen_name":"PressSec","name":"Stephanie - Grisham","id":818927131883356161,"id_str":"818927131883356161","indices":[36,45]}],"urls":[],"media":[{"id":1234514392617799680,"id_str":"1234514392617799680","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234514392617799680\/img\/K7G4rihL3VtocKq7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234514392617799680\/img\/K7G4rihL3VtocKq7.jpg","url":"https:\/\/t.co\/rNfCvxkcnE","display_url":"pic.twitter.com\/rNfCvxkcnE","expanded_url":"https:\/\/twitter.com\/AmericaNewsroom\/status\/1234514913252560897\/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":1234514913252560897,"source_status_id_str":"1234514913252560897","source_user_id":312800783,"source_user_id_str":"312800783"}]},"extended_entities":{"media":[{"id":1234514392617799680,"id_str":"1234514392617799680","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234514392617799680\/img\/K7G4rihL3VtocKq7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234514392617799680\/img\/K7G4rihL3VtocKq7.jpg","url":"https:\/\/t.co\/rNfCvxkcnE","display_url":"pic.twitter.com\/rNfCvxkcnE","expanded_url":"https:\/\/twitter.com\/AmericaNewsroom\/status\/1234514913252560897\/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":1234514913252560897,"source_status_id_str":"1234514913252560897","source_user_id":312800783,"source_user_id_str":"312800783","video_info":{"aspect_ratio":[16,9],"duration_millis":207808,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234514392617799680\/vid\/1280x720\/69mcTYf3a5oghOHy.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234514392617799680\/vid\/480x270\/o3liSGmxCM_6tSci.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234514392617799680\/vid\/640x360\/p3l0mrYnvnDjWvnb.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234514392617799680\/pl\/JJwy0fh-Ce60Latu.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":312800783,"id_str":"312800783","name":"America''s - Newsroom","screen_name":"AmericaNewsroom","location":"New York, NY","description":"Live - on the FOX News Channel Every Weekday From 9-NOON EST! #AmericasNewsroom","url":"http:\/\/t.co\/TiDPxgo9pq","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/TiDPxgo9pq","expanded_url":"http:\/\/www.foxnews.com\/americasnewsroom","display_url":"foxnews.com\/americasnewsro\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":96323,"friends_count":341,"listed_count":801,"created_at":"Tue - Jun 07 17:52:42 +0000 2011","favourites_count":1216,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":34280,"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\/1006539417295687681\/CztfMnUb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1006539417295687681\/CztfMnUb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312800783\/1579518480","profile_link_color":"043D95","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2455824056,"id_str":"2455824056","name":"\ud83c\udf3aRobin\ud83c\udf3a","screen_name":"RZimms","location":"United - States","description":"We can''t help everyone, but everyone can help someone. - Ronald Reagan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9087,"friends_count":9147,"listed_count":84,"created_at":"Mon - Apr 21 02:11:17 +0000 2014","favourites_count":222788,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":132699,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/758093199923556353\/GYxI8jNj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/758093199923556353\/GYxI8jNj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2455824056\/1467902670","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:24:26 +0000 2020","id":1234514913252560897,"id_str":"1234514913252560897","text":"THE - HEADLINER: @PressSec discusses the White House response to Coronavirus #nine2noon - https:\/\/t.co\/rNfCvxkcnE","truncated":false,"entities":{"hashtags":[{"text":"nine2noon","indices":[75,85]}],"symbols":[],"user_mentions":[{"screen_name":"PressSec","name":"Stephanie - Grisham","id":818927131883356161,"id_str":"818927131883356161","indices":[15,24]}],"urls":[],"media":[{"id":1234514392617799680,"id_str":"1234514392617799680","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234514392617799680\/img\/K7G4rihL3VtocKq7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234514392617799680\/img\/K7G4rihL3VtocKq7.jpg","url":"https:\/\/t.co\/rNfCvxkcnE","display_url":"pic.twitter.com\/rNfCvxkcnE","expanded_url":"https:\/\/twitter.com\/AmericaNewsroom\/status\/1234514913252560897\/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":1234514392617799680,"id_str":"1234514392617799680","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1234514392617799680\/img\/K7G4rihL3VtocKq7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1234514392617799680\/img\/K7G4rihL3VtocKq7.jpg","url":"https:\/\/t.co\/rNfCvxkcnE","display_url":"pic.twitter.com\/rNfCvxkcnE","expanded_url":"https:\/\/twitter.com\/AmericaNewsroom\/status\/1234514913252560897\/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":207808,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234514392617799680\/vid\/1280x720\/69mcTYf3a5oghOHy.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234514392617799680\/vid\/480x270\/o3liSGmxCM_6tSci.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234514392617799680\/vid\/640x360\/p3l0mrYnvnDjWvnb.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234514392617799680\/pl\/JJwy0fh-Ce60Latu.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":312800783,"id_str":"312800783","name":"America''s - Newsroom","screen_name":"AmericaNewsroom","location":"New York, NY","description":"Live - on the FOX News Channel Every Weekday From 9-NOON EST! #AmericasNewsroom","url":"http:\/\/t.co\/TiDPxgo9pq","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/TiDPxgo9pq","expanded_url":"http:\/\/www.foxnews.com\/americasnewsroom","display_url":"foxnews.com\/americasnewsro\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":96323,"friends_count":341,"listed_count":801,"created_at":"Tue - Jun 07 17:52:42 +0000 2011","favourites_count":1216,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":34280,"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\/1006539417295687681\/CztfMnUb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1006539417295687681\/CztfMnUb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312800783\/1579518480","profile_link_color":"043D95","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":32,"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"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543791742976,"id_str":"1234518543791742976","text":"RT - @NTN24ve: Doctor Huniades Urbina dice que encargar a Delcy Rodr\u00edguez - del coronavirus \u201ces una burla\u201d para Venezuela https:\/\/t.co\/H1dMxpfu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NTN24ve","name":"NTN24 - Venezuela","id":200267797,"id_str":"200267797","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":756107119,"id_str":"756107119","name":"Mirian - barazarte","screen_name":"barazartemirian","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1308,"friends_count":1761,"listed_count":27,"created_at":"Tue - Aug 14 00:20:47 +0000 2012","favourites_count":34615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":106346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3701110279\/9b3bd921fca13a3b79e8f4f8421e15f0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3701110279\/9b3bd921fca13a3b79e8f4f8421e15f0_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:31:06 +0000 2020","id":1234486392241238016,"id_str":"1234486392241238016","text":"Doctor - Huniades Urbina dice que encargar a Delcy Rodr\u00edguez del coronavirus \u201ces - una burla\u201d para Venezuela https:\/\/t.co\/H1dMxpfuPU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H1dMxpfuPU","expanded_url":"http:\/\/bit.ly\/32KlpDb","display_url":"bit.ly\/32KlpDb","indices":[105,128]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":200267797,"id_str":"200267797","name":"NTN24 - Venezuela","screen_name":"NTN24ve","location":"Venezuela","description":"Cuenta - oficial de la plataforma informativa del canal @NTN24 dedicada a Venezuela, - s\u00edganos en FB, IG y YTB \/NTN24ve \/ FireChat NTN24VENEZUELA","url":"https:\/\/t.co\/aLULWWVfnd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aLULWWVfnd","expanded_url":"http:\/\/www.ntn24america.com\/","display_url":"ntn24america.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3486930,"friends_count":4636,"listed_count":5926,"created_at":"Fri - Oct 08 21:39:05 +0000 2010","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":359898,"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\/553700247189196800\/q2x7zRXw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553700247189196800\/q2x7zRXw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/200267797\/1519401501","profile_link_color":"3B94D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":979,"favorite_count":1175,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":979,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543741308936,"id_str":"1234518543741308936","text":"RT - @EmeraldRobinson: The ultimate cure for coronavirus: America First policies.\n\nCrucial - medicines must be made in the USA.\n\nOur borders mu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmeraldRobinson","name":"Emerald - Robinson \u271d\ufe0f","id":3932768472,"id_str":"3932768472","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":707771806480924672,"id_str":"707771806480924672","name":"StarCrossed","screen_name":"Messianic4POTUS","location":"Washington, - USA","description":"Messianic American Israeli. Served in IDF for 3yrs. Lived - in Israel 21yrs. Fluent in Hebrew. Trump is my @POTUS. Yeshua is my #Messiah. - #LockHerUp #MAGA \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/oyoqw1dlvN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oyoqw1dlvN","expanded_url":"https:\/\/displate.com\/gadi\/gadi''s-gallery","display_url":"displate.com\/gadi\/gadi''s-ga\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6506,"friends_count":7148,"listed_count":52,"created_at":"Thu - Mar 10 03:35:23 +0000 2016","favourites_count":107059,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":123712,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228225417678446594\/E_Mpvnhl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228225417678446594\/E_Mpvnhl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/707771806480924672\/1580951605","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:38:17 +0000 2020","id":1234518399109206018,"id_str":"1234518399109206018","text":"The - ultimate cure for coronavirus: America First policies.\n\nCrucial medicines - must be made in the USA.\n\nOur borders\u2026 https:\/\/t.co\/qZ4sGIFUpt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qZ4sGIFUpt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518399109206018","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3932768472,"id_str":"3932768472","name":"Emerald - Robinson \u271d\ufe0f","screen_name":"EmeraldRobinson","location":"Washington - D.C.","description":"@Newsmax White House Correspondent. Former @OANN. \"Politics - is downstream of culture & culture is downstream of religion.\" 127M Twitter - impressions in 2019.","url":"https:\/\/t.co\/pVMhoiuVK6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pVMhoiuVK6","expanded_url":"http:\/\/emeraldrobinson.com","display_url":"emeraldrobinson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":150381,"friends_count":12032,"listed_count":745,"created_at":"Sun - Oct 18 05:57:46 +0000 2015","favourites_count":13753,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1047149053677514754\/fbtPJUYI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1047149053677514754\/fbtPJUYI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3932768472\/1538494894","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":390,"favorite_count":1022,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":390,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543552610306,"id_str":"1234518543552610306","text":"RT - @MrMichaelSpicer: the room next door - President Trump and the Coronavirus - https:\/\/t.co\/LTYYYIYUMi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrMichaelSpicer","name":"Michael - Spicer","id":93222172,"id_str":"93222172","indices":[3,19]}],"urls":[],"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234458301368164352,"source_status_id_str":"1234458301368164352","source_user_id":93222172,"source_user_id_str":"93222172"}]},"extended_entities":{"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234458301368164352,"source_status_id_str":"1234458301368164352","source_user_id":93222172,"source_user_id_str":"93222172","video_info":{"aspect_ratio":[16,9],"duration_millis":137638,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/480x270\/8fmAAK02A6it9wjT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/640x360\/lSnahBMYahnylH8j.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/pl\/tL2aDEJGkHpos0BZ.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/1280x720\/y9-Yn9X6Q-PF7xSz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":237179,"friends_count":1730,"listed_count":713,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29226,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":389705011,"id_str":"389705011","name":"Rocky - Lum","screen_name":"RockyLum","location":"","description":"Knowledge = Strength. - This is not the time to sit out! Community engagement. Stay woke! #Chingatumuro","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":319,"friends_count":4920,"listed_count":13,"created_at":"Wed - Oct 12 21:30:31 +0000 2011","favourites_count":6039,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":80719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1030209285949714432\/WH_SDu58_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1030209285949714432\/WH_SDu58_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389705011\/1551281852","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:39:28 +0000 2020","id":1234458301368164352,"id_str":"1234458301368164352","text":"the - room next door - President Trump and the Coronavirus https:\/\/t.co\/LTYYYIYUMi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234457531797266432,"id_str":"1234457531797266432","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":1234457531797266432,"id_str":"1234457531797266432","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234457531797266432\/pu\/img\/1nf0mPIh1Tk0SC6L.jpg","url":"https:\/\/t.co\/LTYYYIYUMi","display_url":"pic.twitter.com\/LTYYYIYUMi","expanded_url":"https:\/\/twitter.com\/MrMichaelSpicer\/status\/1234458301368164352\/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":137638,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/480x270\/8fmAAK02A6it9wjT.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/640x360\/lSnahBMYahnylH8j.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/pl\/tL2aDEJGkHpos0BZ.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234457531797266432\/pu\/vid\/1280x720\/y9-Yn9X6Q-PF7xSz.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":93222172,"id_str":"93222172","name":"Michael - Spicer","screen_name":"MrMichaelSpicer","location":"Kent, London","description":"the - room next door man","url":"https:\/\/t.co\/zQJEK6QaIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zQJEK6QaIi","expanded_url":"http:\/\/www.michaelspicer.co.uk","display_url":"michaelspicer.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":237179,"friends_count":1730,"listed_count":713,"created_at":"Sat - Nov 28 17:19:58 +0000 2009","favourites_count":32694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":29226,"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\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016265693048655872\/SNWKkMs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93222172\/1530523615","profile_link_color":"661E1E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"302D2A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15228,"favorite_count":53875,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15228,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543531741184,"id_str":"1234518543531741184","text":"RT - @jeune_demoiseau: Pour lutter efficacement contre le Coronavirus le gouvernement - annule tous les grands rassemblements... sauf ceux qui\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeune_demoiseau","name":"Jeune - demoiseau \ud83c\uddf2\ud83c\uddeb","id":1177177497944961026,"id_str":"1177177497944961026","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1126878015198248962,"id_str":"1126878015198248962","name":"Kherrat - souyla","screen_name":"souyla","location":"","description":"Genereuse","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":21,"listed_count":0,"created_at":"Fri - May 10 15:53:50 +0000 2019","favourites_count":1243,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2223,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:56:17 +0000 2020","id":1234462530849923072,"id_str":"1234462530849923072","text":"Pour - lutter efficacement contre le Coronavirus le gouvernement annule tous les - grands rassemblements... sauf ceux q\u2026 https:\/\/t.co\/PrJhrzDLMu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PrJhrzDLMu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234462530849923072","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1177177497944961026,"id_str":"1177177497944961026","name":"Jeune - demoiseau \ud83c\uddf2\ud83c\uddeb","screen_name":"jeune_demoiseau","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":278,"listed_count":0,"created_at":"Thu - Sep 26 11:06:22 +0000 2019","favourites_count":4,"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\/1234776896858152960\/VX_D3RVi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234776896858152960\/VX_D3RVi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1177177497944961026\/1579887235","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":203,"favorite_count":1017,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":203,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543502381056,"id_str":"1234518543502381056","text":"RT - @erretti42: Procurato allarme: gli agenti di viaggio querelano cinque testate - per i titoli sul Coronavirus | infosannio\n\n Il Giornale, L\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"erretti42","name":"giuliana - sparano","id":1876212612,"id_str":"1876212612","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":389725831,"id_str":"389725831","name":"paolino","screen_name":"galby1961","location":"chi - sono?","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":230,"friends_count":38,"listed_count":1,"created_at":"Wed - Oct 12 22:11:38 +0000 2011","favourites_count":31763,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14076,"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\/1585460569\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1585460569\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389725831\/1357736354","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 19:29:39 +0000 2020","id":1234199137656201217,"id_str":"1234199137656201217","text":"Procurato - allarme: gli agenti di viaggio querelano cinque testate per i titoli sul Coronavirus - | infosannio\n\n Il Gi\u2026 https:\/\/t.co\/qFOMG4A5f9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qFOMG4A5f9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234199137656201217","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"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,"user":{"id":1876212612,"id_str":"1876212612","name":"giuliana - sparano","screen_name":"erretti42","location":"","description":"- Eh ! qu''aimes-tu - donc, extraordinaire \u00e9tranger ? - J''aime les nuages... les nuages qui - passent... l\u00e0-bas... l\u00e0-bas... les merveilleux nuages !\"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2441,"friends_count":2367,"listed_count":15,"created_at":"Tue - Sep 17 17:19:58 +0000 2013","favourites_count":87469,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":87651,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082377194494660608\/GxSLpf1U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082377194494660608\/GxSLpf1U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1876212612\/1581183117","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":125,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":72,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543489814528,"id_str":"1234518543489814528","text":"RT - @TPoppovic: tem que pesar o relacionamento assim: essa \u00e9 a pessoa com - quem eu quero estar nos pr\u00f3ximos cinco anos e passar o fim do mund\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TPoppovic","name":"teodero","id":1061216714501881857,"id_str":"1061216714501881857","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910317044838600705,"id_str":"910317044838600705","name":"anac","screen_name":"anacarvalhorc","location":"","description":"sangue - latino","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1273,"friends_count":913,"listed_count":5,"created_at":"Wed - Sep 20 01:37:51 +0000 2017","favourites_count":94255,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56495,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234229071636201472\/ak8Bzp54_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234229071636201472\/ak8Bzp54_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910317044838600705\/1571657155","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 13:52:27 +0000 2020","id":1234114280863289346,"id_str":"1234114280863289346","text":"tem - que pesar o relacionamento assim: essa \u00e9 a pessoa com quem eu quero estar - nos pr\u00f3ximos cinco anos e passar o fi\u2026 https:\/\/t.co\/xTptk00qBA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xTptk00qBA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234114280863289346","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1061216714501881857,"id_str":"1061216714501881857","name":"teodero","screen_name":"TPoppovic","location":"Sao - Paulo, Brazil","description":"Escrevo, dirijo e desenho no twitter","url":"https:\/\/t.co\/vf2WtvX7e3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vf2WtvX7e3","expanded_url":"https:\/\/youtu.be\/q0thzdqyJug","display_url":"youtu.be\/q0thzdqyJug","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1142,"friends_count":805,"listed_count":5,"created_at":"Sat - Nov 10 11:19:15 +0000 2018","favourites_count":4199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4640,"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\/1233337636032520194\/CFKFu1LR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233337636032520194\/CFKFu1LR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1061216714501881857\/1582707520","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10015,"favorite_count":34611,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":10015,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543305146369,"id_str":"1234518543305146369","text":"RT - @AlexandraRquez: pero tranquilos q no hay nuevos casos de coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlexandraRquez","name":"Alexandra.","id":221764185,"id_str":"221764185","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1014884646,"id_str":"1014884646","name":"Laura - \u2661","screen_name":"Mora99Laura","location":"","description":"Vivo en Barcelona - pero mi lugar est\u00e1 en Huesca \u2728","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":254,"friends_count":97,"listed_count":0,"created_at":"Sun - Dec 16 10:15:48 +0000 2012","favourites_count":1592,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4070,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"7DEDDA","profile_background_image_url":"http:\/\/abs.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\/1233452138044456960\/DZilKV4j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233452138044456960\/DZilKV4j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1014884646\/1582977257","profile_link_color":"FA14F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 13:12:19 +0000 2020","id":1234104177946746880,"id_str":"1234104177946746880","text":"pero - tranquilos q no hay nuevos casos de coronavirus https:\/\/t.co\/UvpyVLUefb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UvpyVLUefb","expanded_url":"https:\/\/twitter.com\/diariodeavisos\/status\/1234076490700148736","display_url":"twitter.com\/diariodeavisos\u2026","indices":[53,76]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221764185,"id_str":"221764185","name":"Alexandra.","screen_name":"AlexandraRquez","location":"Canarias.","description":"none - but ourselves can free our minds.","url":"https:\/\/t.co\/dg4psBPsJG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dg4psBPsJG","expanded_url":"http:\/\/instagram.com\/alexvhso","display_url":"instagram.com\/alexvhso","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":465,"friends_count":314,"listed_count":3,"created_at":"Wed - Dec 01 15:06:14 +0000 2010","favourites_count":12054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12329,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1140034414304464901\/lbWmthoq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140034414304464901\/lbWmthoq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/221764185\/1486489965","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234076490700148736,"quoted_status_id_str":"1234076490700148736","quoted_status":{"created_at":"Sun - Mar 01 11:22:18 +0000 2020","id":1234076490700148736,"id_str":"1234076490700148736","text":"\ud83d\udd34\ud83d\udd34Denuncian - una nueva agresi\u00f3n sexual en la \u00faltima noche del Carnaval de Santa - Cruz de Tenerife\u2026 https:\/\/t.co\/s6ZyLccksP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s6ZyLccksP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234076490700148736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[97,120]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41097292,"id_str":"41097292","name":"Diario - de Avisos","screen_name":"diariodeavisos","location":"Santa Cruz de Tenerife, - Espa\u00f1a","description":"El portal de noticias y entretenimiento l\u00edder - en Canarias. En papel, el decano de la prensa, desde 1890 en tu kiosco","url":"https:\/\/t.co\/ChmDOxdOyw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ChmDOxdOyw","expanded_url":"http:\/\/www.diariodeavisos.com","display_url":"diariodeavisos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":96436,"friends_count":51,"listed_count":937,"created_at":"Tue - May 19 11:28:04 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":130140,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"104C88","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143450680478380033\/L4fFXO5o_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143450680478380033\/L4fFXO5o_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41097292\/1578479429","profile_link_color":"8C1108","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6E6E6","profile_text_color":"242424","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":275,"favorite_count":224,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":5605,"favorite_count":14870,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1234076490700148736,"quoted_status_id_str":"1234076490700148736","retweet_count":5605,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543166853120,"id_str":"1234518543166853120","text":"RT - @HamdiAlkhshali: #Qatar\u2019s Ministry of Health announced Monday the registration - of 4 new infections with the Novel #Coronavirus for 2 Qat\u2026","truncated":false,"entities":{"hashtags":[{"text":"Qatar","indices":[20,26]},{"text":"Coronavirus","indices":[117,129]}],"symbols":[],"user_mentions":[{"screen_name":"HamdiAlkhshali","name":"Hamdi","id":40503861,"id_str":"40503861","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1157681557924122624,"id_str":"1157681557924122624","name":"official - story","screen_name":"officialstory6","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":1920,"listed_count":1,"created_at":"Sat - Aug 03 15:56:06 +0000 2019","favourites_count":21351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17884,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1160281367684550656\/sHeY5u7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1160281367684550656\/sHeY5u7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1157681557924122624\/1573843364","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:01:56 +0000 2020","id":1234509252045262855,"id_str":"1234509252045262855","text":"#Qatar\u2019s - Ministry of Health announced Monday the registration of 4 new infections with - the Novel #Coronavirus for 2\u2026 https:\/\/t.co\/nfJqepTm62","truncated":true,"entities":{"hashtags":[{"text":"Qatar","indices":[0,6]},{"text":"Coronavirus","indices":[97,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nfJqepTm62","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234509252045262855","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40503861,"id_str":"40503861","name":"Hamdi","screen_name":"HamdiAlkhshali","location":"","description":"CNN - International Field & News Desk Producer. Winner of 6 awards: 3 Emmy, 2 Peabody - & 1 Murrow. Opinions here are my own & retweets not an endorsement.","url":"http:\/\/t.co\/rseRri9yea","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/rseRri9yea","expanded_url":"http:\/\/edition.cnn.com\/","display_url":"edition.cnn.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3116,"friends_count":228,"listed_count":172,"created_at":"Sat - May 16 17:27:42 +0000 2009","favourites_count":407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11437,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2567357177\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2567357177\/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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":41,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":29,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518543133270017,"id_str":"1234518543133270017","text":"me - arriving in Italy giving absolutely no fucks about the coronavirus cause I - know how to wash my hands: https:\/\/t.co\/kAlBWwtn8Y","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kAlBWwtn8Y","expanded_url":"https:\/\/twitter.com\/monaejjass\/status\/1233034887831134208","display_url":"twitter.com\/monaejjass\/sta\u2026","indices":[105,128]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164156379,"id_str":"164156379","name":"Jaymae - \u10e6","screen_name":"JTayl0r_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1467,"friends_count":159,"listed_count":12,"created_at":"Thu - Jul 08 04:57:36 +0000 2010","favourites_count":56814,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":55270,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E61ECF","profile_background_image_url":"http:\/\/abs.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\/1189571372810493952\/2Jt6U458_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189571372810493952\/2Jt6U458_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164156379\/1534469639","profile_link_color":"F01390","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"6B0285","profile_text_color":"C730C7","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233034887831134208,"quoted_status_id_str":"1233034887831134208","quoted_status":{"created_at":"Thu - Feb 27 14:23:20 +0000 2020","id":1233034887831134208,"id_str":"1233034887831134208","text":"Bomboclaat - https:\/\/t.co\/BKpdNTHweJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233034828263698435,"id_str":"1233034828263698435","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233034828263698435\/pu\/img\/1181wz2y1hQ5YFkH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233034828263698435\/pu\/img\/1181wz2y1hQ5YFkH.jpg","url":"https:\/\/t.co\/BKpdNTHweJ","display_url":"pic.twitter.com\/BKpdNTHweJ","expanded_url":"https:\/\/twitter.com\/monaejjass\/status\/1233034887831134208\/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":1233034828263698435,"id_str":"1233034828263698435","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233034828263698435\/pu\/img\/1181wz2y1hQ5YFkH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1233034828263698435\/pu\/img\/1181wz2y1hQ5YFkH.jpg","url":"https:\/\/t.co\/BKpdNTHweJ","display_url":"pic.twitter.com\/BKpdNTHweJ","expanded_url":"https:\/\/twitter.com\/monaejjass\/status\/1233034887831134208\/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":3367,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233034828263698435\/pu\/pl\/h6B8qfYl9rpogsX1.m3u8?tag=10"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233034828263698435\/pu\/vid\/640x640\/H_IgdSXVOYTPKCo8.mp4?tag=10"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233034828263698435\/pu\/vid\/320x320\/Ulse6cJgDR0dWO6s.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1233034828263698435\/pu\/vid\/480x480\/8kSs0LkR11gWML0l.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1141498570157240320,"id_str":"1141498570157240320","name":"Bootylicious - Bubblegum","screen_name":"monaejjass","location":"THE CRIB, FL","description":"Bonita - Applebum.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12118,"friends_count":11135,"listed_count":7,"created_at":"Thu - Jun 20 00:10:41 +0000 2019","favourites_count":34946,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16548,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216674824313081857\/CzgBz5z__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216674824313081857\/CzgBz5z__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1141498570157240320\/1580575271","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2616,"favorite_count":20503,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"retweet_count":2,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542898401280,"id_str":"1234518542898401280","text":"RT - @TeaPainUSA: When the feller that''s told over 16,000 lies says you''re gonna - be \"fine.\"\n\nhttps:\/\/t.co\/iEkOL5pSTa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TeaPainUSA","name":"Tea - Pain","id":2421067430,"id_str":"2421067430","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/iEkOL5pSTa","expanded_url":"https:\/\/www.rawstory.com\/2020\/03\/nobody-believes-you-trump-ripped-for-spreading-false-hope-about-coronavirus-cure\/","display_url":"rawstory.com\/2020\/03\/nobody\u2026","indices":[91,114]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192220938,"id_str":"192220938","name":"Marilyn - J-W","screen_name":"marjowil5775","location":"Detroit, MI","description":"Full-time - employed writer, wife, mom of 20-year-old, and liberal s-f geek all growed - up. Wonder Woman and Princess Leia are my role models. #Resist #FBR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7593,"friends_count":8511,"listed_count":22,"created_at":"Sat - Sep 18 14:38:10 +0000 2010","favourites_count":119537,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104236,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F4CF89","profile_background_image_url":"http:\/\/abs.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\/876115795545337857\/kl-3zDRz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876115795545337857\/kl-3zDRz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192220938\/1497717134","profile_link_color":"7D9E67","profile_sidebar_border_color":"335E59","profile_sidebar_fill_color":"538062","profile_text_color":"B5B46E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:59:58 +0000 2020","id":1234478560011784193,"id_str":"1234478560011784193","text":"When - the feller that''s told over 16,000 lies says you''re gonna be \"fine.\"\n\nhttps:\/\/t.co\/iEkOL5pSTa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iEkOL5pSTa","expanded_url":"https:\/\/www.rawstory.com\/2020\/03\/nobody-believes-you-trump-ripped-for-spreading-false-hope-about-coronavirus-cure\/","display_url":"rawstory.com\/2020\/03\/nobody\u2026","indices":[75,98]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2421067430,"id_str":"2421067430","name":"Tea - Pain","screen_name":"TeaPainUSA","location":"Gizzard Ridge, AR","description":"Democracy - Savage - Born Thomas Elmer Addison Pain - July 4th, 1976","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":544143,"friends_count":125329,"listed_count":3167,"created_at":"Mon - Mar 31 21:05:45 +0000 2014","favourites_count":218805,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82916,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"7A0718","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\/902529867110952961\/TWQ0wJZ9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/902529867110952961\/TWQ0wJZ9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2421067430\/1557519694","profile_link_color":"0084B4","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":382,"favorite_count":996,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":382,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542877327360,"id_str":"1234518542877327360","text":"RT - @HKrassenstein: There are 24 cases of Coronavirus in Canada\n\nThere are 5 - case of Coronavirus in Mexico\n\nTrump is considering shutting do\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HKrassenstein","name":"Ms. - Krassenstein","id":963790885937995777,"id_str":"963790885937995777","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":843187283767545856,"id_str":"843187283767545856","name":"KeepResisting","screen_name":"KeepResistng","location":"Washington, - DC and London","description":"an ardent resistor, at least until Democracy, - civility and decency is restored. America was already great. #ImpeachandRemovetRumpNow","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":240,"friends_count":698,"listed_count":1,"created_at":"Sat - Mar 18 19:48:08 +0000 2017","favourites_count":7162,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4930,"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\/843364745512194048\/aVHuo7wv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/843364745512194048\/aVHuo7wv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/843187283767545856\/1489933016","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:59:01 +0000 2020","id":1234508519203856385,"id_str":"1234508519203856385","text":"There - are 24 cases of Coronavirus in Canada\n\nThere are 5 case of Coronavirus in - Mexico\n\nTrump is considering shutti\u2026 https:\/\/t.co\/GGkgkkvNiC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GGkgkkvNiC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234508519203856385","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":963790885937995777,"id_str":"963790885937995777","name":"Ms. - Krassenstein","screen_name":"HKrassenstein","location":"Fort Myers, FL","description":"Mother - of two awesome kids. \nWife of a Krassenstein brother :)\n#Resist\nEmail: - krassensteinmail@protonmail.com\nHusband''s FB: https:\/\/t.co\/Xxw3zH00D1","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/Xxw3zH00D1","expanded_url":"http:\/\/facebook.com\/Krassensteins","display_url":"facebook.com\/Krassensteins","indices":[124,147]}]}},"protected":false,"followers_count":31975,"friends_count":2579,"listed_count":105,"created_at":"Wed - Feb 14 15:03:48 +0000 2018","favourites_count":504,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2050,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1187004398720954368\/O_J7exRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1187004398720954368\/O_J7exRl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/963790885937995777\/1571864027","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":451,"favorite_count":1232,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":451,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542772559873,"id_str":"1234518542772559873","text":"RT - @RockinnrobinO: It\u2019s here\u203c\ufe0f I am a high-risk patient this is - making me so nervous they\u2019re not giving us enough information \u203c\ufe0f\ud83e\udd2c\ud83d\ude21Florida\u2019s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RockinnrobinO","name":"REBEL - ROBIN \u2122\ufe0f","id":2645685851,"id_str":"2645685851","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370135213,"id_str":"370135213","name":"Hardin","screen_name":"hcextrak","location":"Indy","description":"Christian, Husband, - Father, Retired Journeyman,Bassman,Pitt fan, union member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7813,"friends_count":7868,"listed_count":105,"created_at":"Thu - Sep 08 14:34:30 +0000 2011","favourites_count":81424,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":114109,"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\/2815667076\/61f8dd911389b5a90b63c9d94685913f_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2815667076\/61f8dd911389b5a90b63c9d94685913f_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":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:54:31 +0000 2020","id":1234507386125201408,"id_str":"1234507386125201408","text":"It\u2019s - here\u203c\ufe0f I am a high-risk patient this is making me so nervous they\u2019re - not giving us enough information \u203c\ufe0f\ud83e\udd2c\ud83d\ude21Flor\u2026 - https:\/\/t.co\/H5EKHIczdn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H5EKHIczdn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234507386125201408","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2645685851,"id_str":"2645685851","name":"REBEL - ROBIN \u2122\ufe0f","screen_name":"RockinnrobinO","location":"Boston ~The - Devils Sandbox-FLA","description":"Hey Hey Hey I was born a REBEL ~Democrat~Activist~Hippy - \ud83d\udeabDM #PTSD #StonerFam #ProChoice #ClimateChange #Gunsense #ERA #AllLivesMatter - #wtp2020 #RESIST \ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31368,"friends_count":31477,"listed_count":6,"created_at":"Fri - Jun 27 02:32:07 +0000 2014","favourites_count":33001,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15925,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1043892615047974912\/rhIGwUDO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1043892615047974912\/rhIGwUDO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2645685851\/1560525641","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":11,"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"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542717943808,"id_str":"1234518542717943808","text":"Coronavirus - : comment faire son gel hydroalcoolique soi-m\u00eame ? https:\/\/t.co\/KBxJYnenOt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KBxJYnenOt","expanded_url":"https:\/\/www.rtl.fr\/actu\/debats-societe\/coronavirus-comment-faire-son-gel-hydroalcoolique-soi-meme-7800186599","display_url":"rtl.fr\/actu\/debats-so\u2026","indices":[63,86]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":937033363927552000,"id_str":"937033363927552000","name":"Marmotte74\ud83c\udfde","screen_name":"Marmotte737475","location":"Savoie - \/ Haute-Savoie","description":"Joyeuse locavore, sauvons l''agriculture & - commerce de proximit\u00e9, actu de l''assiette et locale ! \u2764#chartreuse - \ud83c\udf78\ud83c\udfd4 #labouffecestlavie -French Alps-Swiss Alps \ud83d\udc8d","url":"https:\/\/t.co\/MOmpr5FSNb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MOmpr5FSNb","expanded_url":"https:\/\/instagram.com\/marmotte737475?igshid=4xtw3pq1mtic","display_url":"instagram.com\/marmotte737475\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":210,"listed_count":2,"created_at":"Sat - Dec 02 18:58:57 +0000 2017","favourites_count":9409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3737,"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\/1226947198019145731\/gurPruyD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226947198019145731\/gurPruyD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/937033363927552000\/1564513260","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"},"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"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542684491789,"id_str":"1234518542684491789","text":"RT - @JeremyKonyndyk: Trump wanted to calm markets, avoid threats to his re-elex, - and keep the disease out of the country. \n\nHe and his team\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JeremyKonyndyk","name":"Jeremy - Konyndyk","id":398172747,"id_str":"398172747","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48945308,"id_str":"48945308","name":"A''J''ent - 077","screen_name":"FreeBra1n","location":"221B Baker St, Puerto Rico USA","description":"\ud83e\udd88 - Objective specimen. Science dude. Opinionated, but ready to DEBATE, when it - counts. Anti-injustice. FAV own tweets -*Archive| Equality for \ud83c\uddf5\ud83c\uddf7PR - \ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1590,"friends_count":2118,"listed_count":53,"created_at":"Sat - Jun 20 06:30:41 +0000 2009","favourites_count":30248,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72728,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"010F01","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1177687181038620672\/DllAkFZi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1177687181038620672\/DllAkFZi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48945308\/1348713831","profile_link_color":"225914","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D4CCD9","profile_text_color":"292629","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 18:14:06 +0000 2020","id":1234180126830665730,"id_str":"1234180126830665730","text":"Trump - wanted to calm markets, avoid threats to his re-elex, and keep the disease - out of the country. \n\nHe and his t\u2026 https:\/\/t.co\/8VyKMDGpDV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8VyKMDGpDV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234180126830665730","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234180125840826368,"in_reply_to_status_id_str":"1234180125840826368","in_reply_to_user_id":398172747,"in_reply_to_user_id_str":"398172747","in_reply_to_screen_name":"JeremyKonyndyk","user":{"id":398172747,"id_str":"398172747","name":"Jeremy - Konyndyk","screen_name":"JeremyKonyndyk","location":"Washington DC","description":"Dad, - baker, beer snob. Humanitarian aid & pandemic prep @cgdev. Teach @Georgetownsfs. - Former @USAID @theOFDA chief 2013-16.\n\nViews solely mine.\n\n\ud83c\udfca\u200d\u2642\ufe0f\ud83d\udeb4\u200d\u2642\ufe0f\ud83c\udfc3\u200d\u2642\ufe0f","url":"https:\/\/t.co\/iR60i7BuaP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iR60i7BuaP","expanded_url":"https:\/\/www.cgdev.org\/expert\/jeremy-konyndyk","display_url":"cgdev.org\/expert\/jeremy-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":30415,"friends_count":362,"listed_count":813,"created_at":"Tue - Oct 25 17:44:25 +0000 2011","favourites_count":5217,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28302,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146508440883335169\/UPEhw2WS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146508440883335169\/UPEhw2WS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398172747\/1543551476","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":900,"favorite_count":2941,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":900,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542596366337,"id_str":"1234518542596366337","text":"RT - @PressSec: In today\u2019s briefing on the #coronavirus @realDonaldTrump cautioned - the media & politicians from inciting panic. Risk to Ameri\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[41,53]}],"symbols":[],"user_mentions":[{"screen_name":"PressSec","name":"Stephanie - Grisham","id":818927131883356161,"id_str":"818927131883356161","indices":[3,12]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[54,70]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1179475998129168384,"id_str":"1179475998129168384","name":"dawn - hartness","screen_name":"dawnhartness2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":77,"listed_count":0,"created_at":"Wed - Oct 02 19:19:46 +0000 2019","favourites_count":2280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4523,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 19:17:54 +0000 2020","id":1233833792680407041,"id_str":"1233833792680407041","text":"In - today\u2019s briefing on the #coronavirus @realDonaldTrump cautioned the media - & politicians from inciting panic. Ris\u2026 https:\/\/t.co\/ZZPKgVyJ2l","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[27,39]}],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[40,56]}],"urls":[{"url":"https:\/\/t.co\/ZZPKgVyJ2l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233833792680407041","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818927131883356161,"id_str":"818927131883356161","name":"Stephanie - Grisham","screen_name":"PressSec","location":"Washington, D.C.","description":"@WhiteHouse - Press Secretary. Proudly representing @POTUS Trump''s Administration. Tweets - may be archived: https:\/\/t.co\/eVVzoBb3Zr.","url":"https:\/\/t.co\/wyOVgSLgBV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wyOVgSLgBV","expanded_url":"http:\/\/www.WhiteHouse.gov","display_url":"WhiteHouse.gov","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/eVVzoBb3Zr","expanded_url":"http:\/\/wh.gov\/privacy","display_url":"wh.gov\/privacy","indices":[105,128]}]}},"protected":false,"followers_count":4282460,"friends_count":293,"listed_count":9416,"created_at":"Tue - Jan 10 21:06:57 +0000 2017","favourites_count":701,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":3355,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146507396354924552\/ZCFExjL0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146507396354924552\/ZCFExjL0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818927131883356161\/1562183587","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6902,"favorite_count":25338,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6902,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542533480448,"id_str":"1234518542533480448","text":"Must - read from @matthewherper: How #coronavirus\n#COVID19 exposes our health care - system\u2019s weaknesses. \nhttps:\/\/t.co\/blV87ZHXUY via @statnews","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[35,47]},{"text":"COVID19","indices":[48,56]}],"symbols":[],"user_mentions":[{"screen_name":"matthewherper","name":"Matthew - Herper","id":44438256,"id_str":"44438256","indices":[15,29]},{"screen_name":"statnews","name":"STAT","id":3290364847,"id_str":"3290364847","indices":[131,140]}],"urls":[{"url":"https:\/\/t.co\/blV87ZHXUY","expanded_url":"http:\/\/bit.ly\/2TeA06K","display_url":"bit.ly\/2TeA06K","indices":[103,126]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":327449246,"id_str":"327449246","name":"Rick - Berke","screen_name":"rickberke","location":"Boston, MA","description":"Co-founder, - Exec Editor, STAT, formerly NYT, Politico","url":"https:\/\/t.co\/D5aWCDfvau","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/D5aWCDfvau","expanded_url":"https:\/\/www.statnews.com\/","display_url":"statnews.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7862,"friends_count":2003,"listed_count":308,"created_at":"Fri - Jul 01 15:49:42 +0000 2011","favourites_count":5263,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8237,"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\/709765009211981824\/vMOUpjC__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/709765009211981824\/vMOUpjC__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"},"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":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542424461313,"id_str":"1234518542424461313","text":"RT - @keigh_whyte: We prayed about the coronavirus today at church...a very global - audience...with hands lifted up across the world\n\nWatch th\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"keigh_whyte","name":"Maame - Fowaa","id":3019920162,"id_str":"3019920162","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4579369779,"id_str":"4579369779","name":"DELA","screen_name":"anthonybrain_gh","location":"","description":"#Madrid. - #Manutd. \/\/self control is a strength. \/\/ \ud83d\udc49 I''m a music freak. - \/\/@Citi973 n @CitiTVGH Viciado. Poultry Farmer. Project Manager.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2237,"friends_count":2427,"listed_count":35,"created_at":"Wed - Dec 23 14:46:47 +0000 2015","favourites_count":128594,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":57467,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227727949249511424\/y0ILocd6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227727949249511424\/y0ILocd6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4579369779\/1569001058","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 20:46:42 +0000 2020","id":1234218528997244930,"id_str":"1234218528997244930","text":"We - prayed about the coronavirus today at church...a very global audience...with - hands lifted up across the world\n\nW\u2026 https:\/\/t.co\/VENQ8Req8H","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VENQ8Req8H","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234218528997244930","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3019920162,"id_str":"3019920162","name":"Maame - Fowaa","screen_name":"keigh_whyte","location":"London, England","description":"GOD||\ud83c\uddec\ud83c\udded","url":"https:\/\/t.co\/R5R2743rGi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/R5R2743rGi","expanded_url":"http:\/\/maamefowaa.wordpress.com","display_url":"maamefowaa.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":606,"friends_count":227,"listed_count":1,"created_at":"Sat - Feb 14 16:55:28 +0000 2015","favourites_count":1339,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1650,"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\/1229923024368996352\/3piE-xhY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229923024368996352\/3piE-xhY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3019920162\/1580185735","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":123,"favorite_count":472,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":123,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542424215554,"id_str":"1234518542424215554","text":"Coronavirus - feat. E-Bola","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138667168,"id_str":"138667168","name":"\ud83c\uddf2\ud83c\uddfd - \u03a3L \u0394LT\u03a3\u00d1\u03a9 \ud83c\uddfa\ud83c\uddf8","screen_name":"zwiitt","location":"Alta - California, Nueva Espa\u00f1a.","description":"Mi vida es la parodia. #Jalostotitl\u00e1n - #Jalisco","url":"https:\/\/t.co\/zGKLg3xEE6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zGKLg3xEE6","expanded_url":"http:\/\/xn--jalostotitlnjaliscomxico-v8b1t.com","display_url":"jalostotitl\u00e1njaliscom\u00e9xico.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19310,"friends_count":256,"listed_count":75,"created_at":"Fri - Apr 30 06:19:30 +0000 2010","favourites_count":132409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29676,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233841798033788928\/jzRmzZRm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233841798033788928\/jzRmzZRm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138667168\/1458325069","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"in"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542306775040,"id_str":"1234518542306775040","text":"RT - @ewarren: My new plan for coronavirus response:\n1. Ensure every American - can get all recommended care for coronavirus for free.\n2. Creat\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2945425796,"id_str":"2945425796","name":"Cindi - Harris \ud83d\uddfd","screen_name":"cindimharris1","location":"Salem, OR","description":"... - to thine own self be true...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":247,"friends_count":702,"listed_count":3,"created_at":"Sat - Dec 27 19:32:06 +0000 2014","favourites_count":217100,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31016,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233825162736226305\/c3wkga5O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233825162736226305\/c3wkga5O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2945425796\/1583208192","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:05:17 +0000 2020","id":1234510093963624448,"id_str":"1234510093963624448","text":"My - new plan for coronavirus response:\n1. Ensure every American can get all recommended - care for coronavirus for fre\u2026 https:\/\/t.co\/6Afxl67CH4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6Afxl67CH4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510093963624448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357606935,"id_str":"357606935","name":"Elizabeth - Warren","screen_name":"ewarren","location":"Massachusetts","description":"U.S. - Senator, former teacher, and candidate for president. Wife, mom (Amelia, Alex, - Bailey, @CFPB), grandmother, and Okie. She\/her. Official campaign account.","url":"https:\/\/t.co\/5jpXuSnwli","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5jpXuSnwli","expanded_url":"http:\/\/ewar.ren\/chip-in","display_url":"ewar.ren\/chip-in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3831315,"friends_count":521,"listed_count":15758,"created_at":"Thu - Aug 18 16:43:48 +0000 2011","favourites_count":116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9199,"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\/1215406626049413121\/LiVKh64l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215406626049413121\/LiVKh64l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357606935\/1578610497","profile_link_color":"232444","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"7DA6D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5538,"favorite_count":22072,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5538,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542227329025,"id_str":"1234518542227329025","text":"RT - @no_silenced: JUST IN: Pocahontas lays out her plan for CoronaVirus\n\nHer - proposal is to give \u2018free\u2019 testing to anybody who wants it....P\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"no_silenced","name":"\u2b50\ufe0f\u2b50\ufe0fRooster\u2b50\ufe0f\u2b50\ufe0f","id":1092086942198452224,"id_str":"1092086942198452224","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241007092,"id_str":"3241007092","name":"\ud83d\udda4\u2764Christine\ud83d\udc8b#Winning","screen_name":"USAloveGOD","location":"New - York, USA","description":"No Trains 4Me\nFB: @SeanHannity @GenFlynn @KayaJones - @ScottBaio @DineshDSouza @RitaCosby @ChanelRion @StephMHamill @paulsperry_ - @MichelleMakori @DavidJHarrisJr","url":"https:\/\/t.co\/IxLjEB2zlE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IxLjEB2zlE","expanded_url":"http:\/\/WhiteHouse.gov","display_url":"WhiteHouse.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90742,"friends_count":74212,"listed_count":108,"created_at":"Thu - May 07 19:45:24 +0000 2015","favourites_count":192669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":202767,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234639336898953218\/vdeux7LI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234639336898953218\/vdeux7LI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3241007092\/1528599981","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:38:14 +0000 2020","id":1234503288222937088,"id_str":"1234503288222937088","text":"JUST - IN: Pocahontas lays out her plan for CoronaVirus\n\nHer proposal is to give - \u2018free\u2019 testing to anybody who wants\u2026 https:\/\/t.co\/F1zvAnH5Z1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/F1zvAnH5Z1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503288222937088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1092086942198452224,"id_str":"1092086942198452224","name":"\u2b50\ufe0f\u2b50\ufe0fRooster\u2b50\ufe0f\u2b50\ufe0f","screen_name":"no_silenced","location":"","description":"Trump - Supporter....I \u2764\ufe0f \ud83c\uddfa\ud83c\uddf8 \n\nFollowed by \ud83d\udc49 - @Pam_sands.....My Bestie...\u2665\ufe0f\n\nFollowed by \ud83d\udc49@JulietKnows1....\u2665\ufe0f\u2665\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80984,"friends_count":76444,"listed_count":49,"created_at":"Sun - Feb 03 15:46:31 +0000 2019","favourites_count":268404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":104432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211850149158215681\/6R_L2FwF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211850149158215681\/6R_L2FwF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1092086942198452224\/1571715727","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":805,"favorite_count":1051,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":805,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542160056324,"id_str":"1234518542160056324","text":"RT - @williamlegate: @heckyessica @thomaschattwill I\u2019m a Christian & they - deserve to be mocked. Prayer shouldn\u2019t be used as a political prop,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"williamlegate","name":"William - LeGate \ud83e\udde2","id":38029205,"id_str":"38029205","indices":[3,17]},{"screen_name":"heckyessica","name":"Jessica - Fletcher","id":845689249,"id_str":"845689249","indices":[19,31]},{"screen_name":"thomaschattwill","name":"Thomas - Chatterton Williams \ud83c\udf0d \ud83c\udfa7","id":133033883,"id_str":"133033883","indices":[32,48]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38133178,"id_str":"38133178","name":"Rosemary","screen_name":"nitenurse2","location":"everywhere - but somewhere","description":"I am a child of God, a mother of two, a lover - of one, a friend to many, and a helper to all I can! #Resist #tRumpisatraitor\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6028,"friends_count":5348,"listed_count":15,"created_at":"Wed - May 06 07:11:31 +0000 2009","favourites_count":274708,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":198876,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/969266509036994561\/Yb1wdxaU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969266509036994561\/Yb1wdxaU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38133178\/1519926120","profile_link_color":"0022FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF5CA1","profile_text_color":"FFAF00","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:04:37 +0000 2020","id":1234479730306322432,"id_str":"1234479730306322432","text":"@heckyessica - @thomaschattwill I\u2019m a Christian & they deserve to be mocked. Prayer - shouldn\u2019t be used as a political\u2026 https:\/\/t.co\/uUWLgWaaGw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heckyessica","name":"Jessica - Fletcher","id":845689249,"id_str":"845689249","indices":[0,12]},{"screen_name":"thomaschattwill","name":"Thomas - Chatterton Williams \ud83c\udf0d \ud83c\udfa7","id":133033883,"id_str":"133033883","indices":[13,29]}],"urls":[{"url":"https:\/\/t.co\/uUWLgWaaGw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234479730306322432","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234308693115752449,"in_reply_to_status_id_str":"1234308693115752449","in_reply_to_user_id":845689249,"in_reply_to_user_id_str":"845689249","in_reply_to_screen_name":"heckyessica","user":{"id":38029205,"id_str":"38029205","name":"William - LeGate \ud83e\udde2","screen_name":"williamlegate","location":"Los Angeles, - CA","description":"Self-made American entrepreneur \u2022 hacker\/tinkerer - \u2022 Thiel Fellow \u2022 featured in WaPo, NYT, Fox News, etc \u2022 DM - for biz\/press inquiries \u2022 views are my own","url":"https:\/\/t.co\/ss4sPiwpPS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ss4sPiwpPS","expanded_url":"https:\/\/prediqt.everipedia.org\/","display_url":"prediqt.everipedia.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":139107,"friends_count":4243,"listed_count":1153,"created_at":"Tue - May 05 21:46:23 +0000 2009","favourites_count":478904,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":82211,"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\/1175922529350766592\/08lOq7dL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1175922529350766592\/08lOq7dL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38029205\/1579055116","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":314,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542034391045,"id_str":"1234518542034391045","text":"RT - @eldiarioes: Dado de alta el primer paciente confirmado por coronavirus en - Andaluc\u00eda https:\/\/t.co\/pkFdGJ1dKy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eldiarioes","name":"eldiario.es","id":535707261,"id_str":"535707261","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/pkFdGJ1dKy","expanded_url":"https:\/\/www.eldiario.es\/andalucia\/Dado-paciente-confirmado-coronavirus-Andalucia_0_1001600281.html","display_url":"eldiario.es\/andalucia\/Dado\u2026","indices":[88,111]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":311691572,"id_str":"311691572","name":"Carlos - \ud83c\uddea\ud83c\uddf8\ud83c\uddea\ud83c\uddf8\ud83c\uddea\ud83c\uddf8\ud83d\udc9c\ud83d\udc9c\ud83d\udc9c","screen_name":"manssiniuno","location":"Comunidad - de Madrid, Espa\u00f1a","description":"Buscando la Revoluci\u00f3n para derribar - el Sistema y crear una Democracia mas Participativa.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":640,"friends_count":1072,"listed_count":6,"created_at":"Sun - Jun 05 21:57:11 +0000 2011","favourites_count":37888,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":91273,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2186753215\/32pFOJOL_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2186753215\/32pFOJOL_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/311691572\/1377866726","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:00:00 +0000 2020","id":1234508765761806336,"id_str":"1234508765761806336","text":"Dado - de alta el primer paciente confirmado por coronavirus en Andaluc\u00eda https:\/\/t.co\/pkFdGJ1dKy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pkFdGJ1dKy","expanded_url":"https:\/\/www.eldiario.es\/andalucia\/Dado-paciente-confirmado-coronavirus-Andalucia_0_1001600281.html","display_url":"eldiario.es\/andalucia\/Dado\u2026","indices":[72,95]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":535707261,"id_str":"535707261","name":"eldiario.es","screen_name":"eldiarioes","location":"","description":"Periodismo - a pesar de todo. Colabora: Hazte socio -- http:\/\/t.co\/CZxxz87oU5","url":"http:\/\/t.co\/9SEeSxM6L5","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9SEeSxM6L5","expanded_url":"http:\/\/www.eldiario.es","display_url":"eldiario.es","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/CZxxz87oU5","expanded_url":"http:\/\/www.eldiario.es\/socios\/alta.html","display_url":"eldiario.es\/socios\/alta.ht\u2026","indices":[53,75]}]}},"protected":false,"followers_count":1070374,"friends_count":481,"listed_count":11976,"created_at":"Sat - Mar 24 19:08:26 +0000 2012","favourites_count":205,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":239022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"196CAE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1148124170116653056\/_JHLqs3Z_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148124170116653056\/_JHLqs3Z_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535707261\/1562868173","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":33,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":21,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518542025973763,"id_str":"1234518542025973763","text":"RT - @theSNP: We are working together with the UK Gov''t to ensure that all necessary - steps are being taken to contain and prevent the spread\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"theSNP","name":"The - SNP","id":77821953,"id_str":"77821953","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3034829295,"id_str":"3034829295","name":"DavidLikesGuys - \u26ab","screen_name":"posnewsday","location":"Scotland (of course)","description":"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7fSNP - supporter. Not ''gay'' as in ''happy'' but ''queer'' as in ''fuck you''. \n\u201cLove - has no gender, compassion has no religion, character has no race.\u201d \nA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1554,"friends_count":1838,"listed_count":38,"created_at":"Fri - Feb 13 15:29:35 +0000 2015","favourites_count":42611,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48516,"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\/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\/1197138058392612864\/lelFApr__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197138058392612864\/lelFApr__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3034829295\/1574254934","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:45:05 +0000 2020","id":1234489911362891776,"id_str":"1234489911362891776","text":"We - are working together with the UK Gov''t to ensure that all necessary steps - are being taken to contain and prevent\u2026 https:\/\/t.co\/LzEjBX0OlP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LzEjBX0OlP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234489911362891776","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":77821953,"id_str":"77821953","name":"The - SNP","screen_name":"theSNP","location":"Scotland, Europe","description":"Scotland''s - largest political party and party of Government. Centre left and social democratic.","url":"https:\/\/t.co\/GFBPcVI9jg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GFBPcVI9jg","expanded_url":"http:\/\/www.snp.org","display_url":"snp.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":267247,"friends_count":1702,"listed_count":2045,"created_at":"Sun - Sep 27 20:19:48 +0000 2009","favourites_count":1250,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":60113,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F3F38D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146012997502033920\/Cb9kkb2T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146012997502033920\/Cb9kkb2T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77821953\/1576187547","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCF68A","profile_text_color":"080101","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":301,"favorite_count":692,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":301,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541958774786,"id_str":"1234518541958774786","text":"RT - @Anna_la_gatta: Certo che viviamo in un mondo strano. Per 13 paesi siamo pericolosi - ed infetti mentre per le ONG siamo 1 porto sicuro se\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Anna_la_gatta","name":"Annarella","id":1119457717,"id_str":"1119457717","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3010384533,"id_str":"3010384533","name":"Daniele","screen_name":"pdaniele6717","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":468,"friends_count":963,"listed_count":3,"created_at":"Sun - Feb 01 16:23:35 +0000 2015","favourites_count":11863,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15939,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/814002491750748161\/TxODmTbP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/814002491750748161\/TxODmTbP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 13:51:32 +0000 2020","id":1234114048524013570,"id_str":"1234114048524013570","text":"Certo - che viviamo in un mondo strano. Per 13 paesi siamo pericolosi ed infetti mentre - per le ONG siamo 1 porto sicu\u2026 https:\/\/t.co\/jMics2snyH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jMics2snyH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234114048524013570","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1119457717,"id_str":"1119457717","name":"Annarella","screen_name":"Anna_la_gatta","location":"","description":"lasciami - in mezzo ai lupi e torner\u00f2 guidando il branco \ud83d\udc3a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":153,"listed_count":12,"created_at":"Fri - Jan 25 14:27:54 +0000 2013","favourites_count":21977,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8532,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5ABB5","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\/1202577820708429826\/CM2UThum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202577820708429826\/CM2UThum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1119457717\/1575551870","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":241,"favorite_count":562,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":241,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541958729728,"id_str":"1234518541958729728","text":"RT - @GA_peach3102: Some perspective as to WHY we shouldn\u2019t panic!\n\nChina - has est 80thousand #CoronaVirus cases\n1.3 billion live in\ud83c\udde8\ud83c\uddf3 - &\n#Wuha\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[91,103]}],"symbols":[],"user_mentions":[{"screen_name":"GA_peach3102","name":"GaPeach\ud83c\udf514Trump\u2b50\ufe0f\u2b50\ufe0fText - Trump to 88022","id":1024775399736311808,"id_str":"1024775399736311808","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":736999482512965632,"id_str":"736999482512965632","name":"denise - ann berry","screen_name":"berrydenisea2","location":"California, USA","description":"Christian, - Conservative, Back the Blue, for strong 1st 2nd amendment.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2862,"friends_count":3647,"listed_count":2,"created_at":"Sun - May 29 19:15:44 +0000 2016","favourites_count":52138,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41799,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1099360877667438592\/ZllIEXSQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1099360877667438592\/ZllIEXSQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:05:18 +0000 2020","id":1234494999661858820,"id_str":"1234494999661858820","text":"Some - perspective as to WHY we shouldn\u2019t panic!\n\nChina has est 80thousand - #CoronaVirus cases\n1.3 billion live in\ud83c\udde8\ud83c\uddf3 &\u2026 - https:\/\/t.co\/ROU2D05YXr","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[73,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ROU2D05YXr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234494999661858820","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1024775399736311808,"id_str":"1024775399736311808","name":"GaPeach\ud83c\udf514Trump\u2b50\ufe0f\u2b50\ufe0fText - Trump to 88022","screen_name":"GA_peach3102","location":"Georgia, USA","description":"Proud - American & Mom\u271d\ufe0fFollower of Jesus Christ,\ud83d\udcafTrump #Support4Flynn - \ud83d\udcaf2A, Pro-Life\ud83d\udc49#QArmy\ud83d\udc49#WWG1WGA Military Family - #KAG \ud83d\ude92&\ud83d\udc6e\ud83c\uddfa\ud83c\uddf8\ud83c\uddee\ud83c\uddf1FB: - @GenFlynn","url":"https:\/\/t.co\/C7OsZdbFAv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C7OsZdbFAv","expanded_url":"https:\/\/mikeflynndefensefund.org","display_url":"mikeflynndefensefund.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":40128,"friends_count":32541,"listed_count":33,"created_at":"Wed - Aug 01 21:54:29 +0000 2018","favourites_count":132112,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":75590,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234536511087030272\/Hmeixsp8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234536511087030272\/Hmeixsp8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1024775399736311808\/1580751071","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":361,"favorite_count":263,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":361,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541912678400,"id_str":"1234518541912678400","text":"Coronavirus - quarantine kit: What you\u2019ll need at home https:\/\/t.co\/ZMR7BH4Ma7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZMR7BH4Ma7","expanded_url":"https:\/\/www.newsbreak.com\/news\/0OHm2Ejj\/coronavirus-quarantine-kit-what-youll-need-at-home?s=ws_tw","display_url":"newsbreak.com\/news\/0OHm2Ejj\/\u2026","indices":[53,76]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":101537354,"id_str":"101537354","name":"Windmill(donhoneycut","screen_name":"windmill4","location":"North - Carolina, USA","description":"DEMORATS [ LIBERALS] ARE RUINING AMERICA THEY - JUST\nDON`T HAVE ENOUGH SENSE TO GET IN OUT OF THE RAIN.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":731,"friends_count":2445,"listed_count":14,"created_at":"Sun - Jan 03 18:11:49 +0000 2010","favourites_count":4238,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11592,"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\/647896538690093056\/2eH3q98k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647896538690093056\/2eH3q98k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101537354\/1437238435","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541828796417,"id_str":"1234518541828796417","text":"RT - @WhiteWhitey2017: It\u2019s that bad when the coronavirus has a better chance - of stopping 9IAR than the tribute act \ud83e\udd23\ud83e\udd23\ud83d\ude48\ud83e\udd23\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WhiteWhitey2017","name":"Andrew - white","id":914185774471553024,"id_str":"914185774471553024","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1139132000986644481,"id_str":"1139132000986644481","name":"Am - Just A Fat Barry Norman","screen_name":"KevinDa14837689","location":"Prestwick, - Scotland","description":"Ave only wan baw!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":289,"friends_count":605,"listed_count":1,"created_at":"Thu - Jun 13 11:26:47 +0000 2019","favourites_count":10150,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1469,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224987063193415685\/aLuSot0L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224987063193415685\/aLuSot0L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1139132000986644481\/1565086125","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:12:22 +0000 2020","id":1234406181390766080,"id_str":"1234406181390766080","text":"It\u2019s - that bad when the coronavirus has a better chance of stopping 9IAR than the - tribute act \ud83e\udd23\ud83e\udd23\ud83d\ude48\ud83e\udd23\ud83e\udd23 https:\/\/t.co\/tE3ghL76Cc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tE3ghL76Cc","expanded_url":"https:\/\/twitter.com\/eddy6716565302\/status\/1234403899362201603","display_url":"twitter.com\/eddy6716565302\u2026","indices":[99,122]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":914185774471553024,"id_str":"914185774471553024","name":"Andrew - white","screen_name":"WhiteWhitey2017","location":"Edinburgh, Scotland","description":"lily-mae - \ud83c\udf0d\ud83d\udc9c Celtic\ud83c\udf40\ud83d\udc9a \ud83d\udcf2 whitey12227","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1143,"friends_count":1578,"listed_count":5,"created_at":"Sat - Sep 30 17:50:48 +0000 2017","favourites_count":34691,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14847,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234217580564484098\/QYOCvq9r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234217580564484098\/QYOCvq9r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/914185774471553024\/1581206240","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234403899362201603,"quoted_status_id_str":"1234403899362201603","quoted_status":{"created_at":"Mon - Mar 02 09:03:18 +0000 2020","id":1234403899362201603,"id_str":"1234403899362201603","text":"The - sun will go to some length in hoping we don\u2019t win the league \ud83d\ude02\ud83d\ude02\ud83d\ude02 - https:\/\/t.co\/rca7z0bahc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234403895121776642,"id_str":"1234403895121776642","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESF7zW4XkAIJ6gB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESF7zW4XkAIJ6gB.jpg","url":"https:\/\/t.co\/rca7z0bahc","display_url":"pic.twitter.com\/rca7z0bahc","expanded_url":"https:\/\/twitter.com\/Eddy6716565302\/status\/1234403899362201603\/photo\/1","type":"photo","sizes":{"medium":{"w":750,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":724,"resize":"fit"},"small":{"w":680,"h":656,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234403895121776642,"id_str":"1234403895121776642","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/ESF7zW4XkAIJ6gB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESF7zW4XkAIJ6gB.jpg","url":"https:\/\/t.co\/rca7z0bahc","display_url":"pic.twitter.com\/rca7z0bahc","expanded_url":"https:\/\/twitter.com\/Eddy6716565302\/status\/1234403899362201603\/photo\/1","type":"photo","sizes":{"medium":{"w":750,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":724,"resize":"fit"},"small":{"w":680,"h":656,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1164165686664581120,"id_str":"1164165686664581120","name":"Eddy67","screen_name":"Eddy6716565302","location":"United - Kingdom","description":"\ud83d\udc40 they coming yet ???","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":201,"listed_count":0,"created_at":"Wed - Aug 21 13:22:12 +0000 2019","favourites_count":1134,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":792,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165635356458397697\/Qp07WXjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165635356458397697\/Qp07WXjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1164165686664581120\/1566744100","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":49,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"retweet_count":3,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234403899362201603,"quoted_status_id_str":"1234403899362201603","retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541321326596,"id_str":"1234518541321326596","text":"RT - @Shawna_7777: GWP: Calls Grow to Quarantine Senator Chris Murphy after Secret - Meeting with Coronavirus Carriers from Iranian Regime. \n\nH\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Shawna_7777","name":"\ud83c\uddfa\ud83c\uddf8\u2728Shawna\u2728\ud83c\uddfa\ud83c\uddf8","id":1132919517372342273,"id_str":"1132919517372342273","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62543444,"id_str":"62543444","name":"Judy - Poettinger","screen_name":"poettinger","location":"Tipp City, OH","description":"Happily - married and enjoying retirement. Conservative, concerned about our future. - #MAGA #KAG #TRUMP2020 #AMERICAFIRST #ForeverAcquitted","url":"https:\/\/t.co\/24dppSBK7w","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/24dppSBK7w","expanded_url":"https:\/\/www.etsy.com\/shop\/SewingandCraftSupply?ref=l2-shopheader-name","display_url":"etsy.com\/shop\/Sewingand\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5157,"friends_count":5137,"listed_count":3,"created_at":"Mon - Aug 03 15:45:13 +0000 2009","favourites_count":4868,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11747,"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\/1165240359418499072\/t8sjjDgG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165240359418499072\/t8sjjDgG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62543444\/1525193327","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:31:11 +0000 2020","id":1234501513944264715,"id_str":"1234501513944264715","text":"GWP: - Calls Grow to Quarantine Senator Chris Murphy after Secret Meeting with Coronavirus - Carriers from Iranian Regi\u2026 https:\/\/t.co\/0tbPtYlrS8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0tbPtYlrS8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234501513944264715","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1132919517372342273,"id_str":"1132919517372342273","name":"\ud83c\uddfa\ud83c\uddf8\u2728Shawna\u2728\ud83c\uddfa\ud83c\uddf8","screen_name":"Shawna_7777","location":"Somewhere, - USA","description":"WWG1WGA\ud83c\uddfa\ud83c\uddf8TRUMP\ud83c\uddfa\ud83c\uddf8DarktoLight\ud83d\udd38MAGA\ud83d\udc38Q\ud83d\udc38 - \ud83d\udeabNO DM''s!\ud83d\udca5The Great Awakening\ud83c\udf0eWe are at - War between Good & Evil\u271d\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17933,"friends_count":18862,"listed_count":4,"created_at":"Mon - May 27 08:00:36 +0000 2019","favourites_count":61157,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48426,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1190754692772614144\/E51NOxhv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190754692772614144\/E51NOxhv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1132919517372342273\/1581294652","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":157,"favorite_count":222,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":157,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541195452418,"id_str":"1234518541195452418","text":"RT - @erickrojovl: Coronavirus llega a monterrey y ya dice \u201cdeee\u201d pa - todo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"erickrojovl","name":"FUCHI - CACA","id":607682688,"id_str":"607682688","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":721409277663969281,"id_str":"721409277663969281","name":"xime","screen_name":"x1meenaa","location":"mty, - mx ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":492,"friends_count":303,"listed_count":0,"created_at":"Sat - Apr 16 18:45:49 +0000 2016","favourites_count":5313,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7503,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231785975610777601\/yOgWwiBH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231785975610777601\/yOgWwiBH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/721409277663969281\/1580371159","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 02:03:22 +0000 2020","id":1234298219213000706,"id_str":"1234298219213000706","text":"Coronavirus - llega a monterrey y ya dice \u201cdeee\u201d pa todo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":607682688,"id_str":"607682688","name":"FUCHI - CACA","screen_name":"erickrojovl","location":"Monterrey, Nuevo Le\u00f3n","description":"se - aplican inyecciones y se visten ni\u00f1os dios","url":"https:\/\/t.co\/8CtbqHYjfi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8CtbqHYjfi","expanded_url":"http:\/\/instagram.com\/cannabisceral","display_url":"instagram.com\/cannabisceral","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1053,"friends_count":313,"listed_count":4,"created_at":"Wed - Jun 13 22:20:11 +0000 2012","favourites_count":22402,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28418,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1192893231173898244\/nbbwBPdP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192893231173898244\/nbbwBPdP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/607682688\/1571249125","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1155,"favorite_count":5355,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1155,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541191327746,"id_str":"1234518541191327746","text":"RT - @NickKristof: A Florida man tested negative for coronavirus but was billed - $3,270--so many will avoid testing. We need universal health\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NickKristof","name":"Nicholas - Kristof","id":17004618,"id_str":"17004618","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21343879,"id_str":"21343879","name":"Candice - Drake","screen_name":"candydrake","location":"Ocean City, Maryland","description":"Single - Mother, Baby Boomer, Maryland grad, Ravens fan, Hard-working Democrat, Living - at the beach.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":262,"friends_count":1214,"listed_count":10,"created_at":"Thu - Feb 19 21:56:27 +0000 2009","favourites_count":48368,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27297,"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\/779495159063076864\/1ZjwTYpU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/779495159063076864\/1ZjwTYpU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21343879\/1474681051","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 15:35:31 +0000 2020","id":1234140218023989253,"id_str":"1234140218023989253","text":"A - Florida man tested negative for coronavirus but was billed $3,270--so many - will avoid testing. We need universal\u2026 https:\/\/t.co\/tQAPpSJ6j0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tQAPpSJ6j0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234140218023989253","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":17004618,"id_str":"17004618","name":"Nicholas - Kristof","screen_name":"NickKristof","location":"Everywhere","description":"Oregon - farmboy turned NY Times columnist, author with my wife, @WuDunn, of \"Tightrope\" - https:\/\/t.co\/NR8ScP6Bgr","url":"https:\/\/t.co\/CO7uxBqpWU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CO7uxBqpWU","expanded_url":"http:\/\/www.nytimes.com\/kristof","display_url":"nytimes.com\/kristof","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/NR8ScP6Bgr","expanded_url":"https:\/\/bit.ly\/2qUsgvr","display_url":"bit.ly\/2qUsgvr","indices":[87,110]}]}},"protected":false,"followers_count":2045765,"friends_count":2258,"listed_count":23337,"created_at":"Mon - Oct 27 19:14:53 +0000 2008","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":42895,"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\/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\/680936862387589120\/DfkrlW27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/680936862387589120\/DfkrlW27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17004618\/1578340725","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6046,"favorite_count":13229,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6046,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541182783491,"id_str":"1234518541182783491","text":"RT - @gatewaypundit: Obama Holdover Made the Call to Fly Coronavirus Patients Back - to the US from Japan - Then Boasted About It https:\/\/t.co\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gatewaypundit","name":"Jim - Hoft","id":19211550,"id_str":"19211550","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":751241798702411777,"id_str":"751241798702411777","name":"Tammy - Payne","screen_name":"TammyIloveUSA","location":"","description":"\ud83c\uddfa\ud83c\uddf8\ud83d\ude04\ud83d\ude4f - Christian\/ Wife \/Mother\/loves USA\ud83c\uddfa\ud83c\uddf8 and Her Constitution, - \u27641A and 2A\u2764\ud83c\uddfa\ud83c\uddf8\u2764military, \u2764ProLife, - \u2764 Our President Trump! no DMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":985,"friends_count":1263,"listed_count":0,"created_at":"Fri - Jul 08 02:29:37 +0000 2016","favourites_count":11365,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2136,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227623947002232832\/9MiqCFxE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227623947002232832\/9MiqCFxE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/751241798702411777\/1581522745","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:41:58 +0000 2020","id":1234504228187574275,"id_str":"1234504228187574275","text":"Obama - Holdover Made the Call to Fly Coronavirus Patients Back to the US from Japan - - Then Boasted About It\u2026 https:\/\/t.co\/oESCzgH33c","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oESCzgH33c","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234504228187574275","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[108,131]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":19211550,"id_str":"19211550","name":"Jim - Hoft","screen_name":"gatewaypundit","location":"St. Louis, Missouri","description":"Writer- - Speaker- Where Hope Made a Comeback - Top Choice of the American Truth Seeker","url":"https:\/\/t.co\/9D93JQ9grt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9D93JQ9grt","expanded_url":"http:\/\/www.thegatewaypundit.com\/","display_url":"thegatewaypundit.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":223632,"friends_count":1437,"listed_count":2976,"created_at":"Tue - Jan 20 00:45:40 +0000 2009","favourites_count":6378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":98547,"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\/967266044338294786\/6cu37jlt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/967266044338294786\/6cu37jlt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19211550\/1504151751","profile_link_color":"91D2FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1830,"favorite_count":1372,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1830,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541166161920,"id_str":"1234518541166161920","text":"RT - @elcomerciocom: #ATENCI\u00d3N | La Uni\u00f3n Europea eleva el nivel de riesgo - vinculado al covid-19 de \u201cmoderado\u201d a \u201calto\u201d. La UE revel\u00f3 - cu\u00e1ntos\u2026","truncated":false,"entities":{"hashtags":[{"text":"ATENCI\u00d3N","indices":[19,28]}],"symbols":[],"user_mentions":[{"screen_name":"elcomerciocom","name":"El - Comercio","id":14333756,"id_str":"14333756","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":492396850,"id_str":"492396850","name":"Sherman","screen_name":"shermanico","location":"Quito","description":"Profesional - ciencias m\u00e9dicas,sin partido pol\u00edtico alguno,contrario a extremismos - ,con deseos de ver un pa\u00eds m\u00e1s justo,amante de la libertad.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":705,"friends_count":334,"listed_count":3,"created_at":"Tue - Feb 14 17:32:36 +0000 2012","favourites_count":42512,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":70470,"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\/2660516015\/deb6cfbc2541180655e5c924a51832f0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2660516015\/deb6cfbc2541180655e5c924a51832f0_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:31:00 +0000 2020","id":1234486367192637441,"id_str":"1234486367192637441","text":"#ATENCI\u00d3N - | La Uni\u00f3n Europea eleva el nivel de riesgo vinculado al covid-19 de - \u201cmoderado\u201d a \u201calto\u201d. La UE revel\u00f3 cu\u2026 https:\/\/t.co\/fTlrHmwjx1","truncated":true,"entities":{"hashtags":[{"text":"ATENCI\u00d3N","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fTlrHmwjx1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234486367192637441","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":14333756,"id_str":"14333756","name":"El - Comercio","screen_name":"elcomerciocom","location":"Ecuador","description":"El - Diario informativo m\u00e1s comprometido con la gente de Ecuador.","url":"https:\/\/t.co\/ybctD4cRAO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ybctD4cRAO","expanded_url":"http:\/\/www.elcomercio.com","display_url":"elcomercio.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1572500,"friends_count":4379,"listed_count":3929,"created_at":"Tue - Apr 08 16:32:05 +0000 2008","favourites_count":1356,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":256883,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/984857614247919616\/V7z-khzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/984857614247919616\/V7z-khzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14333756\/1546465954","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":56,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":52,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541132541956,"id_str":"1234518541132541956","text":"RT - @jezzzini: el coronavirus lleg\u00f3 a M\u00e9xico pero no se pudo estacionar - porque hab\u00edan dos cubetas en su lugar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jezzzini","name":"jezzini","id":1039156128440115200,"id_str":"1039156128440115200","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4108735520,"id_str":"4108735520","name":"Mr. - Nobody","screen_name":"Ja_Cardenas04","location":"","description":"Siesta - no fiesta","url":"https:\/\/t.co\/V0SlWxhsi6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/V0SlWxhsi6","expanded_url":"http:\/\/www.instagram.com\/ja_cardenas05","display_url":"instagram.com\/ja_cardenas05","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":438,"listed_count":1,"created_at":"Tue - Nov 03 03:39:14 +0000 2015","favourites_count":23886,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20465,"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\/1226046149120942081\/SW2LgC1A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226046149120942081\/SW2LgC1A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4108735520\/1498549385","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":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 21:12:28 +0000 2020","id":1234225012346847234,"id_str":"1234225012346847234","text":"el - coronavirus lleg\u00f3 a M\u00e9xico pero no se pudo estacionar porque hab\u00edan - dos cubetas en su lugar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1039156128440115200,"id_str":"1039156128440115200","name":"jezzini","screen_name":"jezzzini","location":"Paris, - France","description":"Expat. Escritor. Monja diab\u00f3lica.","url":"https:\/\/t.co\/0a2TkYcnEh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0a2TkYcnEh","expanded_url":"https:\/\/www.instagram.com\/jezzzini\/","display_url":"instagram.com\/jezzzini\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":108252,"friends_count":252,"listed_count":61,"created_at":"Mon - Sep 10 14:18:22 +0000 2018","favourites_count":23067,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5219,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192160985890590722\/kqyOT41s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192160985890590722\/kqyOT41s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1039156128440115200\/1552565828","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":590,"favorite_count":6315,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":590,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518541128347649,"id_str":"1234518541128347649","text":"as - vantagens do coronav\u00edrus, uma an\u00e1lise utilit\u00e1ria https:\/\/t.co\/qU2tjmIh1M","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qU2tjmIh1M","expanded_url":"https:\/\/twitter.com\/Estadao\/status\/1234416909350789122","display_url":"twitter.com\/Estadao\/status\u2026","indices":[52,75]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2528630557,"id_str":"2528630557","name":"tom - morello rondoniense","screen_name":"psicotropycal","location":"Pyongyang","description":"monogamico - e cafona; apaixonado na @_ggessicat","url":"https:\/\/t.co\/CMXEEb9V3G","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CMXEEb9V3G","expanded_url":"https:\/\/curiouscat.me\/lxcxsxd","display_url":"curiouscat.me\/lxcxsxd","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":221,"friends_count":220,"listed_count":0,"created_at":"Wed - May 28 00:02:35 +0000 2014","favourites_count":14917,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12919,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1188215742430404608\/dm_uXrxl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188215742430404608\/dm_uXrxl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2528630557\/1566353285","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234416909350789122,"quoted_status_id_str":"1234416909350789122","quoted_status":{"created_at":"Mon - Mar 02 09:55:00 +0000 2020","id":1234416909350789122,"id_str":"1234416909350789122","text":"Funcion\u00e1rio - da XP Investimentos \u00e9 o 2.\u00ba paciente diagnosticado com coronav\u00edrus - no Brasil https:\/\/t.co\/GCceBxzxtU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GCceBxzxtU","expanded_url":"http:\/\/bit.ly\/2TyArrP","display_url":"bit.ly\/2TyArrP","indices":[89,112]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"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,"user":{"id":9317502,"id_str":"9317502","name":"Estad\u00e3o","screen_name":"Estadao","location":"S\u00e3o - Paulo","description":"A vers\u00e3o on-line do jornal O Estado de S.Paulo. - Acompanhe tamb\u00e9m as atualiza\u00e7\u00f5es pelo Facebook: https:\/\/t.co\/HTvjzaNfS6","url":"https:\/\/t.co\/kWyYloi1oN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kWyYloi1oN","expanded_url":"http:\/\/www.estadao.com.br","display_url":"estadao.com.br","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/HTvjzaNfS6","expanded_url":"http:\/\/fb.com\/estadao","display_url":"fb.com\/estadao","indices":[96,119]}]}},"protected":false,"followers_count":6548168,"friends_count":56604,"listed_count":12291,"created_at":"Mon - Oct 08 22:08:22 +0000 2007","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":353565,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930054894731579392\/WGqwI8XJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930054894731579392\/WGqwI8XJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9317502\/1582713459","profile_link_color":"336699","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":101,"favorite_count":641,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518540905959429,"id_str":"1234518540905959429","text":"RT - @UPROXX: After @BTS_twt canceled shows, fans donated over $300,000 from refunded - tickets to coronavirus relief https:\/\/t.co\/AIagg6SZ8s h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UPROXX","name":"UPROXX","id":19870967,"id_str":"19870967","indices":[3,10]},{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[18,26]}],"urls":[{"url":"https:\/\/t.co\/AIagg6SZ8s","expanded_url":"https:\/\/uproxx.it\/curwzjx","display_url":"uproxx.it\/curwzjx","indices":[114,137]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4702590733,"id_str":"4702590733","name":"#1 - Hot200 #4 Hot100 \u2077","screen_name":"Penivia_","location":"THE GENRE IS - BTS","description":"[TXT\u2606OneOkRock\u2606LiSA\u2606TWICE\u2606Mamamoo\u2606Dreamcatcher\u2606Loona\u2606Gfriend\u2606Everglow\u2606ITZY\u2606RedVelvet\u2606STILES\u2606LingTositeSigure]\n\n - ...main BTS \ud83d\udc9c \n\nweeb\/fujoshi ? \u2193 @M0bPsycho1000","url":"https:\/\/t.co\/gFr69NjqvG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gFr69NjqvG","expanded_url":"https:\/\/curiouscat.me\/BangtanShield","display_url":"curiouscat.me\/BangtanShield","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":854,"friends_count":2154,"listed_count":11,"created_at":"Sun - Jan 03 12:28:43 +0000 2016","favourites_count":91658,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":91556,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230493036250943489\/AtyHgpqc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230493036250943489\/AtyHgpqc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4702590733\/1582812312","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:00:03 +0000 2020","id":1234508777182973952,"id_str":"1234508777182973952","text":"After - @BTS_twt canceled shows, fans donated over $300,000 from refunded tickets - to coronavirus relief\u2026 https:\/\/t.co\/RQpKwMTHjC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[6,14]}],"urls":[{"url":"https:\/\/t.co\/RQpKwMTHjC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234508777182973952","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[103,126]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/profile.uproxx.com\" rel=\"nofollow\"\u003eThred\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19870967,"id_str":"19870967","name":"UPROXX","screen_name":"UPROXX","location":"","description":"The - Culture of Now -- Music. Film. TV. Creativity.","url":"http:\/\/t.co\/hNPTi4OqtT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/hNPTi4OqtT","expanded_url":"http:\/\/www.uproxx.com\/","display_url":"uproxx.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":88509,"friends_count":8161,"listed_count":2020,"created_at":"Sun - Feb 01 19:01:39 +0000 2009","favourites_count":10716,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":161822,"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\/890965500645130241\/bn495YMi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890965500645130241\/bn495YMi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19870967\/1518032883","profile_link_color":"2B8CD0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EEEAE7","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":781,"favorite_count":1803,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":781,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518540872540162,"id_str":"1234518540872540162","text":"RT - @OOCSUPERNANNY: Personne : \n\nLe coronavirus : https:\/\/t.co\/TYJlxcOWe1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OOCSUPERNANNY","name":"Out - Of Context Super Nanny","id":1206702708159373312,"id_str":"1206702708159373312","indices":[3,17]}],"urls":[],"media":[{"id":1234247431379914755,"id_str":"1234247431379914755","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234247431379914755\/pu\/img\/m-lSbZ0ruH05yR-7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234247431379914755\/pu\/img\/m-lSbZ0ruH05yR-7.jpg","url":"https:\/\/t.co\/TYJlxcOWe1","display_url":"pic.twitter.com\/TYJlxcOWe1","expanded_url":"https:\/\/twitter.com\/OOCSUPERNANNY\/status\/1234247640054927363\/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":1234247640054927363,"source_status_id_str":"1234247640054927363","source_user_id":1206702708159373312,"source_user_id_str":"1206702708159373312"}]},"extended_entities":{"media":[{"id":1234247431379914755,"id_str":"1234247431379914755","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234247431379914755\/pu\/img\/m-lSbZ0ruH05yR-7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234247431379914755\/pu\/img\/m-lSbZ0ruH05yR-7.jpg","url":"https:\/\/t.co\/TYJlxcOWe1","display_url":"pic.twitter.com\/TYJlxcOWe1","expanded_url":"https:\/\/twitter.com\/OOCSUPERNANNY\/status\/1234247640054927363\/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":1234247640054927363,"source_status_id_str":"1234247640054927363","source_user_id":1206702708159373312,"source_user_id_str":"1206702708159373312","video_info":{"aspect_ratio":[16,9],"duration_millis":5667,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234247431379914755\/pu\/pl\/kcRRFCmhn1LBF24H.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234247431379914755\/pu\/vid\/640x360\/k3dn4m9D7naIjkjG.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234247431379914755\/pu\/vid\/1280x720\/rZ04uto_O6PmqfQP.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234247431379914755\/pu\/vid\/480x270\/8dwhYWtN0JY_z8C9.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":1206702708159373312,"id_str":"1206702708159373312","name":"Out - Of Context Super Nanny","screen_name":"OOCSUPERNANNY","location":"93","description":"\"Fais - de ta vie un r\u00eave et d''un r\u00eave une r\u00e9alit\u00e9 ! C''est \u00e7a - que vous devez faire c''est \u00e7a\" - Sylvie Jenaly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5534,"friends_count":45,"listed_count":2,"created_at":"Mon - Dec 16 22:29:17 +0000 2019","favourites_count":257,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":407,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233794232823025665\/kxIebMRF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233794232823025665\/kxIebMRF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1206702708159373312\/1583087509","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"result_type":"recent","iso_language_code":"ca"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2349230267,"id_str":"2349230267","name":"\ud835\udcdc\ud835\udcea\ud835\udcf2\ud835\udcf5\ud835\udd02\ud835\udcfc","screen_name":"mailysmrg","location":"Dijon, - France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":534,"friends_count":130,"listed_count":7,"created_at":"Mon - Feb 17 19:39:18 +0000 2014","favourites_count":18757,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54020,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232325674599436288\/1yevfqOa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232325674599436288\/1yevfqOa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 22:42:23 +0000 2020","id":1234247640054927363,"id_str":"1234247640054927363","text":"Personne - : \n\nLe coronavirus : https:\/\/t.co\/TYJlxcOWe1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234247431379914755,"id_str":"1234247431379914755","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234247431379914755\/pu\/img\/m-lSbZ0ruH05yR-7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234247431379914755\/pu\/img\/m-lSbZ0ruH05yR-7.jpg","url":"https:\/\/t.co\/TYJlxcOWe1","display_url":"pic.twitter.com\/TYJlxcOWe1","expanded_url":"https:\/\/twitter.com\/OOCSUPERNANNY\/status\/1234247640054927363\/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":1234247431379914755,"id_str":"1234247431379914755","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234247431379914755\/pu\/img\/m-lSbZ0ruH05yR-7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234247431379914755\/pu\/img\/m-lSbZ0ruH05yR-7.jpg","url":"https:\/\/t.co\/TYJlxcOWe1","display_url":"pic.twitter.com\/TYJlxcOWe1","expanded_url":"https:\/\/twitter.com\/OOCSUPERNANNY\/status\/1234247640054927363\/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":5667,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234247431379914755\/pu\/pl\/kcRRFCmhn1LBF24H.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234247431379914755\/pu\/vid\/640x360\/k3dn4m9D7naIjkjG.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234247431379914755\/pu\/vid\/1280x720\/rZ04uto_O6PmqfQP.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234247431379914755\/pu\/vid\/480x270\/8dwhYWtN0JY_z8C9.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"result_type":"recent","iso_language_code":"ca"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1206702708159373312,"id_str":"1206702708159373312","name":"Out - Of Context Super Nanny","screen_name":"OOCSUPERNANNY","location":"93","description":"\"Fais - de ta vie un r\u00eave et d''un r\u00eave une r\u00e9alit\u00e9 ! C''est \u00e7a - que vous devez faire c''est \u00e7a\" - Sylvie Jenaly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5534,"friends_count":45,"listed_count":2,"created_at":"Mon - Dec 16 22:29:17 +0000 2019","favourites_count":257,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":407,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233794232823025665\/kxIebMRF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233794232823025665\/kxIebMRF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1206702708159373312\/1583087509","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12304,"favorite_count":27287,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ca"},"is_quote_status":false,"retweet_count":12304,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ca"},{"created_at":"Mon - Mar 02 16:38:51 +0000 2020","id":1234518540826247168,"id_str":"1234518540826247168","text":"RT - @Conflits_FR: \ud83c\uddeb\ud83c\uddf7 FLASH - Le pr\u00e9fet de l\u2019#Oise - et le patron r\u00e9gional de l\u2019ARS ont \u00e9t\u00e9 plac\u00e9s en - quarantaine. Ils ont \u00e9t\u00e9 en contact avec\u2026","truncated":false,"entities":{"hashtags":[{"text":"Oise","indices":[43,48]}],"symbols":[],"user_mentions":[{"screen_name":"Conflits_FR","name":"Conflits","id":1214315619031478272,"id_str":"1214315619031478272","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1052273048567537664,"id_str":"1052273048567537664","name":"videotouit","screen_name":"videotouit1","location":"","description":"touit - touit !","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1793,"friends_count":4995,"listed_count":3,"created_at":"Tue - Oct 16 19:00:19 +0000 2018","favourites_count":99732,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73597,"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\/1053008658357862401\/lfzQNt5s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053008658357862401\/lfzQNt5s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1052273048567537664\/1539892635","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:49:54 +0000 2020","id":1234506222893748225,"id_str":"1234506222893748225","text":"\ud83c\uddeb\ud83c\uddf7 - FLASH - Le pr\u00e9fet de l\u2019#Oise et le patron r\u00e9gional de l\u2019ARS - ont \u00e9t\u00e9 plac\u00e9s en quarantaine. Ils ont \u00e9t\u00e9 en contac\u2026 - https:\/\/t.co\/Xvkl4l7I0P","truncated":true,"entities":{"hashtags":[{"text":"Oise","indices":[26,31]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Xvkl4l7I0P","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234506222893748225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214315619031478272,"id_str":"1214315619031478272","name":"Conflits","screen_name":"Conflits_FR","location":"\ud83c\uddeb\ud83c\uddf7 - \/ \ud83c\udde9\ud83c\uddea","description":"Traque les conflits autour du - globe en temps r\u00e9el & en fran\u00e7ais. (G\u00e9o)politique, terrorisme, - espionnage, cyber-s\u00e9curit\u00e9, sant\u00e9. Backup : @ConflitsFR. #OSINT","url":"https:\/\/t.co\/Ve7b3t0FON","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ve7b3t0FON","expanded_url":"https:\/\/www.instagram.com\/conflits_fr\/","display_url":"instagram.com\/conflits_fr\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":87911,"friends_count":12,"listed_count":205,"created_at":"Mon - Jan 06 22:40:00 +0000 2020","favourites_count":2668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3526,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214315619031478272\/1580759618","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":302,"favorite_count":479,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":302,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"}],"search_metadata":{"completed_in":0.081,"max_id":1234518548824940543,"max_id_str":"1234518548824940543","next_results":"?max_id=1234518540826247167&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1234518548824940543&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Cardiff&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1211246633092091904/cqaMe-wX_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1187' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:23 GMT - Last-Modified: - - Sun, 29 Dec 2019 11:22:35 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1211246633092091904 - X-Cache: - - HIT - X-Connection-Hash: - - cfa3ac6210b5fd316fb47a65109852f5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Cardiff&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Middle%20of%20the%20country&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/965655969630998530/uPW2ehiX_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '472596' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:23 GMT - Last-Modified: - - Mon, 19 Feb 2018 18:32:58 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/965655969630998530 - X-Cache: - - HIT - X-Connection-Hash: - - 50d2d81809e7735bd9e19915ca91bdcc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Middle%20of%20the%20country&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1041775812209532933/Aebv-171_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1606' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:24 GMT - Last-Modified: - - Mon, 17 Sep 2018 19:46:03 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1041775812209532933 - X-Cache: - - HIT - X-Connection-Hash: - - 03472b799fd963790862710243922d92 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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VG1YTcfUdtEv7hLfsHia5pyqt+uxiKxDiDgw3iFhcAvEOjfMqZLJfePYx+lYaZa8hUhbqjlfMfll4tcEvDa2J3ZW4OxPNLozkmbMJsFkwcI1YEcgEpebuXIB0adGzN5xN/4zP//aAAwDAQACAAMAAAAQBYAXu1QulDSPtTuEN80pdPUHe//EABkRAQEBAQEBAAAAAAAAAAAAAAEAESEQMf/aAAgBAwEBPxA7aeAfBDiUEwslLe8jrDcQcvuEb7AXWZ9TZKyXz//EABwRAQEBAQACAwAAAAAAAAAAAAEAESEQMUFRcf/aAAgBAgEBPxBZyE8sjcvs8c3roV9zEr3IOWoT4g52TL8gjJrJZyMMsGvW7I9gDBrLf//EACMQAQEAAgICAgIDAQAAAAAAAAERACExQVFhcZGBoRCx8NH/2gAIAQEAAT8QkNwWg16Mf3r4MA5vyuFUk/OCbmPz+PO9ROTCz8c1UVwDiVpXtymgcXpOAriKU1y9TfLlWVPJ1lEezKD/AEyPDAuvd24dOsKMO16xAE27ubfqfWFWGErEpkJjbjb7xAyjF8axgAs63ihSAp85GDzcAe3tKOtBS8x94SORNeLJ01epijCleYu/gmG6igBpS3+v3hIUh2645+sJVvkHcLvAdhRVjugdBD7wobWpleMYKaBs7hi0yELy37ylTZBULP8AfnJY96UKg9w/WcJkzQAnT2YJAVqOy7fowBowVVnL8cv1k91sS04R+71o5wgd7J958/1gORkjNV+kGG2hzvEkY2nWgut716zggy6AGK8Cd+XIKMLITEuuy5FBJFQQfohxp4zbjkMIO6f86xkgRI2VAVjoH6cDUKsP9TGWOSHD1sP7hx8GWhrbk3SQo7x6SKKAE2p5smFGkmvYES968dvrAz2fmtFOoC9yY/0VS6Z7NGF5RcJhQKCDRXykXBTCNsjxjb25gWBG9TKxQQrtUlThTp5wgrqi3SB7N4YEbhV2K+a5WAO1/B0fj3gnkakB5+flwvRRqxHEHPZwA6y9zHCGJR3bhrEla8eMVskfBMG9cDFZF4zV/dh6hle/r+Lm/P8ANOmf2s/cM4/hzg/j/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:24 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234518102349623298.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f9c91938eb496682bc8ebdc85465f31f", - oauth_signature="qgQhh9L6XeP4yXbV7CKUhfgWGWA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257104", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '3891' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:25 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:24 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325710494382209; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:24 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_JSOIQ5WWM8A5AgsYcresUw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:24 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6c67d40b1341a88e8331bbc5e7b59510 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '858' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '125' - X-Transaction: - - 00b23e5a0072e51c - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:37:06 +0000 2020","id":1234518102349623298,"id_str":"1234518102349623298","text":"JUST - IN: Trump urges pharmaceutical executives to accelerate coronavirus vaccine - efforts https:\/\/t.co\/NWmQvHoGE5 https:\/\/t.co\/zXUD2QdafX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NWmQvHoGE5","expanded_url":"http:\/\/hill.cm\/evf8vB7","display_url":"hill.cm\/evf8vB7","indices":[89,112]}],"media":[{"id":1234518100491538434,"id_str":"1234518100491538434","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHjq_CWkAIWV25.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHjq_CWkAIWV25.jpg","url":"https:\/\/t.co\/zXUD2QdafX","display_url":"pic.twitter.com\/zXUD2QdafX","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1234518102349623298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518100491538434,"id_str":"1234518100491538434","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHjq_CWkAIWV25.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHjq_CWkAIWV25.jpg","url":"https:\/\/t.co\/zXUD2QdafX","display_url":"pic.twitter.com\/zXUD2QdafX","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1234518102349623298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"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,"user":{"id":1917731,"id_str":"1917731","name":"The - Hill","screen_name":"thehill","location":"Washington, DC","description":"The - Hill is the premier source for policy and political news. Follow for tweets - on what''s happening in Washington, breaking news and retweets of our reporters.","url":"http:\/\/t.co\/t414UtTRv4","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/t414UtTRv4","expanded_url":"http:\/\/www.thehill.com","display_url":"thehill.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3570216,"friends_count":262,"listed_count":27135,"created_at":"Thu - Mar 22 18:15:18 +0000 2007","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":698856,"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\/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\/907330975587336193\/tw7JPE5v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907330975587336193\/tw7JPE5v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1917731\/1434034905","profile_link_color":"FF0021","profile_sidebar_border_color":"ADADAA","profile_sidebar_fill_color":"EBEBEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":77,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=3 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/907330975587336193/tw7JPE5v_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '568692' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:25 GMT - Last-Modified: - - Mon, 11 Sep 2017 19:50:16 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/907330975587336193 - X-Cache: - - HIT - X-Connection-Hash: - - da90074573f1e076a1068c3c2ce878cd - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '155' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/640163423700000768/Eus_nBYo_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1605' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:38:25 GMT - Last-Modified: - - Sat, 05 Sep 2015 14:01:48 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/640163423700000768 - X-Cache: - - HIT - X-Connection-Hash: - - d548bd6a500393db0c9c52cb03c69aa4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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hCg2xBNH5OG3l07C6OG5OHfx8+LhHaKzfGhtacdZJxfjzfsusQo3O5JSEHl6Ddpe+4/Mx4vAzHOQNf/inpd8ZaEV0nuxinEx3JpluQ5LbhpzXC7OHDcEp40p1KdvPOvre9s9oUqbf3IZ89K7Ow7gbbHPhpX72QzxUcPCOGv8ULE/VElhD/j8pr0qQzgv7jhQh104taSn+UNiwCTZwhGS/S2aYGVTPTUA2I6xva4vDJykWMKtCQ5lfuoDNM8o46vTO5lbejRxO4n5cEAzjn2GcHcvZzxSbTMCYbw7Fbxnb2HdEwMn6VsI6+r2bYZLkgVckizgkmQBlyQLuCRZwCXJAi5JFnBJsoBLkgVckizgkmQBlyQLuCRZwCXJAi5JFvgf+s3gXF0StZYAAAAASUVORK5CYIIgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=No%20locked%20accounts&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1195084424427298821/MsZygZI2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '229702' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:25 GMT - Last-Modified: - - Thu, 14 Nov 2019 20:59:45 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1195084424427298821 - X-Cache: - - HIT - X-Connection-Hash: - - e601780e6af1f11c36c589dfadfed9f7 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=No%20locked%20accounts&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=York,%20UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/3413958003/f75fc5c9316f8c3fc230a8ee471c296f_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1184' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 03 Mar 2020 17:38:26 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/3413958003 - X-Cache: - - HIT - X-Connection-Hash: - - 10c76032af00e5ffc9a17181d2bd6845 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - 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T+QZzXu0x3VSOZ+Xhl0GCpKWGsX9+yYYyPnYEoQnefSVDEopjmR8Ttg2d6Zd8q6kOEelUsUl9Wc8+jPv3l70FHvOFtlz2fZUzieVe9tmwVUcGnbeblfwOTBXyWiKWQ03cS2tZ7wfaibfLH8nZfckpcBoayfxwXtQ4hq/BZQ+/pIOJoVWlqbyh5uSjHXei+i4Z64VBAsXUfbFnFVOkgiY5f+VXA9c4+Pk2qAqKQBVSQGoSgpAVVIAqpICUJUUgKqkAFQlBaAqKQBVSQGoSgpAVVIAqpICUJUUgKqkAFQlBaAqKQBVSQGoSgpAVVIAqpICUJUUgKqkAPw/FXqRdfGtXqIAAAAASUVORK5CYIIgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=York,%20UK&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Rep%C3%BAblica%20Dominicana&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1214975100677742600/MmhDhRwE_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '106341' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:26 GMT - Last-Modified: - - Wed, 08 Jan 2020 18:18:11 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1214975100677742600 - X-Cache: - - HIT - X-Connection-Hash: - - 938386da7d1182e8c25797939d8a4142 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Rep%C3%BAblica%20Dominicana&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1189571372810493952/2Jt6U458_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '49895' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:26 GMT - Last-Modified: - - Wed, 30 Oct 2019 15:52:51 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1189571372810493952 - X-Cache: - - HIT - X-Connection-Hash: - - 23c868771a201153871b8ea190575e8b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '111' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Savoie%20/%20Haute-Savoie&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1226947198019145731/gurPruyD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '77454' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Last-Modified: - - Mon, 10 Feb 2020 19:11:02 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1226947198019145731 - X-Cache: - - HIT - X-Connection-Hash: - - 7643e7ebdcd7148c45dfe923a226055e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:27 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Savoie%20/%20Haute-Savoie&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:27 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Boston,%20MA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/709765009211981824/vMOUpjC__bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '365445' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Last-Modified: - - Tue, 15 Mar 2016 15:33:39 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/709765009211981824 - X-Cache: - - HIT - X-Connection-Hash: - - bbc1806c7d1b57d547795be1d3253074 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4AADAA8ADwAjACdhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAEBgMFBwIAAf/EABkBAQADAQEAAAAAAAAAAAAAAAQAAwUBAv/aAAwDAQACEAMQAAABnK8b3iiqNA1KPefSTaGSvwtinPDFtQrjlmhGyJwfzo7HIhXZD6Ak881pAQjQl5xZoRsiqE8oFK/P+fvB9GWSPq4IYRoSAlm0aj2N6cuap49rDdTWIdW0JGz5ec/BVhltGSdQ9++zahlmkTjZUz0Y3MmabFkKRrsXcfvz/8QAJxAAAQQBAwIGAwAAAAAAAAAAAwABAgQFEBESEzQGFCEjJDEyM0H/2gAIAQEAAQUCHBcFmS9MQN5SDUeaJjnTBmCxBmlCcFxQkyzkI8qW0p1BReEwR2v11Vb4xNBJlnv31JiCsfdARWsiIMyWIkFVfeuTQSZZGRY5WvU6jw2bLWKsDuWvBhS22JoJMvEFWRI4w/TQbXDJcnKuZJKb7uTQSbQ04DyNSTwLX9xvqSJoJMr2QGEuRFONiobjAF6OwX9tE0Nbr1Y3s0cqBLhYeuxo+S4qqJoSE0JtDIW6JQ5aqZdYS5PJ9/XdYwvmMXAsCksTYa4GGHNeuRfRtP54S/C132R+hdvnO6fT/8QAIBEAAQQDAAIDAAAAAAAAAAAAAQACAxEEEBIgMSEiYf/aAAgBAwEBPwFQx9IQR+lkM4duFrr+EA5zf1ZUX16O8aSnKImrWZJZ5G2GimdAUshtP8MV59Jzi42df//EABwRAAICAwEBAAAAAAAAAAAAAAECAAMQESESQv/aAAgBAgEBPwGWPqGxpS3oZsInAZQ3dZtWNqUL9ZcbEYiUdXJlqCKNY//EADEQAAIBAgIIBAQHAAAAAAAAAAECABEhAzEEEBITICJBcTJRYXJCUpHBIzNigpKh4f/aAAgBAQAGPwLVuxmc5lUSy0liayo7wN5jhusyprqInbhVfmWbLtVvICBUNek3ZwsQt6Q4oFO8Q5W4QMduXa5O0Z7mp6GkTZXZtcTnVWEIC0rAQKW4U0jDBJSxAjVF5vcRSQYWUFR0MG8GR49Iw3srNn5S726csFXZh9BNgeEcSaOhDYrNT2zb6NcQV6SniMfEdqGorwVxsQD06wpo/wCCnn8URz0as3B+K+E3r/sutKZjylmmIrjlblPa8bR2O8XDbZo0o5OE36svrPzcP+UqxJOvAAu6nYjnF8XpnGvlK4NLgEmYrfNRv64v3/bU3eL7RB7fudf/xAAlEAEAAgIBAwQCAwAAAAAAAAABABEhMUEQUYEgYXGhkbHB8PH/2gAIAQEAAT8hsNQx1Ada4D9SwFt2IEUSzNB3gxmxBDeYsmLU+EGIMRDbmx8QXAjgJd2DwJjqLP1NjBx00mkT4DE1InKmV1dhKSGqi0IpmpkjDim6Oya9NJpLRAtjjslYVXOYZm/lw/bU3BGTTBZc5MCdSHtia9NJpGcXQWpHzlO8okzsIEodfd8RqtAKcywQo4Jr00mnRyMgDlBY1HJDMFTdVDFDUXU16aTSATMw0Pf39o73y/fuQwm7YjyLp0EGjhkaB19x1NelpjwcrxBRWfJeeIqJan+cwsoOU12nwP4gLWJVVtHwD4liSv5wIPthbymsO4KIXEH+Nlq1bVtYUyuocotw0zeHH1MG2Jx8jmUqhkXAp0s+eNHaaDhh5Ecx2PRfv9ev9t29Hn//2gAMAwEAAgADAAAAEOsacslvB06loN4KnaQZ4pjGiM//xAAdEQEAAgMBAAMAAAAAAAAAAAABABEQITFBYXGR/9oACAEDAQE/EILphi3YNBknrECQtn2V+3lCvyXVjvI48uv3kzvjHWOpc/OWJtOg1GKbhP/EABkRAAMBAQEAAAAAAAAAAAAAAAABESEQMf/aAAgBAgEBPxAZ5HdG1fWfRuB+HiruVFgsm3INxGhorkwTB2OaKVJEP//EACQQAQACAgAFBQEBAAAAAAAAAAEAESExEEFRYXGBkaHB8LHR/9oACAEBAAE/EACD5EMOEpQpv0Vl7RYxZqISHVaoqdCOZwu9lhjBhVKjkqCiBE6WQRRWApiHFaIMurXf8CHBdwsVBdg1e6sj8Jw4iZstinNh+pQFFKtFc2BbEo6TVwh2l0PClQbklQzHbnLpUKFCdHxFVa1FH1h4V0+qzTL+JAqsV1N3DVwlPKggCCh2+xmT9wfYWO+2ZqXRoYbHJ+feYxILWqNiP1L43AHDePvlA2EnJA9TnqbuGrhWSWLZbGjOGz1JTmq2DTtvozCGXOAaqu8XngpKv7veoIValwOp5gHjODQcibuGrhWmRRj0EKPLkfFqMSOuXmPPJCYSDEx2AH0iAviwW/GZum7hq4S5m0tW1dmu62JZb+zS8ncf6QtpuWmv9IcVhWV61qYegrq3FfI0z1Jum7gDpG/bM59WiKjAiWj8PTnvBDilbWgru7hW5MEKWj2B2YQT4dkGxl4KLqq16QvFaphcH8fIS91zDZYOGtNk79QlPYY96n7H7lgh2t5CwbgqVZmBVMwLBo2tmfH2mZLpbVmM+EHPbqU+ZUirbqF0Kiy0QHABq8trqLIBQdpmebG+9wgZ+BxMbfzhNXn6nz/3P1emfBy0OH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:27 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Boston,%20MA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:27 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Alta%20California,%20Nueva%20Espa%C3%B1a.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1233841798033788928/jzRmzZRm_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '246844' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Last-Modified: - - Sat, 29 Feb 2020 19:47:42 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1233841798033788928 - X-Cache: - - HIT - X-Connection-Hash: - - 5b301d2a2dd8373af219fb1bc66eec4b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:27 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Alta%20California,%20Nueva%20Espa%C3%B1a.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=North%20Carolina,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/647896538690093056/2eH3q98k_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1778' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:28 GMT - Last-Modified: - - Sat, 26 Sep 2015 22:10:26 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/647896538690093056 - X-Cache: - - HIT - X-Connection-Hash: - - 41cc955dd9c440d6e1a37d30b86caf48 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=North%20Carolina,%20USA&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pyongyang&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1188215742430404608/dm_uXrxl_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '1605' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:28 GMT - Last-Modified: - - Sat, 26 Oct 2019 22:06:03 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1188215742430404608 - X-Cache: - - HIT - X-Connection-Hash: - - 7d9aac540fe71d0fd89269723a4d0f80 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pyongyang&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1234518540826247167&q=coronavirus&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1a178ad3f615ca50b47f95c764d2c03a", - oauth_signature="Qx9ypBlpbXKYUwiO089na6z6cMM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257108", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '539933' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325710932234559; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:29 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_a5ItHh47q91vUTgjygxbOg=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:29 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 4f19c1f0c0a380485e193950c485fc8c - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '168' - X-Rate-Limit-Reset: - - '1583257471' - X-Response-Time: - - '291' - X-Transaction: - - 00ba040e0014c710 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Mar 02 16:38:50 +0000 2020","id":1234518540658434048,"id_str":"1234518540658434048","text":"RT - @thota_J: About #CoronaVirus and precautions \n\n#CoronaVirusUpdate #CoronaOutbreak - https:\/\/t.co\/ZjevDDPFsh","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[19,31]},{"text":"CoronaVirusUpdate","indices":[50,68]},{"text":"CoronaOutbreak","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"thota_J","name":"THOTA\u2122\ufe0f","id":91767550,"id_str":"91767550","indices":[3,11]}],"urls":[],"media":[{"id":1234454660913614849,"id_str":"1234454660913614849","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-UMU0AEztnN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-UMU0AEztnN.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":827,"h":1393,"resize":"fit"},"small":{"w":404,"h":680,"resize":"fit"},"medium":{"w":712,"h":1200,"resize":"fit"}},"source_status_id":1234454678890369025,"source_status_id_str":"1234454678890369025","source_user_id":91767550,"source_user_id_str":"91767550"}]},"extended_entities":{"media":[{"id":1234454660913614849,"id_str":"1234454660913614849","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-UMU0AEztnN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-UMU0AEztnN.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":827,"h":1393,"resize":"fit"},"small":{"w":404,"h":680,"resize":"fit"},"medium":{"w":712,"h":1200,"resize":"fit"}},"source_status_id":1234454678890369025,"source_status_id_str":"1234454678890369025","source_user_id":91767550,"source_user_id_str":"91767550"},{"id":1234454660909432832,"id_str":"1234454660909432832","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-ULVAAAhdiJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-ULVAAAhdiJ.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":634,"h":1200,"resize":"fit"},"large":{"w":828,"h":1568,"resize":"fit"},"small":{"w":359,"h":680,"resize":"fit"}},"source_status_id":1234454678890369025,"source_status_id_str":"1234454678890369025","source_user_id":91767550,"source_user_id_str":"91767550"},{"id":1234454660909395968,"id_str":"1234454660909395968","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-ULUcAAm36j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-ULUcAAm36j.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"small":{"w":351,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":619,"h":1200,"resize":"fit"},"large":{"w":827,"h":1604,"resize":"fit"}},"source_status_id":1234454678890369025,"source_status_id_str":"1234454678890369025","source_user_id":91767550,"source_user_id_str":"91767550"},{"id":1234454660901064705,"id_str":"1234454660901064705","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-UJVUAEF5U5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-UJVUAEF5U5.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"medium":{"w":622,"h":1200,"resize":"fit"},"small":{"w":353,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":827,"h":1595,"resize":"fit"}},"source_status_id":1234454678890369025,"source_status_id_str":"1234454678890369025","source_user_id":91767550,"source_user_id_str":"91767550"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253697371,"id_str":"3253697371","name":"\u2764\ufe0fSwathi_Queen\u2764\ufe0f","screen_name":"priyankaspeakes","location":"Instagram| - Pinterest|Tumbler","description":"Busy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3153,"friends_count":355,"listed_count":76,"created_at":"Tue - Jun 23 13:29:34 +0000 2015","favourites_count":33036,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62591,"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\/1180466682873016322\/noAkWWZ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180466682873016322\/noAkWWZ3_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:25:05 +0000 2020","id":1234454678890369025,"id_str":"1234454678890369025","text":"About - #CoronaVirus and precautions \n\n#CoronaVirusUpdate #CoronaOutbreak https:\/\/t.co\/ZjevDDPFsh","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[6,18]},{"text":"CoronaVirusUpdate","indices":[37,55]},{"text":"CoronaOutbreak","indices":[56,71]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234454660913614849,"id_str":"1234454660913614849","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-UMU0AEztnN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-UMU0AEztnN.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":827,"h":1393,"resize":"fit"},"small":{"w":404,"h":680,"resize":"fit"},"medium":{"w":712,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234454660913614849,"id_str":"1234454660913614849","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-UMU0AEztnN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-UMU0AEztnN.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":827,"h":1393,"resize":"fit"},"small":{"w":404,"h":680,"resize":"fit"},"medium":{"w":712,"h":1200,"resize":"fit"}}},{"id":1234454660909432832,"id_str":"1234454660909432832","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-ULVAAAhdiJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-ULVAAAhdiJ.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":634,"h":1200,"resize":"fit"},"large":{"w":828,"h":1568,"resize":"fit"},"small":{"w":359,"h":680,"resize":"fit"}}},{"id":1234454660909395968,"id_str":"1234454660909395968","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-ULUcAAm36j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-ULUcAAm36j.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"small":{"w":351,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":619,"h":1200,"resize":"fit"},"large":{"w":827,"h":1604,"resize":"fit"}}},{"id":1234454660901064705,"id_str":"1234454660901064705","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGp-UJVUAEF5U5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGp-UJVUAEF5U5.jpg","url":"https:\/\/t.co\/ZjevDDPFsh","display_url":"pic.twitter.com\/ZjevDDPFsh","expanded_url":"https:\/\/twitter.com\/thota_J\/status\/1234454678890369025\/photo\/1","type":"photo","sizes":{"medium":{"w":622,"h":1200,"resize":"fit"},"small":{"w":353,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":827,"h":1595,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91767550,"id_str":"91767550","name":"THOTA\u2122\ufe0f","screen_name":"thota_J","location":"Telugudesam","description":"\ud83c\uddee\ud83c\uddf3","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3764,"friends_count":195,"listed_count":38,"created_at":"Sun - Nov 22 10:46:02 +0000 2009","favourites_count":9693,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":123180,"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\/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\/1234669389829435403\/SOB9keXU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234669389829435403\/SOB9keXU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91767550\/1581271020","profile_link_color":"E81C4F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5279,"favorite_count":8506,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5279,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540612276224,"id_str":"1234518540612276224","text":"BREAKING: - GB U18s tournaments cancelled by IIHF due to Coronavirus\u00a0concerns https:\/\/t.co\/zLO7qLwzPL - https:\/\/t.co\/HCb5sujmVf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zLO7qLwzPL","expanded_url":"https:\/\/chasingthepuck.com\/breaking-gb-u18s-tournaments-cancelled-by-iihf-due-to-coronavirus-concerns\/","display_url":"chasingthepuck.com\/breaking-gb-u1\u2026","indices":[76,99]}],"media":[{"id":1234518539169517568,"id_str":"1234518539169517568","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkEhPVUAAFzO7.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkEhPVUAAFzO7.png","url":"https:\/\/t.co\/HCb5sujmVf","display_url":"pic.twitter.com\/HCb5sujmVf","expanded_url":"https:\/\/twitter.com\/CTPHockey\/status\/1234518540612276224\/photo\/1","type":"photo","sizes":{"small":{"w":632,"h":438,"resize":"fit"},"medium":{"w":632,"h":438,"resize":"fit"},"large":{"w":632,"h":438,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1234518539169517568,"id_str":"1234518539169517568","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkEhPVUAAFzO7.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkEhPVUAAFzO7.png","url":"https:\/\/t.co\/HCb5sujmVf","display_url":"pic.twitter.com\/HCb5sujmVf","expanded_url":"https:\/\/twitter.com\/CTPHockey\/status\/1234518540612276224\/photo\/1","type":"photo","sizes":{"small":{"w":632,"h":438,"resize":"fit"},"medium":{"w":632,"h":438,"resize":"fit"},"large":{"w":632,"h":438,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.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,"user":{"id":4892004633,"id_str":"4892004633","name":"\ud83c\uddec\ud83c\udde7 - Chasing The Puck \ud83c\udff3\ufe0f\u200d\ud83c\udf08","screen_name":"CTPHockey","location":"United - Kingdom","description":"UK \ud83c\uddec\ud83c\udde7 not-for-profit hockey - site | Home of EIHL #NMOTW award | Ambassador for @TheGoalieGuild\n\ud83c\udfd2 - We are the goalie people \ud83e\udd45 Est. 2016","url":"https:\/\/t.co\/VsaLL7R80x","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VsaLL7R80x","expanded_url":"http:\/\/chasingthepuck.com","display_url":"chasingthepuck.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3062,"friends_count":716,"listed_count":14,"created_at":"Tue - Feb 09 14:32:40 +0000 2016","favourites_count":5814,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6682,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170635283131486209\/ednETtzW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170635283131486209\/ednETtzW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4892004633\/1581006917","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540461281281,"id_str":"1234518540461281281","text":"RT - @NorCalCrush: Inexcusable! Why do you still have so many Obama holdovers? - @POTUS FIRE this guy now!\n\nObama Holdover Made the Call to Fly\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NorCalCrush","name":"Team - CRUSH \u271d\ufe0f \ud83c\uddfa\ud83c\uddf8","id":264934281,"id_str":"264934281","indices":[3,15]},{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[77,83]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":532812122,"id_str":"532812122","name":"disnylandad","screen_name":"BinfordTodd","location":"Brighton, - CO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":498,"listed_count":0,"created_at":"Thu - Mar 22 04:06:32 +0000 2012","favourites_count":11460,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9868,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146393068763013121\/OpqpxqG__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146393068763013121\/OpqpxqG__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/532812122\/1530803576","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:16:27 +0000 2020","id":1234512905027981312,"id_str":"1234512905027981312","text":"Inexcusable! - Why do you still have so many Obama holdovers? @POTUS FIRE this guy now!\n\nObama - Holdover Made the Call\u2026 https:\/\/t.co\/5t2NWsST4j","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[60,66]}],"urls":[{"url":"https:\/\/t.co\/5t2NWsST4j","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234512905027981312","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":264934281,"id_str":"264934281","name":"Team - CRUSH \u271d\ufe0f \ud83c\uddfa\ud83c\uddf8","screen_name":"NorCalCrush","location":"Northern - California","description":"CA Conservatives Reclaiming US Heritage by Harvesting - the Power of Knowledge. It''s Time to Take Back California.\nP.S.: Our banner - was modified by Allan Sluis.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10229,"friends_count":10774,"listed_count":116,"created_at":"Sat - Mar 12 18:13:55 +0000 2011","favourites_count":44117,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":145649,"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\/1290663128\/norcal_crush_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290663128\/norcal_crush_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264934281\/1398281443","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":10,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540444676096,"id_str":"1234518540444676096","text":"RT - @batalysta: Calls Grow to Quarantine Senator Chris Murphy after Secret Meeting - with Coronavirus Carriers from Iranian Regime https:\/\/t.c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"batalysta","name":"Batalysta","id":45971460,"id_str":"45971460","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159230211,"id_str":"159230211","name":"Blanche - Victoria","screen_name":"tammytabby","location":"Georgia","description":"Native - of New York City, NY. \nConservative.\nCorporate Assistant-Banking, Oil.\nEnjoy - Photography -Cooking- Politics.\n\n#CONSTITUTION #AmericaFirst #KAG","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20170,"friends_count":20159,"listed_count":237,"created_at":"Thu - Jun 24 20:40:35 +0000 2010","favourites_count":12241,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":325410,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1643777408\/dove2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1643777408\/dove2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:24:56 +0000 2020","id":1234515041203953666,"id_str":"1234515041203953666","text":"Calls - Grow to Quarantine Senator Chris Murphy after Secret Meeting with Coronavirus - Carriers from Iranian Regime\u2026 https:\/\/t.co\/oz5llK7hxA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oz5llK7hxA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234515041203953666","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":45971460,"id_str":"45971460","name":"Batalysta","screen_name":"batalysta","location":"NY\/state - of higher taxes","description":"NY-home of CorruptCuomo \ud83c\uddfa\ud83c\uddf8 - MAGA \ud83c\uddfa\ud83c\uddf8 WWG1WGA \ud83c\uddfa\ud83c\uddf8 AKA \"Show - more replies\" \ud83c\uddfa\ud83c\uddf8 Let''s get started on todays news...shall - we? \ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23173,"friends_count":23067,"listed_count":6,"created_at":"Tue - Jun 09 23:05:23 +0000 2009","favourites_count":31692,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72023,"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\/979066824732979202\/VugBQT7d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979066824732979202\/VugBQT7d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45971460\/1575973161","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":45,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540394389504,"id_str":"1234518540394389504","text":"RT - @NASA: Pollution monitoring satellites have detected significant decreases - in nitrogen dioxide over China. There is evidence that the ch\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NASA","name":"NASA","id":11348282,"id_str":"11348282","indices":[3,8]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":960353816339152896,"id_str":"960353816339152896","name":"SG","screen_name":"StephanyGarV","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":181,"listed_count":0,"created_at":"Mon - Feb 05 03:26:07 +0000 2018","favourites_count":4011,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":333,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233226527015342080\/R1PW3uP4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233226527015342080\/R1PW3uP4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960353816339152896\/1535943532","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 18:34:31 +0000 2020","id":1234185262290415618,"id_str":"1234185262290415618","text":"Pollution - monitoring satellites have detected significant decreases in nitrogen dioxide - over China. There is eviden\u2026 https:\/\/t.co\/cEQx0cS3zi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cEQx0cS3zi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234185262290415618","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":11348282,"id_str":"11348282","name":"NASA","screen_name":"NASA","location":"","description":"Explore - the universe and discover our home planet with @NASA. We usually post in EST - (UTC-4)","url":"https:\/\/t.co\/TcEE6NS8nD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TcEE6NS8nD","expanded_url":"http:\/\/www.nasa.gov","display_url":"nasa.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35417525,"friends_count":216,"listed_count":95059,"created_at":"Wed - Dec 19 20:20:32 +0000 2007","favourites_count":9221,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":59414,"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\/1091070803184177153\/TI2qItoi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1091070803184177153\/TI2qItoi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11348282\/1583165448","profile_link_color":"205BA7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F2F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2386,"favorite_count":6729,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2386,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540293746689,"id_str":"1234518540293746689","text":"https:\/\/t.co\/i1o1UuL5Ec","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/i1o1UuL5Ec","expanded_url":"https:\/\/www.cnn.com\/videos\/politics\/2020\/03\/01\/joe-biden-trump-coronavirus-sotu-vpx.cnn","display_url":"cnn.com\/videos\/politic\u2026","indices":[0,23]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":846720529247735809,"id_str":"846720529247735809","name":"FP - Dunneagin","screen_name":"FPDComments","location":"Washington, DC","description":"Curating - the pestilence that is Trump & Trumpism. \n\nFmr Senate & House staffer & - 2x presidential appointee; proud Gaucho & Hoya; avid golfer & int''l traveler.","url":"https:\/\/t.co\/9yOmGhgwni","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9yOmGhgwni","expanded_url":"https:\/\/www.fpdcomments.com","display_url":"fpdcomments.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":359,"friends_count":1182,"listed_count":2,"created_at":"Tue - Mar 28 13:48:00 +0000 2017","favourites_count":713,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8747,"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\/1190254164510728193\/DIqAxBy0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190254164510728193\/DIqAxBy0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/846720529247735809\/1580948449","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540234960900,"id_str":"1234518540234960900","text":"RT - @EP_President: LIVE: Press conference on the EU response to the Coronavirus. - #COVID19 https:\/\/t.co\/uD8LoFau6l","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[80,88]}],"symbols":[],"user_mentions":[{"screen_name":"EP_President","name":"David - Sassoli","id":818837224003289088,"id_str":"818837224003289088","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/uD8LoFau6l","expanded_url":"https:\/\/twitter.com\/i\/broadcasts\/1PlJQmqrPONJE","display_url":"twitter.com\/i\/broadcasts\/1\u2026","indices":[89,112]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":712119296135139328,"id_str":"712119296135139328","name":"StillMe","screen_name":"dutchess_becky","location":"","description":"Survivor, - mother, thinker, friend. \nBy the Grace of God go I.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":499,"friends_count":343,"listed_count":6,"created_at":"Tue - Mar 22 03:30:45 +0000 2016","favourites_count":30553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59768,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/946574384113901568\/3TgdwbDx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/946574384113901568\/3TgdwbDx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/712119296135139328\/1554903964","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:20 +0000 2020","id":1234517907981377538,"id_str":"1234517907981377538","text":"LIVE: - Press conference on the EU response to the Coronavirus. #COVID19 https:\/\/t.co\/uD8LoFau6l","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[62,70]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uD8LoFau6l","expanded_url":"https:\/\/twitter.com\/i\/broadcasts\/1PlJQmqrPONJE","display_url":"twitter.com\/i\/broadcasts\/1\u2026","indices":[71,94]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":818837224003289088,"id_str":"818837224003289088","name":"David - Sassoli","screen_name":"EP_President","location":"","description":"President - of @Europarl_EN, the European house of democracy, representing the voices - of over 500 million EU citizens. Account managed by my media team.","url":"https:\/\/t.co\/WMqq7iucwM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WMqq7iucwM","expanded_url":"https:\/\/www.europarl.europa.eu\/the-president\/","display_url":"europarl.europa.eu\/the-president\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":193326,"friends_count":179,"listed_count":1023,"created_at":"Tue - Jan 10 15:09:42 +0000 2017","favourites_count":434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"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\/1146382867255222272\/OjbXcOfR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146382867255222272\/OjbXcOfR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818837224003289088\/1562153971","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":63,"favorite_count":48,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540226568193,"id_str":"1234518540226568193","text":"5. - Unfollow the twitter account @howroute. He has been spreading coronavirus - misinformation since news broke. He al\u2026 https:\/\/t.co\/5F8mJ4ydyy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"howroute","name":"Max - Howroute\u25ab\ufe0f","id":558866314,"id_str":"558866314","indices":[32,41]}],"urls":[{"url":"https:\/\/t.co\/5F8mJ4ydyy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518540226568193","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234516997133742083,"in_reply_to_status_id_str":"1234516997133742083","in_reply_to_user_id":65284273,"in_reply_to_user_id_str":"65284273","in_reply_to_screen_name":"JaneLytv","user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540151140353,"id_str":"1234518540151140353","text":"RT - @LFLegal: #CSUNATC20 organizers: pls read this thread and consult with #disabled - attendees like @ChanceyFleet, @lifeinbraille to make s\u2026","truncated":false,"entities":{"hashtags":[{"text":"CSUNATC20","indices":[13,23]},{"text":"disabled","indices":[75,84]}],"symbols":[],"user_mentions":[{"screen_name":"LFLegal","name":"Lainey - Feingold","id":123320090,"id_str":"123320090","indices":[3,11]},{"screen_name":"ChanceyFleet","name":"Chancey - Fleet","id":983073284,"id_str":"983073284","indices":[100,113]},{"screen_name":"lifeinbraille","name":"Erin - Lauridsen","id":2179034131,"id_str":"2179034131","indices":[115,129]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26429525,"id_str":"26429525","name":"Joe - Steinkamp","screen_name":"RangerStation","location":"Charlotte, NC","description":"Producer - Of Tech And Geek Related Podcasts, Semi Blogger And Finder Of Things To Waste - Time With From Around The Net","url":"https:\/\/t.co\/cXPvseN3Ei","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cXPvseN3Ei","expanded_url":"http:\/\/therangerstation.blogspot.com\/","display_url":"therangerstation.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2483,"friends_count":944,"listed_count":271,"created_at":"Wed - Mar 25 04:25:45 +0000 2009","favourites_count":149,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122773,"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\/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\/977976576959827969\/nq2mkhaE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/977976576959827969\/nq2mkhaE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26429525\/1569770015","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:35:08 +0000 2020","id":1234502509588172801,"id_str":"1234502509588172801","text":"#CSUNATC20 - organizers: pls read this thread and consult with #disabled attendees like - @ChanceyFleet,\u2026 https:\/\/t.co\/CuU5i5ssr3","truncated":true,"entities":{"hashtags":[{"text":"CSUNATC20","indices":[0,10]},{"text":"disabled","indices":[62,71]}],"symbols":[],"user_mentions":[{"screen_name":"ChanceyFleet","name":"Chancey - Fleet","id":983073284,"id_str":"983073284","indices":[87,100]}],"urls":[{"url":"https:\/\/t.co\/CuU5i5ssr3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234502509588172801","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[103,126]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123320090,"id_str":"123320090","name":"Lainey - Feingold","screen_name":"LFLegal","location":"","description":"Disability - rights lawyer; Speaker; Author of Structured Negotiation, A Winning Alternative - to Lawsuits. Digital access #a11y; ABA #LegalRebel. Tweets not advice","url":"https:\/\/t.co\/saOWidbang","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/saOWidbang","expanded_url":"http:\/\/lflegal.com\/","display_url":"lflegal.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5751,"friends_count":1033,"listed_count":412,"created_at":"Mon - Mar 15 18:26:45 +0000 2010","favourites_count":2410,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7434,"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\/758711330027085826\/4hQap_kM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/758711330027085826\/4hQap_kM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123320090\/1463062397","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234409332147617793,"quoted_status_id_str":"1234409332147617793","quoted_status":{"created_at":"Mon - Mar 02 09:24:53 +0000 2020","id":1234409332147617793,"id_str":"1234409332147617793","text":"Hopefully - the planned signage will include: if you are going to offer your arm to Blind - friends or colleagues, plea\u2026 https:\/\/t.co\/odLjB0KN8I","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/odLjB0KN8I","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234409332147617793","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983073284,"id_str":"983073284","name":"Chancey - Fleet","screen_name":"ChanceyFleet","location":"Brooklyn, NY","description":"Tech - while Blind: sometimes friction, sometimes joy. nonvisual tech ed & design - @NYPLHeiskell; president NFB tech trainers'' division; affiliate @Datasociety.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2914,"friends_count":899,"listed_count":116,"created_at":"Sat - Dec 01 18:22:20 +0000 2012","favourites_count":3236,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8015,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/701079088560271361\/pPGTG57e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/701079088560271361\/pPGTG57e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/983073284\/1573649716","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234160472821121024,"quoted_status_id_str":"1234160472821121024","retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":15,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234409332147617793,"quoted_status_id_str":"1234409332147617793","retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540113321984,"id_str":"1234518540113321984","text":"RT - @astropierre: Courbe de r\u00e9partition de la mortalit\u00e9 du coronavirus, - \u00e0 partir de 44 000 cas r\u00e9pertori\u00e9s en Chine mi-f\u00e9vrier.\n\nLes - ~3% de\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"astropierre","name":"astropierre","id":995791838,"id_str":"995791838","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":704044896722747392,"id_str":"704044896722747392","name":"Kamoulox: - choisissez mon nom!","screen_name":"Etnousalors11","location":"","description":"Un - dingue qui tweet... \ud83d\ude48\ud83d\ude49\ud83d\ude4amais qui ne supporte - aucune forme d''extr\u00e9misme","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":1756,"listed_count":215,"created_at":"Sun - Feb 28 20:45:58 +0000 2016","favourites_count":26159,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28562,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704045755170947072\/AHaMgfqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704045755170947072\/AHaMgfqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/704044896722747392\/1549917277","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 07:59:53 +0000 2020","id":1234387941109256192,"id_str":"1234387941109256192","text":"Courbe - de r\u00e9partition de la mortalit\u00e9 du coronavirus, \u00e0 partir de - 44 000 cas r\u00e9pertori\u00e9s en Chine mi-f\u00e9vrier.\n\nLes\u2026 https:\/\/t.co\/D6dGZbgJyc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/D6dGZbgJyc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234387941109256192","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":995791838,"id_str":"995791838","name":"astropierre","screen_name":"astropierre","location":"Lyon, - France","description":"Ici, on parle de Science, mais pas que...\nPosez-moi - vos questions, \u00e7a ne co\u00fbte rien","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29900,"friends_count":2117,"listed_count":404,"created_at":"Fri - Dec 07 20:18:25 +0000 2012","favourites_count":71457,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107716,"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\/965633961769816064\/la0gbe3C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/965633961769816064\/la0gbe3C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/995791838\/1483874407","profile_link_color":"2FC2EF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":960,"favorite_count":1583,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":960,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518540012728320,"id_str":"1234518540012728320","text":"#Coronavirus - Dutch way : \"Only call the doctor if you have been to an area where # COVID19 - is prevalent + have a fe\u2026 https:\/\/t.co\/ZYzLRV7Bva","truncated":true,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZYzLRV7Bva","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518540012728320","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1114894580548345857,"id_str":"1114894580548345857","name":"Ugo","screen_name":"Ugo17552136","location":"","description":"La - cultura mi persegue ma io sono pi\u00f9 veloce. Storia e Geografia non sono - solo materie scolastiche, ma uno stile di vita. Since 1974","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":215,"listed_count":0,"created_at":"Sun - Apr 07 14:15:56 +0000 2019","favourites_count":1944,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":367,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1164592493666742273\/uG4hxXs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164592493666742273\/uG4hxXs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1114894580548345857\/1566495461","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539974905856,"id_str":"1234518539974905856","text":"RT - @Aleminoacida: Lo de lavarse las manos despu\u00e9s de salir del ba\u00f1o - y taparse la boca cuando estornudan o tosen tambi\u00e9n lo pueden hacer sin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Aleminoacida","name":"Monaleja","id":67473156,"id_str":"67473156","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":844582466589507586,"id_str":"844582466589507586","name":"RICARDO - SANDOVAL - Pingo Antiuribista","screen_name":"sandovalricar17","location":"","description":"Otro - pingo en Bogot\u00e1..!!!! antiuribista hasta los t\u00faetanos ! #SigamonosLosBuenos2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":681,"friends_count":1057,"listed_count":0,"created_at":"Wed - Mar 22 16:12:06 +0000 2017","favourites_count":17039,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8689,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224667969285914624\/idhUHom4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224667969285914624\/idhUHom4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/844582466589507586\/1532883985","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:22 +0000 2020","id":1234517916638380034,"id_str":"1234517916638380034","text":"Lo - de lavarse las manos despu\u00e9s de salir del ba\u00f1o y taparse la boca - cuando estornudan o tosen tambi\u00e9n lo pueden hac\u2026 https:\/\/t.co\/LYBdDg0awb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LYBdDg0awb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517916638380034","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67473156,"id_str":"67473156","name":"Monaleja","screen_name":"Aleminoacida","location":"Bogot\u00e1 - Cardenal, Gonotown CO","description":"Dise\u00f1adora, santafere\u00f1a, viajera, - amante de la naturaleza, apasionada por las letras y motivada por la m\u00fasica. - En ese orden.","url":"https:\/\/t.co\/c5pE7LTCpc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c5pE7LTCpc","expanded_url":"http:\/\/instagram.com\/caperucita_matalobos","display_url":"instagram.com\/caperucita_mat\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9055,"friends_count":4904,"listed_count":38,"created_at":"Fri - Aug 21 00:41:46 +0000 2009","favourites_count":46881,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EB2874","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\/1216025030913613825\/a626A7R7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216025030913613825\/a626A7R7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67473156\/1442618478","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"3A347C","profile_text_color":"852B71","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":96,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":33,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539970732032,"id_str":"1234518539970732032","text":"Eu - n\u00e3o vou beijar a tua boca o coronavirus t\u00e1 no auge","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":722810352602324992,"id_str":"722810352602324992","name":"um - maluco","screen_name":"ifelipexavier","location":"S\u00e3o Lu\u00eds, Brasil","description":"mais - um rapaz latino americano sem dinheiro no banco","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":317,"listed_count":0,"created_at":"Wed - Apr 20 15:33:12 +0000 2016","favourites_count":6732,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1524,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231393421220249600\/7LVXInsC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231393421220249600\/7LVXInsC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/722810352602324992\/1582422111","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539945435136,"id_str":"1234518539945435136","text":"RT - @UNICEFIndonesia: Bagaimana #CoronaVirus dapat menyebar dan apa saja yang - dapat kamu lakukan untuk melindungi diri? \n\u2063\nCredit:\u2063\nIlustras\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[31,43]}],"symbols":[],"user_mentions":[{"screen_name":"UNICEFIndonesia","name":"UNICEF - Indonesia","id":65604255,"id_str":"65604255","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1120172694001991680,"id_str":"1120172694001991680","name":"jun","screen_name":"bukanjunaedi","location":"","description":"P - for punten","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1253,"friends_count":1255,"listed_count":0,"created_at":"Mon - Apr 22 03:49:16 +0000 2019","favourites_count":1128,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":882,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234833664967495682\/NLDiJOPL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234833664967495682\/NLDiJOPL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1120172694001991680\/1583243156","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 17 12:11:09 +0000 2020","id":1229377744250650624,"id_str":"1229377744250650624","text":"Bagaimana - #CoronaVirus dapat menyebar dan apa saja yang dapat kamu lakukan untuk melindungi - diri? \n\u2063\nCredit:\u2063\nIlust\u2026 https:\/\/t.co\/VvY6NQ71cD","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[10,22]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VvY6NQ71cD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1229377744250650624","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65604255,"id_str":"65604255","name":"UNICEF - Indonesia","screen_name":"UNICEFIndonesia","location":"Jakarta, Indonesia","description":"Akun - Twitter resmi UNICEF Indonesia.\n\nFacebook: UNICEF Indonesia \nInstagram: - unicefindonesia \nLinkedin: UNICEF Indonesia\nYoutube: UNICEF Indonesia","url":"https:\/\/t.co\/wENC1jyYdA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wENC1jyYdA","expanded_url":"https:\/\/www.unicef.org\/indonesia\/id","display_url":"unicef.org\/indonesia\/id","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":63271,"friends_count":298,"listed_count":318,"created_at":"Fri - Aug 14 09:58:58 +0000 2009","favourites_count":964,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":13512,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"332828","profile_background_image_url":"http:\/\/abs.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\/859619166407593985\/Z-gTwNzL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/859619166407593985\/Z-gTwNzL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65604255\/1543564054","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DEDEE0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1578,"favorite_count":879,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":1578,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539941416960,"id_str":"1234518539941416960","text":"Stock - market coronavirus drop was painful, but buying opportunities may arise https:\/\/t.co\/eyanJKwSeg - via @nypost","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nypost","name":"New - York Post","id":17469289,"id_str":"17469289","indices":[106,113]}],"urls":[{"url":"https:\/\/t.co\/eyanJKwSeg","expanded_url":"https:\/\/nypost.com\/2020\/02\/29\/stock-market-not-so-sickly-coronavirus-fears\/?utm_source=twitter_sitebuttons&utm_medium=site%20buttons&utm_campaign=site%20buttons","display_url":"nypost.com\/2020\/02\/29\/sto\u2026","indices":[78,101]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":557042952,"id_str":"557042952","name":"Jonathon - Trugman","screen_name":"JonathonTrugman","location":"NY","description":"NY - POST Sunday Business Columnist, Fan of all things Markets and Economics","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1645,"friends_count":4961,"listed_count":64,"created_at":"Wed - Apr 18 15:27:36 +0000 2012","favourites_count":25087,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33408,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2150149461\/JMT_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2150149461\/JMT_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"},"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539941359616,"id_str":"1234518539941359616","text":"RT - @Catmandu50: Senior Advisor To The Ayatollah Dies Of Coronavirus As Iran Rejects - Offer Of US Aid\n\nhttps:\/\/t.co\/02Tg1Eu67d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Catmandu50","name":"CATTY - PATRIOT","id":803260509353111557,"id_str":"803260509353111557","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/02Tg1Eu67d","expanded_url":"https:\/\/www.zerohedge.com\/geopolitical\/ayatollahs-senior-advisor-dies-coronavirus-iran-rejects-offer-us-aid","display_url":"zerohedge.com\/geopolitical\/a\u2026","indices":[101,124]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1036960803352727552,"id_str":"1036960803352727552","name":"Ron - Hatcher","screen_name":"RonHatcher8","location":"","description":"love our - prez! #Walkaway, MAGA, KAG, Patriot, Trump Supporter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1445,"friends_count":1471,"listed_count":0,"created_at":"Tue - Sep 04 12:54:56 +0000 2018","favourites_count":12463,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1036962377722281984\/31NtAtnS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1036962377722281984\/31NtAtnS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1036960803352727552\/1536066106","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:33:13 +0000 2020","id":1234502024336756736,"id_str":"1234502024336756736","text":"Senior - Advisor To The Ayatollah Dies Of Coronavirus As Iran Rejects Offer Of US Aid\n\nhttps:\/\/t.co\/02Tg1Eu67d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/02Tg1Eu67d","expanded_url":"https:\/\/www.zerohedge.com\/geopolitical\/ayatollahs-senior-advisor-dies-coronavirus-iran-rejects-offer-us-aid","display_url":"zerohedge.com\/geopolitical\/a\u2026","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":803260509353111557,"id_str":"803260509353111557","name":"CATTY - PATRIOT","screen_name":"Catmandu50","location":"USA","description":"Retired - RN,#MAGA, NO DMs!!\nFB @GenFlynn @RyanAFournier @TheMarkPantano @ScottPresler - @realDrGina @prayingmedic @Education4Libs I follow back Patriots!!!\nNO DM!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56645,"friends_count":56143,"listed_count":29,"created_at":"Mon - Nov 28 15:33:24 +0000 2016","favourites_count":209254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70627,"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\/1048717468557082625\/Uh3Xirt5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1048717468557082625\/Uh3Xirt5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/803260509353111557\/1532555312","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539928850432,"id_str":"1234518539928850432","text":"RT - @fitserbmomma: Rainy days and Mondays and Coronavirus always get me down.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fitserbmomma","name":"I, - Klaudia","id":1955090220,"id_str":"1955090220","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2267113827,"id_str":"2267113827","name":"\u2603\ufe0f\ud83d\udc3eReds\ud83d\udcab\ud83c\udf84","screen_name":"reds1863","location":"Right - Here, Right Now","description":"\ud83d\udcdaHistory & Sci-fi Nut, \ud83c\udf0cStar - Gazer\ud83d\udd2d, Doctor Who, Good Omens, A Discovery of Witches, Outlander, - Star Wars, GOT. Not all those who wander are lost.\ud83c\udf7b\ud83c\udf3b","url":"https:\/\/t.co\/iPOpab7AaL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iPOpab7AaL","expanded_url":"https:\/\/www.nps.gov\/shen\/index.htm","display_url":"nps.gov\/shen\/index.htm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2510,"friends_count":1995,"listed_count":162,"created_at":"Tue - Jan 07 15:38:01 +0000 2014","favourites_count":197435,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68658,"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\/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\/1171957262681817090\/FeUKuiEz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171957262681817090\/FeUKuiEz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2267113827\/1559861013","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:59:42 +0000 2020","id":1234493591319457795,"id_str":"1234493591319457795","text":"Rainy - days and Mondays and Coronavirus always get me down.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1955090220,"id_str":"1955090220","name":"I, - Klaudia","screen_name":"fitserbmomma","location":"Michigan, USA","description":"Misanthropic - masochist.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2439,"friends_count":3281,"listed_count":42,"created_at":"Fri - Oct 11 21:29:55 +0000 2013","favourites_count":103148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":78674,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212542614404313090\/pS754zG9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212542614404313090\/pS754zG9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1955090220\/1516978595","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"},"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539480059905,"id_str":"1234518539480059905","text":"RT - @ewarren: I''ve been worried that our economy is heading towards another crash\u2014and - coronavirus is already a serious economic threat. I''ve\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":827544166624325632,"id_str":"827544166624325632","name":"Tracey - Chardavoyne","screen_name":"TraceyChardavo1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":345,"friends_count":1131,"listed_count":0,"created_at":"Fri - Feb 03 15:47:59 +0000 2017","favourites_count":250896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76872,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/833867410172162050\/M8eYNWz0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/833867410172162050\/M8eYNWz0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:39:50 +0000 2020","id":1234503692398866432,"id_str":"1234503692398866432","text":"I''ve - been worried that our economy is heading towards another crash\u2014and coronavirus - is already a serious economic t\u2026 https:\/\/t.co\/8djM7inFtq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8djM7inFtq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503692398866432","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357606935,"id_str":"357606935","name":"Elizabeth - Warren","screen_name":"ewarren","location":"Massachusetts","description":"U.S. - Senator, former teacher, and candidate for president. Wife, mom (Amelia, Alex, - Bailey, @CFPB), grandmother, and Okie. She\/her. Official campaign account.","url":"https:\/\/t.co\/5jpXuSnwli","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5jpXuSnwli","expanded_url":"http:\/\/ewar.ren\/chip-in","display_url":"ewar.ren\/chip-in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3831315,"friends_count":521,"listed_count":15758,"created_at":"Thu - Aug 18 16:43:48 +0000 2011","favourites_count":116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9199,"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\/1215406626049413121\/LiVKh64l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215406626049413121\/LiVKh64l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357606935\/1578610497","profile_link_color":"232444","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"7DA6D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1508,"favorite_count":5511,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1508,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539480027138,"id_str":"1234518539480027138","text":"#complotisme - et #coronavirus\nLe virus de la connerie n''a pas fini de faire des victimes - !\n\nhttps:\/\/t.co\/eXZxF1o0vj","truncated":false,"entities":{"hashtags":[{"text":"complotisme","indices":[0,12]},{"text":"coronavirus","indices":[16,28]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eXZxF1o0vj","expanded_url":"http:\/\/se-preparer-aux-crises.fr\/je-crois-que-le-coronavirus-est-un-leurre-pour-dissimuler-l-hecatombe-par-la-5g\/","display_url":"se-preparer-aux-crises.fr\/je-crois-que-l\u2026","indices":[91,114]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":415500391,"id_str":"415500391","name":"marc - bouvier","screen_name":"marcbouvier_05","location":"Berlin","description":"\"Le - probl\u00e8me du raciste ce ne sont pas les autres, mais c''est lui-m\u00eame","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":594,"friends_count":451,"listed_count":5,"created_at":"Fri - Nov 18 12:26:26 +0000 2011","favourites_count":30736,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18533,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227017412127678467\/vEd8yhZd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227017412127678467\/vEd8yhZd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/415500391\/1581378723","profile_link_color":"FFFFFF","profile_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"},"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":"fr"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539438055424,"id_str":"1234518539438055424","text":"RT - @DeItaOne: LATVIA REPORTS FIRST CONFIRMED CASE OF CORONAVIRUS \u2013 LATVIAN - GOVERNMENT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeItaOne","name":"*Walter - Bloomberg","id":2704294333,"id_str":"2704294333","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224756196,"id_str":"224756196","name":"Glen - Burnie","screen_name":"Hikeman5000","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":335,"listed_count":3,"created_at":"Thu - Dec 09 19:58:59 +0000 2010","favourites_count":71,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":36179,"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\/747957805886365696\/C6iJvL9i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/747957805886365696\/C6iJvL9i_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:32 +0000 2020","id":1234517960276021248,"id_str":"1234517960276021248","text":"LATVIA - REPORTS FIRST CONFIRMED CASE OF CORONAVIRUS \u2013 LATVIAN GOVERNMENT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2704294333,"id_str":"2704294333","name":"*Walter - Bloomberg","screen_name":"DeItaOne","location":"twitter","description":"Real-time - financial markets News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44718,"friends_count":31,"listed_count":1501,"created_at":"Sun - Aug 03 14:34:52 +0000 2014","favourites_count":3584,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69546,"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\/1147773866242129921\/v_HeM0Fm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1147773866242129921\/v_HeM0Fm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2704294333\/1557143876","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":31,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539354112002,"id_str":"1234518539354112002","text":"holy - shit. \nhttps:\/\/t.co\/hlUmfGLEsl","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hlUmfGLEsl","expanded_url":"https:\/\/nymag.com\/intelligencer\/2020\/03\/a-top-iranian-government-official-has-died-of-coronavirus.html","display_url":"nymag.com\/intelligencer\/\u2026","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248808607,"id_str":"248808607","name":"Jessica - Brown","screen_name":"yessicabrown","location":"Sunnyside, Queens","description":"Producer - @fullbeautystyle","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":173,"friends_count":442,"listed_count":5,"created_at":"Mon - Feb 07 19:32:06 +0000 2011","favourites_count":8422,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4355,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"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\/1142772589363978240\/rQujvPnv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1142772589363978240\/rQujvPnv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248808607\/1427745482","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539253403648,"id_str":"1234518539253403648","text":"RT - @GonCuriel: Qu\u00e9 suerte vivir en Tlaxcala, en una de esas el coronavirus - ni cuenta se da que existe.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GonCuriel","name":"Gon - Curiel","id":58879208,"id_str":"58879208","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107791402,"id_str":"107791402","name":"Galia - Mariana","screen_name":"GaliaMarianaRC","location":"M\u00e9xico","description":"96|\ud83c\uddf2\ud83c\uddfd - |\ud83d\udcf8|Coffee addict|Feminist.","url":"https:\/\/t.co\/BijAXFrWJU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BijAXFrWJU","expanded_url":"https:\/\/www.instagram.com\/galiaramon","display_url":"instagram.com\/galiaramon","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":672,"listed_count":8,"created_at":"Sat - Jan 23 19:09:04 +0000 2010","favourites_count":115173,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21018,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F5EB","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\/1233189935265415168\/0SFNvp9d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233189935265415168\/0SFNvp9d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107791402\/1561789644","profile_link_color":"ABB8C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 19:23:43 +0000 2020","id":1234197643514920960,"id_str":"1234197643514920960","text":"Qu\u00e9 - suerte vivir en Tlaxcala, en una de esas el coronavirus ni cuenta se da que - existe.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58879208,"id_str":"58879208","name":"Gon - Curiel","screen_name":"GonCuriel","location":"MX","description":"Stand Up - Comedy \ud83c\uddf2\ud83c\uddfd | Insta: goncuriel | Podcast: @ElDesprecioHist - | https:\/\/t.co\/sANZfnYfA5 | contacto@goncuriel.com","url":"https:\/\/t.co\/C0DkV7X12D","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C0DkV7X12D","expanded_url":"http:\/\/goncuriel.com","display_url":"goncuriel.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/sANZfnYfA5","expanded_url":"http:\/\/youtube.com\/goncuriel","display_url":"youtube.com\/goncuriel","indices":[68,91]}]}},"protected":false,"followers_count":181489,"friends_count":636,"listed_count":2288,"created_at":"Tue - Jul 21 18:43:20 +0000 2009","favourites_count":95521,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":59129,"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\/1214816306794336258\/dbi8r9C6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214816306794336258\/dbi8r9C6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58879208\/1558053209","profile_link_color":"995E28","profile_sidebar_border_color":"E4D0AD","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"4F4942","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":365,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518539123322881,"id_str":"1234518539123322881","text":"RT - @mitchellvii: Trump has been working hard to decouple America''s economy from - China, almost without support from even his own party.\n\nAnd\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mitchellvii","name":"Bill - Mitchell","id":17980523,"id_str":"17980523","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214933324289830912,"id_str":"1214933324289830912","name":"Patricia - Higgins","screen_name":"Patrici04743077","location":"","description":"because - I am older an wiser","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":104,"listed_count":0,"created_at":"Wed - Jan 08 15:35:36 +0000 2020","favourites_count":1771,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1775,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 14:14:18 +0000 2020","id":1234119777519644679,"id_str":"1234119777519644679","text":"Trump - has been working hard to decouple America''s economy from China, almost without - support from even his own part\u2026 https:\/\/t.co\/n9TxDekBnn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/n9TxDekBnn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234119777519644679","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17980523,"id_str":"17980523","name":"Bill - Mitchell","screen_name":"mitchellvii","location":"Miami, FL","description":"Host - of YourVoice\u2122 America at https:\/\/t.co\/fXUiBUULvs, Mon-Frid 10am ET - #TrustTrump #MAGA #Trump2020 #2ASupporter #TrustThePlan","url":"https:\/\/t.co\/9CnMPoreW4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9CnMPoreW4","expanded_url":"https:\/\/www.yourvoiceamerica.tv","display_url":"yourvoiceamerica.tv","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fXUiBUULvs","expanded_url":"http:\/\/yourvoiceamerica.tv","display_url":"yourvoiceamerica.tv","indices":[30,53]}]}},"protected":false,"followers_count":536233,"friends_count":10027,"listed_count":3859,"created_at":"Tue - Dec 09 01:54:21 +0000 2008","favourites_count":27001,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":162148,"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\/1180905016326004736\/7yT_G3ZX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180905016326004736\/7yT_G3ZX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17980523\/1527114235","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":467,"favorite_count":1006,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":467,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538905255937,"id_str":"1234518538905255937","text":"RT - @DianOnno: Dari penjelasan Menkes Singapura, penyebaran coronavirus ini melalui - droplets (partikel air kecil) dari batuk atau bersin pen\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DianOnno","name":"Dian - Onno","id":29725195,"id_str":"29725195","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":168670325,"id_str":"168670325","name":"jono\u2081\u2082\u2087","screen_name":"jennifergbrl","location":"","description":"\ud80c\udd9d\ud80c\udd9f\ud80c\udd9c\ud80c\udd9e\ud80c\udda1 - akun pansos","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2057,"friends_count":2716,"listed_count":3,"created_at":"Tue - Jul 20 14:01:55 +0000 2010","favourites_count":41285,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":96862,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2CDBC4","profile_background_image_url":"http:\/\/abs.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\/1231542563246497793\/T2qBXLZ7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231542563246497793\/T2qBXLZ7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/168670325\/1577684232","profile_link_color":"218A13","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"9944FF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 04:59:17 +0000 2020","id":1234342492767649795,"id_str":"1234342492767649795","text":"Dari - penjelasan Menkes Singapura, penyebaran coronavirus ini melalui droplets (partikel - air kecil) dari batuk atau\u2026 https:\/\/t.co\/3WYthCd8tS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3WYthCd8tS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234342492767649795","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29725195,"id_str":"29725195","name":"Dian - Onno","screen_name":"DianOnno","location":"u\u028dop \u01ddp\u0131sdn, Indonesia","description":"Veni, - Vidi, Vetweet. I came, I saw, I bored everyone to death with endless meaningless - tweets.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22661,"friends_count":2324,"listed_count":151,"created_at":"Wed - Apr 08 14:23:55 +0000 2009","favourites_count":19226,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":135549,"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\/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\/1207987350405406722\/ZkCDTos6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207987350405406722\/ZkCDTos6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29725195\/1384160511","profile_link_color":"FF8C00","profile_sidebar_border_color":"FF8C00","profile_sidebar_fill_color":"E0E0E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234336904373579778,"quoted_status_id_str":"1234336904373579778","quoted_status":{"created_at":"Mon - Mar 02 04:37:05 +0000 2020","id":1234336904373579778,"id_str":"1234336904373579778","text":"#BreakingNews - Presiden Jokowi mengonfirmasi dua orang Indonesia positif terjangkit virus - corona. Dua orang ini beri\u2026 https:\/\/t.co\/roWikwEqoI","truncated":true,"entities":{"hashtags":[{"text":"BreakingNews","indices":[0,13]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/roWikwEqoI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234336904373579778","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox 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,"user":{"id":69183155,"id_str":"69183155","name":"detikcom","screen_name":"detikcom","location":"Jakarta, - Indonesia","description":"Official Twitter of https:\/\/t.co\/oOBkZ1EQMA. - redaksi@detik.com | promosi@detik.com | Android: https:\/\/t.co\/uBAYnisH9r - iPhone: https:\/\/t.co\/36uDqdyxKN","url":"https:\/\/t.co\/oOBkZ1EQMA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oOBkZ1EQMA","expanded_url":"http:\/\/www.detik.com","display_url":"detik.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/oOBkZ1EQMA","expanded_url":"http:\/\/www.detik.com","display_url":"detik.com","indices":[20,43]},{"url":"https:\/\/t.co\/uBAYnisH9r","expanded_url":"http:\/\/detik.com\/android","display_url":"detik.com\/android","indices":[94,117]},{"url":"https:\/\/t.co\/36uDqdyxKN","expanded_url":"http:\/\/detik.com\/iphone","display_url":"detik.com\/iphone","indices":[126,149]}]}},"protected":false,"followers_count":15712374,"friends_count":28,"listed_count":13247,"created_at":"Thu - Aug 27 03:03:05 +0000 2009","favourites_count":173,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":1612048,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227061014568394753\/wShmnvE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227061014568394753\/wShmnvE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69183155\/1581480298","profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6967,"favorite_count":8159,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"retweet_count":2282,"favorite_count":1553,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":true,"quoted_status_id":1234336904373579778,"quoted_status_id_str":"1234336904373579778","retweet_count":2282,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538871885824,"id_str":"1234518538871885824","text":"RT - @AFPespanol: \u26bd\ud83c\udde8\ud83c\udded #\u00daLTIMAHORA Suspendido el - campeonato suizo de f\u00fatbol hasta el 23 de marzo por el coronavirus #AFP - https:\/\/t.co\/gF12966T\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u00daLTIMAHORA","indices":[20,31]},{"text":"AFP","indices":[113,117]}],"symbols":[],"user_mentions":[{"screen_name":"AFPespanol","name":"Agence - France-Presse","id":851108442,"id_str":"851108442","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2965302039,"id_str":"2965302039","name":"Richard - Carre\u00f1o","screen_name":"rcarreno26","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":303,"listed_count":4,"created_at":"Wed - Jan 07 02:06:01 +0000 2015","favourites_count":6872,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":91236,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:18:01 +0000 2020","id":1234513301041827840,"id_str":"1234513301041827840","text":"\u26bd\ud83c\udde8\ud83c\udded - #\u00daLTIMAHORA Suspendido el campeonato suizo de f\u00fatbol hasta el 23 - de marzo por el coronavirus #AFP https:\/\/t.co\/gF12966TXk","truncated":false,"entities":{"hashtags":[{"text":"\u00daLTIMAHORA","indices":[4,15]},{"text":"AFP","indices":[97,101]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234513287292780544,"id_str":"1234513287292780544","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHfS0eWAAAkgSl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHfS0eWAAAkgSl.jpg","url":"https:\/\/t.co\/gF12966TXk","display_url":"pic.twitter.com\/gF12966TXk","expanded_url":"https:\/\/twitter.com\/AFPespanol\/status\/1234513301041827840\/photo\/1","type":"photo","sizes":{"small":{"w":506,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":506,"h":253,"resize":"fit"},"medium":{"w":506,"h":253,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234513287292780544,"id_str":"1234513287292780544","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHfS0eWAAAkgSl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHfS0eWAAAkgSl.jpg","url":"https:\/\/t.co\/gF12966TXk","display_url":"pic.twitter.com\/gF12966TXk","expanded_url":"https:\/\/twitter.com\/AFPespanol\/status\/1234513301041827840\/photo\/1","type":"photo","sizes":{"small":{"w":506,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":506,"h":253,"resize":"fit"},"medium":{"w":506,"h":253,"resize":"fit"}}}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":851108442,"id_str":"851108442","name":"Agence - France-Presse","screen_name":"AFPespanol","location":"Montevideo, Uruguay","description":"Las - noticias y las historias del mundo con el aporte de los periodistas de AFP - en 150 pa\u00edses. Tambi\u00e9n en Facebook: https:\/\/t.co\/USg46DHztr","url":"https:\/\/t.co\/xUUUHGq0CB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xUUUHGq0CB","expanded_url":"http:\/\/www.afp.com\/es","display_url":"afp.com\/es","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/USg46DHztr","expanded_url":"http:\/\/u.afp.com\/AFPespanol","display_url":"u.afp.com\/AFPespanol","indices":[115,138]}]}},"protected":false,"followers_count":353786,"friends_count":1076,"listed_count":4142,"created_at":"Fri - Sep 28 14:00:14 +0000 2012","favourites_count":348,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":174586,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558269048778002434\/bz6xLWex_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558269048778002434\/bz6xLWex_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851108442\/1565894214","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":219,"favorite_count":120,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":219,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538641170433,"id_str":"1234518538641170433","text":"RT - @toskita: Clear instructions from those that know!! How to look after yourselves. - \n\nhttps:\/\/t.co\/a7n8dk6Xtx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"toskita","name":"Tam","id":21517349,"id_str":"21517349","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/a7n8dk6Xtx","expanded_url":"https:\/\/www.who.int\/emergencies\/diseases\/novel-coronavirus-2019\/advice-for-public","display_url":"who.int\/emergencies\/di\u2026","indices":[87,110]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21517349,"id_str":"21517349","name":"Tam","screen_name":"toskita","location":"London, - England","description":"A drop of lies can contaminate an ocean of trust (Gutenberg - library)\n\u2764\ufe0fReiki practioner \ud83d\ude4f\ud83d\ude4f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":665,"friends_count":1601,"listed_count":2,"created_at":"Sat - Feb 21 21:12:29 +0000 2009","favourites_count":3766,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11333,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1017367786828558337\/Q0e8VoI3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017367786828558337\/Q0e8VoI3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21517349\/1531844703","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:36:39 +0000 2020","id":1234517988927250433,"id_str":"1234517988927250433","text":"Clear - instructions from those that know!! How to look after yourselves. \n\nhttps:\/\/t.co\/a7n8dk6Xtx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a7n8dk6Xtx","expanded_url":"https:\/\/www.who.int\/emergencies\/diseases\/novel-coronavirus-2019\/advice-for-public","display_url":"who.int\/emergencies\/di\u2026","indices":[74,97]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21517349,"id_str":"21517349","name":"Tam","screen_name":"toskita","location":"London, - England","description":"A drop of lies can contaminate an ocean of trust (Gutenberg - library)\n\u2764\ufe0fReiki practioner \ud83d\ude4f\ud83d\ude4f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":665,"friends_count":1601,"listed_count":2,"created_at":"Sat - Feb 21 21:12:29 +0000 2009","favourites_count":3766,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11333,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1017367786828558337\/Q0e8VoI3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017367786828558337\/Q0e8VoI3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21517349\/1531844703","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538632728578,"id_str":"1234518538632728578","text":"RT - @m0n1c23k: U mnie w mie\u015bcie 2 pierwsze przypadki, w s\u0105siednimi jeden. - Dopiero wr\u00f3ci\u0142am ze szpitala, ze szkolenia porodowego, a tu takie\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"m0n1c23k","name":"moniczek\ud83e\udd30","id":602202795,"id_str":"602202795","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"pl","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":940281802303959042,"id_str":"940281802303959042","name":"dr - Sucha #Duda2020","screen_name":"drSucha1","location":"","description":"M\u00f3j - Prezydent Andrzej Duda.\nG\u0142osuj\u0119 na Andrzeja Dud\u0119 w 2020r.\n#AD2020 - #Duda2020","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1023,"friends_count":810,"listed_count":2,"created_at":"Mon - Dec 11 18:07:06 +0000 2017","favourites_count":104634,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22640,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203735543504347136\/nglLneEV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203735543504347136\/nglLneEV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/940281802303959042\/1579475490","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 18:45:53 +0000 2020","id":1234188124496039937,"id_str":"1234188124496039937","text":"U - mnie w mie\u015bcie 2 pierwsze przypadki, w s\u0105siednimi jeden. Dopiero - wr\u00f3ci\u0142am ze szpitala, ze szkolenia porodowego, a\u2026 https:\/\/t.co\/aKiG2arL1E","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aKiG2arL1E","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234188124496039937","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pl","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":602202795,"id_str":"602202795","name":"moniczek\ud83e\udd30","screen_name":"m0n1c23k","location":"Leeds, - England","description":"Kubu\u015b ma przyj\u015b\u0107 na \u015bwiat 15.03.2020. - \u2665\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4857,"friends_count":3474,"listed_count":6,"created_at":"Thu - Jun 07 19:09:37 +0000 2012","favourites_count":92852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29540,"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\/1214931876600860672\/jfCchd23_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214931876600860672\/jfCchd23_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/602202795\/1576608629","profile_link_color":"FF33FF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234112869396074496,"quoted_status_id_str":"1234112869396074496","quoted_status":{"created_at":"Sun - Mar 01 13:46:51 +0000 2020","id":1234112869396074496,"id_str":"1234112869396074496","text":"The - Department of Health says 12 further patients in England have tested positive - for covid-19 bringing the total n\u2026 https:\/\/t.co\/BRFzwWCuQM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BRFzwWCuQM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234112869396074496","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"pl","result_type":"recent"},"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,"user":{"id":87416722,"id_str":"87416722","name":"Sky - News Breaking","screen_name":"SkyNewsBreak","location":"London, UK","description":"The - latest breaking news, direct from the Sky News team. Tweet @skynews with any - questions or queries.","url":"http:\/\/t.co\/EIlY6uS0D1","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/EIlY6uS0D1","expanded_url":"http:\/\/www.skynews.com\/","display_url":"skynews.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3736422,"friends_count":3,"listed_count":20866,"created_at":"Wed - Nov 04 11:25:45 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":52065,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"8895A5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1004357936393719808\/wGN4V9B1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1004357936393719808\/wGN4V9B1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87416722\/1431029060","profile_link_color":"385FAC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"BDD6FF","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":634,"favorite_count":1103,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":6,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pl"},"is_quote_status":true,"quoted_status_id":1234112869396074496,"quoted_status_id_str":"1234112869396074496","retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pl"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538620219394,"id_str":"1234518538620219394","text":"RT - @RedNationRising: Sens. Murphy, Menendez, Van Hollen & John Kerry met - Iranian FM Zarif & other Iranian officials in Germany, Feb 14-16\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RedNationRising","name":"Red - Nation Rising","id":940368062,"id_str":"940368062","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":124290595,"id_str":"124290595","name":"Yardonna","screen_name":"yardonna","location":"USA","description":"Political - Action Committee of One Voice. Shouting in the woods, does anyone hear me? Practice - of 1st Amendment & Value Yours, but don''t respect Vituperative!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2525,"friends_count":4957,"listed_count":67,"created_at":"Thu - Mar 18 22:43:24 +0000 2010","favourites_count":711,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":124216,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903691001637765120\/pUH0R8Mz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903691001637765120\/pUH0R8Mz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124290595\/1399122677","profile_link_color":"981CEB","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:12:47 +0000 2020","id":1234511981044027392,"id_str":"1234511981044027392","text":"Sens. - Murphy, Menendez, Van Hollen & John Kerry met Iranian FM Zarif & other - Iranian officials in Germany, Feb 14-1\u2026 https:\/\/t.co\/ajEy4jkUQe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ajEy4jkUQe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234511981044027392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[125,148]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":940368062,"id_str":"940368062","name":"Red - Nation Rising","screen_name":"RedNationRising","location":"Everywhere, USA","description":"Welcome - to the Official Red Nation Rising Twitter page! Grassroots organization for - Education, Constitution and Civics. #RedNationRising","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175408,"friends_count":71360,"listed_count":1412,"created_at":"Sun - Nov 11 02:02:13 +0000 2012","favourites_count":75691,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":311317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"00008B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649058305072046080\/p0xwM_4E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649058305072046080\/p0xwM_4E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/940368062\/1439821901","profile_link_color":"DD2E44","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":462,"favorite_count":778,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":462,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538460835841,"id_str":"1234518538460835841","text":"RT - @Lovli1P: So, Coronavirus Is Causing Mass Hysteria\n\nBut Millions Of Unvaccinated - Illegals Entering Our Country Isn''t? \ud83e\udd14\n\nFALSE FLAG!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Lovli1P","name":"PB&J - 2","id":1229899797873807360,"id_str":"1229899797873807360","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":870425468775809024,"id_str":"870425468775809024","name":"Cheryle - Hodges","screen_name":"cheryle_hodges","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":47,"listed_count":0,"created_at":"Thu - Jun 01 23:42:58 +0000 2017","favourites_count":51954,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22016,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 16:29:08 +0000 2020","id":1233791323246866432,"id_str":"1233791323246866432","text":"So, Coronavirus - Is Causing Mass Hysteria\n\nBut Millions Of Unvaccinated Illegals Entering - Our Country Isn''t? \ud83e\udd14\n\nFALSE FLAG!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1229899797873807360,"id_str":"1229899797873807360","name":"PB&J - 2","screen_name":"Lovli1P","location":"","description":"\ud83d\udc44 #KAG2020 \ud83c\uddf1\ud83c\uddf7 - #Trump2020 \ud83c\uddf1\ud83c\uddf7 US against the Elite \ud83c\uddf1\ud83c\uddf7\nGod - Bless America \ud83d\udc8b \ud83e\udd8a Foxy \ud83e\udd8a \ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3535,"friends_count":2496,"listed_count":0,"created_at":"Tue - Feb 18 22:47:52 +0000 2020","favourites_count":1261,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1171,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232128879290089472\/n1cmzuaL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232128879290089472\/n1cmzuaL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1460,"favorite_count":2758,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1460,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538460827648,"id_str":"1234518538460827648","text":"RT - @TrumpWarRoom: Thanks to President @realDonaldTrump''s unprecedented actions - to protect & prepare us, the United States is more prepared\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TrumpWarRoom","name":"Trump - War Room - Text WOKE to 88022","id":1108472017144201216,"id_str":"1108472017144201216","indices":[3,16]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[38,54]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":870425468775809024,"id_str":"870425468775809024","name":"Cheryle - Hodges","screen_name":"cheryle_hodges","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":47,"listed_count":0,"created_at":"Thu - Jun 01 23:42:58 +0000 2017","favourites_count":51954,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22016,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 16:44:36 +0000 2020","id":1234157601157505027,"id_str":"1234157601157505027","text":"Thanks - to President @realDonaldTrump''s unprecedented actions to protect & prepare - us, the United States is more pre\u2026 https:\/\/t.co\/8TDRh9Wl5B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[20,36]}],"urls":[{"url":"https:\/\/t.co\/8TDRh9Wl5B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234157601157505027","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1108472017144201216,"id_str":"1108472017144201216","name":"Trump - War Room - Text WOKE to 88022","screen_name":"TrumpWarRoom","location":"MAGA - Country","description":"Highlighting @realDonaldTrump''s #PromisesKept, fighting - #FakeNews. This account punches back 10x harder. Managed by the #TeamTrump - 2020 campaign. #MAGA","url":"https:\/\/t.co\/mVHOxzYUNT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mVHOxzYUNT","expanded_url":"https:\/\/www.donaldjtrump.com\/","display_url":"donaldjtrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":512411,"friends_count":194,"listed_count":1767,"created_at":"Wed - Mar 20 20:54:58 +0000 2019","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7824,"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\/1109170568950095879\/Q5nCWHLB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1109170568950095879\/Q5nCWHLB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1108472017144201216\/1565806661","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1096,"favorite_count":3077,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1096,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538418872320,"id_str":"1234518538418872320","text":"RT - @kayleighmcenany: \u201c@realDonaldTrump has proven himself the professional - \u2013 the adult in the room as Democrats act like small children\u201d\n\n\u201c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kayleighmcenany","name":"Kayleigh - McEnany","id":259001548,"id_str":"259001548","indices":[3,19]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[22,38]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":870425468775809024,"id_str":"870425468775809024","name":"Cheryle - Hodges","screen_name":"cheryle_hodges","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":47,"listed_count":0,"created_at":"Thu - Jun 01 23:42:58 +0000 2017","favourites_count":51954,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22016,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 12:31:27 +0000 2020","id":1234093894079582208,"id_str":"1234093894079582208","text":"\u201c@realDonaldTrump - has proven himself the professional \u2013 the adult in the room as Democrats - act like small children\u201d\u2026 https:\/\/t.co\/0wCwqOFRN2","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\/0wCwqOFRN2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234093894079582208","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259001548,"id_str":"259001548","name":"Kayleigh - McEnany","screen_name":"kayleighmcenany","location":"","description":"National - Press Secretary for @realDonaldTrump 2020 Campaign. Fmr @GOP Spox. Harvard - Law JD. Georgetown. Oxford. Previvor. Wife of @GilmartinSean. Phil. 4:6","url":"https:\/\/t.co\/NCyK14Aa4b","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NCyK14Aa4b","expanded_url":"https:\/\/www.amazon.com\/New-American-Revolution-Populist-Movement\/dp\/1501179683\/ref=sr_1_1?ie=UTF8&qi","display_url":"amazon.com\/New-American-R\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":366333,"friends_count":2227,"listed_count":2320,"created_at":"Mon - Feb 28 23:33:33 +0000 2011","favourites_count":13827,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":20088,"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\/1073411942260359169\/HkXU8qsk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1073411942260359169\/HkXU8qsk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259001548\/1578692228","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1693,"favorite_count":4613,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1693,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538360147970,"id_str":"1234518538360147970","text":"RT - @Scaramucci: Coronavirus is highlighting the brokenness of our healthcare - system. Every American should have access to affordable care.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Scaramucci","name":"Anthony - Scaramucci","id":24578794,"id_str":"24578794","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169472184,"id_str":"169472184","name":"Renee - Dawson","screen_name":"Song1964","location":"United States of America","description":"An - American Citizen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":235,"friends_count":589,"listed_count":13,"created_at":"Thu - Jul 22 12:29:39 +0000 2010","favourites_count":3080,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47314,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220027515428900865\/AL-u73vX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220027515428900865\/AL-u73vX_normal.jpg","profile_link_color":"0099CC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 18:31:55 +0000 2020","id":1234184607039414273,"id_str":"1234184607039414273","text":"Coronavirus - is highlighting the brokenness of our healthcare system. Every American should - have access to affordabl\u2026 https:\/\/t.co\/DNmEFe9blC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DNmEFe9blC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234184607039414273","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24578794,"id_str":"24578794","name":"Anthony - Scaramucci","screen_name":"Scaramucci","location":"Long Island, NY","description":"American - entrepreneur. Founder @SkyBridge and @SALTConference.","url":"https:\/\/t.co\/vzACxADJCS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vzACxADJCS","expanded_url":"https:\/\/www.salt.org\/","display_url":"salt.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":849017,"friends_count":1455,"listed_count":4003,"created_at":"Sun - Mar 15 20:20:03 +0000 2009","favourites_count":11283,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":23814,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"7DB5D1","profile_background_image_url":"http:\/\/abs.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\/1223668258240331777\/WhtwXqj9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223668258240331777\/WhtwXqj9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24578794\/1581190939","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234065636873166849,"quoted_status_id_str":"1234065636873166849","quoted_status":{"created_at":"Sun - Mar 01 10:39:10 +0000 2020","id":1234065636873166849,"id_str":"1234065636873166849","text":"A - Florida man who returned from China felt sick. Instead of going to the drugstore - to get over-the-counter flu medi\u2026 https:\/\/t.co\/k3QjPMaNMb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k3QjPMaNMb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234065636873166849","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":16686144,"id_str":"16686144","name":"New - York Times Opinion","screen_name":"nytopinion","location":"NYC, London, Paris, - Hong Kong","description":"We amplify voices on the issues that matter to you. - | Tell us what you think: letters@nytimes.com","url":"https:\/\/t.co\/oy7Q8cSQqk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oy7Q8cSQqk","expanded_url":"http:\/\/nytimes.com\/opinion","display_url":"nytimes.com\/opinion","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":728723,"friends_count":1435,"listed_count":8097,"created_at":"Fri - Oct 10 17:32:53 +0000 2008","favourites_count":4209,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":170940,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"169ADB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/963564424278650886\/ibjM-Kyv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963564424278650886\/ibjM-Kyv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16686144\/1580770032","profile_link_color":"169ADB","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2348,"favorite_count":3816,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":262,"favorite_count":972,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1234065636873166849,"quoted_status_id_str":"1234065636873166849","retweet_count":262,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538360102915,"id_str":"1234518538360102915","text":"RT - @GeraldoRivera: Confident pal @realDonaldTrump will manage #coronavirus crisis - decisively. Everyone root for @POTUS to succeed. Our nati\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[62,74]}],"symbols":[],"user_mentions":[{"screen_name":"GeraldoRivera","name":"Geraldo - Rivera","id":246500501,"id_str":"246500501","indices":[3,17]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[33,49]},{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[112,118]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":870425468775809024,"id_str":"870425468775809024","name":"Cheryle - Hodges","screen_name":"cheryle_hodges","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":47,"listed_count":0,"created_at":"Thu - Jun 01 23:42:58 +0000 2017","favourites_count":51954,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22016,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 19:54:07 +0000 2020","id":1234205297448816641,"id_str":"1234205297448816641","text":"Confident - pal @realDonaldTrump will manage #coronavirus crisis decisively. Everyone - root for @POTUS to succeed. Our\u2026 https:\/\/t.co\/XtRV5L4j8v","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[43,55]}],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[14,30]},{"screen_name":"POTUS","name":"President - Trump","id":822215679726100480,"id_str":"822215679726100480","indices":[93,99]}],"urls":[{"url":"https:\/\/t.co\/XtRV5L4j8v","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234205297448816641","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246500501,"id_str":"246500501","name":"Geraldo - Rivera","screen_name":"GeraldoRivera","location":"New York City","description":"loving - husband and dad, loyal friend, fierce enemy, patriot, kick ass reporter, proud - JewRican","url":"https:\/\/t.co\/S2mJWiBvw9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S2mJWiBvw9","expanded_url":"http:\/\/geraldo.com","display_url":"geraldo.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":334899,"friends_count":902,"listed_count":2338,"created_at":"Wed - Feb 02 22:17:56 +0000 2011","favourites_count":1229,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":11505,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/565927841381253120\/-iHS2dYA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565927841381253120\/-iHS2dYA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246500501\/1511818449","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"},"geo":null,"coordinates":null,"place":{"id":"33d5fac88acb8fa8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/33d5fac88acb8fa8.json","place_type":"city","name":"Shaker - Heights","full_name":"Shaker Heights, OH","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-81.593675,41.4570674],[-81.50712,41.4570674],[-81.50712,41.492867],[-81.593675,41.492867]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2587,"favorite_count":15212,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2587,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538297204739,"id_str":"1234518538297204739","text":"RT - @ernie_plumley: 1of4) Does the President need to fire another official who - is a\npessimist\/exaggerating who is \u201cspook\u201d(ing) the American\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ernie_plumley","name":"Ernie - Plumley\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f","id":969444209940889600,"id_str":"969444209940889600","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":235693149,"id_str":"235693149","name":"EVE - WHITE","screen_name":"evewhite5500","location":"Minnesota, USA","description":"Made - in America with Italian parts\u2764\ufe0fMAGA\u2764\ufe0fAMERICA FIRST","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19508,"friends_count":19723,"listed_count":4,"created_at":"Sat - Jan 08 21:28:18 +0000 2011","favourites_count":47980,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":212032,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1048686697708441600\/N82HSCe7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1048686697708441600\/N82HSCe7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/235693149\/1538617085","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 22:16:18 +0000 2020","id":1234241079068594177,"id_str":"1234241079068594177","text":"1of4) - Does the President need to fire another official who is a\npessimist\/exaggerating - who is \u201cspook\u201d(ing) the Amer\u2026 https:\/\/t.co\/SG6yQInC6S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SG6yQInC6S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234241079068594177","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":969444209940889600,"id_str":"969444209940889600","name":"Ernie - Plumley\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f","screen_name":"ernie_plumley","location":"In - the messed up state of Ca.","description":"God, Jesus, wife, family, and the - Reborn America under Trump. Follow back MAGA Patriots \ud83c\uddfa\ud83c\uddf8CCOT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44148,"friends_count":29156,"listed_count":34,"created_at":"Fri - Mar 02 05:28:05 +0000 2018","favourites_count":76632,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1135114831000875008\/-CbTgYSs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1135114831000875008\/-CbTgYSs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/969444209940889600\/1526371150","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":488,"favorite_count":377,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":488,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538196414465,"id_str":"1234518538196414465","text":"RT - @1nteinstrgshity: #MONSTA_X donated 100 million won to aid the fight of coronavirus - in Korea. In the article mentioned that the members\u2026","truncated":false,"entities":{"hashtags":[{"text":"MONSTA_X","indices":[21,30]}],"symbols":[],"user_mentions":[{"screen_name":"1nteinstrgshity","name":"\uc774\uc0ac\ubca8\ub77c\ud83d\udc2f\ud83c\udf0c\u2014\u2014\u96ea\ud83d\udc30","id":832451825236185089,"id_str":"832451825236185089","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41713958,"id_str":"41713958","name":"vickymoga- - la vida es para disfrutar cada segundo.","screen_name":"vickymoga","location":"","description":"me - gusta el anime, mangas, escuchar m\u00fasica de todo tipo. Elf- Monbebe \ud83d\udd25","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":219,"friends_count":1101,"listed_count":2,"created_at":"Fri - May 22 00:42:29 +0000 2009","favourites_count":77190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":97967,"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\/1231144874105131008\/1-hJ7lW8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231144874105131008\/1-hJ7lW8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41713958\/1578877687","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 08:59:47 +0000 2020","id":1234403016461021186,"id_str":"1234403016461021186","text":"#MONSTA_X - donated 100 million won to aid the fight of coronavirus in Korea. In the article - mentioned that the membe\u2026 https:\/\/t.co\/YHlKKdffdr","truncated":true,"entities":{"hashtags":[{"text":"MONSTA_X","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YHlKKdffdr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234403016461021186","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":832451825236185089,"id_str":"832451825236185089","name":"\uc774\uc0ac\ubca8\ub77c\ud83d\udc2f\ud83c\udf0c\u2014\u2014\u96ea\ud83d\udc30","screen_name":"1nteinstrgshity","location":"","description":"Providing - you with your daily dose of VITAMIN X. \u541e\u821f\u4e4b\u9b5a\uff0c\u4e0d\u6e38\u652f\u6d41 - \ud83d\udc30\n#MONSTA_X #\ubaac\uc2a4\ud0c0\uc5d1\uc2a4 \u2764\ufe0f Fan Account - \ud83d\udd15","url":"https:\/\/t.co\/HQrmoDzu42","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HQrmoDzu42","expanded_url":"http:\/\/curiouscat.me\/1nteinstrgshity","display_url":"curiouscat.me\/1nteinstrgshity","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10404,"friends_count":272,"listed_count":177,"created_at":"Fri - Feb 17 04:49:16 +0000 2017","favourites_count":37476,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39495,"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\/1228232116883689472\/JsRlYUKw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228232116883689472\/JsRlYUKw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/832451825236185089\/1552298391","profile_link_color":"AF0606","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":281,"favorite_count":558,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":281,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538133688325,"id_str":"1234518538133688325","text":"RT - @TreyDwag2020: Obama Holdover Made the Call to Fly Coronavirus Patients Back - to the US from Japan - Then Boasted About It https:\/\/t.co\/p\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TreyDwag2020","name":"\ud83c\uddfa\ud83c\uddf8 - Cris \ud83c\uddf5\ud83c\uddf7","id":3022045469,"id_str":"3022045469","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232914091,"id_str":"232914091","name":"Dennis - M. Gordon \ud83c\uddfa\ud83c\uddf8","screen_name":"DennGordon","location":"","description":"RT''s - and Likes for informational purposes only.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1820,"friends_count":487,"listed_count":51,"created_at":"Sat - Jan 01 18:40:00 +0000 2011","favourites_count":235310,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":166503,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/826533600275333130\/0XEp7Hju_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/826533600275333130\/0XEp7Hju_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232914091\/1442102948","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:49 +0000 2020","id":1234517781468585985,"id_str":"1234517781468585985","text":"Obama - Holdover Made the Call to Fly Coronavirus Patients Back to the US from Japan - - Then Boasted About It https:\/\/t.co\/pGsOcAV6Io","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pGsOcAV6Io","expanded_url":"https:\/\/www.thegatewaypundit.com\/2020\/03\/obama-holdover-made-the-call-to-fly-coronavirus-patients-back-to-the-us-from-japan-then-boasted-about-it\/","display_url":"thegatewaypundit.com\/2020\/03\/obama-\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3022045469,"id_str":"3022045469","name":"\ud83c\uddfa\ud83c\uddf8 - Cris \ud83c\uddf5\ud83c\uddf7","screen_name":"TreyDwag2020","location":"NEW - YORK CITY","description":"Democrat Turn | Independent | Now Trumplican | MAGA - | KAG | Future President Don Jr or Bust! #PuertoRicansForTrump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109854,"friends_count":45452,"listed_count":884,"created_at":"Fri - Feb 06 19:43:09 +0000 2015","favourites_count":83754,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":155442,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1183504794410987521\/XYzS04C2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183504794410987521\/XYzS04C2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3022045469\/1575718450","profile_link_color":"E81C4F","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":2,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518538100125703,"id_str":"1234518538100125703","text":"RT - @ELZORROBOLIVAR: #ir\u00e1n Ni\u00f1o sospechoso de caer coronavirus en la - calle Yousefabad, Teher\u00e1n, fue recogido por una ambulancia de emergenci\u2026","truncated":false,"entities":{"hashtags":[{"text":"ir\u00e1n","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ELZORROBOLIVAR","name":"DIEGO - DE LA VEGA","id":144377829,"id_str":"144377829","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":219530237,"id_str":"219530237","name":"\uf8e7\u0323\u0323 - Marlene Myers","screen_name":"marleburundanga","location":"VENEZUELA. ","description":"Democrata,rechazo - todo signo d opresion,orgullosa d formar ciudadanos utiles a la Patria y muy - oriental. Mi lema es:#VIva la libertad!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1600,"friends_count":1542,"listed_count":7,"created_at":"Thu - Nov 25 03:30:52 +0000 2010","favourites_count":14744,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":140968,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532952477688397824\/LQ_R6iMT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532952477688397824\/LQ_R6iMT_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 07:25:43 +0000 2020","id":1234016955708968968,"id_str":"1234016955708968968","text":"#ir\u00e1n - Ni\u00f1o sospechoso de caer coronavirus en la calle Yousefabad, Teher\u00e1n, - fue recogido por una ambulancia de emerg\u2026 https:\/\/t.co\/JY4fEPBUg7","truncated":true,"entities":{"hashtags":[{"text":"ir\u00e1n","indices":[0,5]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JY4fEPBUg7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234016955708968968","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":144377829,"id_str":"144377829","name":"DIEGO - DE LA VEGA","screen_name":"ELZORROBOLIVAR","location":"en la LIBERTAD","description":"La - lealtad es mi bandera, mi coraz\u00f3n el tim\u00f3n que me gu\u00eda. Pago - la factura de ser libre. De sangre vasco, venezolano de coraz\u00f3n, muero - por cada rinc\u00f3n de Espa\u00f1a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5245,"friends_count":5246,"listed_count":56,"created_at":"Sun - May 16 03:47:00 +0000 2010","favourites_count":51225,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":118215,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3B94D9","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\/1203043002740027393\/g1KYj-pM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203043002740027393\/g1KYj-pM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144377829\/1574673086","profile_link_color":"91D2FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537873580032,"id_str":"1234518537873580032","text":"Boca: - estricto control al plantel en Venezuela por el coronavirus https:\/\/t.co\/F71LW5Fxmp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/F71LW5Fxmp","expanded_url":"https:\/\/www.paginacentral.com.ar\/deportes\/boca-estricto-control-al-plantel-en-venezuela-por-el-coronavirus\/","display_url":"paginacentral.com.ar\/deportes\/boca-\u2026","indices":[66,89]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":520537246,"id_str":"520537246","name":"P\u00e1gina - Central Jujuy","screen_name":"paginacentralju","location":"Jujuy, Argentina","description":"Diario - de #Jujuy Noticias de Jujuy, Nacionales e Internacionales las 24hs","url":"http:\/\/t.co\/8tfsd9cTNr","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/8tfsd9cTNr","expanded_url":"http:\/\/www.paginacentral.com.ar","display_url":"paginacentral.com.ar","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":990,"friends_count":390,"listed_count":26,"created_at":"Sat - Mar 10 16:32:09 +0000 2012","favourites_count":312,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16404,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"00005E","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\/1201257153962622977\/_0yeTW1h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1201257153962622977\/_0yeTW1h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/520537246\/1575237001","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537739259910,"id_str":"1234518537739259910","text":"RT - @MajinBoochi: Coronavirus in NY? There''s only one person who can save us - https:\/\/t.co\/mlh1UtwaVm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MajinBoochi","name":"Boochi","id":1232473344026517504,"id_str":"1232473344026517504","indices":[3,15]}],"urls":[],"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234317952213803008,"source_status_id_str":"1234317952213803008","source_user_id":1232473344026517504,"source_user_id_str":"1232473344026517504"}]},"extended_entities":{"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1234317952213803008,"source_status_id_str":"1234317952213803008","source_user_id":1232473344026517504,"source_user_id_str":"1232473344026517504"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":741741120401506304,"id_str":"741741120401506304","name":"(getting - this degree)\ud83d\udccc","screen_name":"xingsweed","location":"Los Angeles, - CA","description":"","url":"https:\/\/t.co\/sqcDQnHM63","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sqcDQnHM63","expanded_url":"https:\/\/curiouscat.me\/Laysweed","display_url":"curiouscat.me\/Laysweed","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":130,"listed_count":19,"created_at":"Sat - Jun 11 21:17:18 +0000 2016","favourites_count":232341,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":107613,"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\/1233664637784035331\/_KIemAwa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233664637784035331\/_KIemAwa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/741741120401506304\/1582963556","profile_link_color":"CF94DC","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 03:21:46 +0000 2020","id":1234317952213803008,"id_str":"1234317952213803008","text":"Coronavirus - in NY? There''s only one person who can save us https:\/\/t.co\/mlh1UtwaVm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234317882932199424,"id_str":"1234317882932199424","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESEtkygWAAA8BIB.png","url":"https:\/\/t.co\/mlh1UtwaVm","display_url":"pic.twitter.com\/mlh1UtwaVm","expanded_url":"https:\/\/twitter.com\/MajinBoochi\/status\/1234317952213803008\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":383,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232473344026517504,"id_str":"1232473344026517504","name":"Boochi","screen_name":"MajinBoochi","location":"Clouds","description":"Haha - funny without the haha","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":15,"listed_count":0,"created_at":"Wed - Feb 26 01:12:07 +0000 2020","favourites_count":10,"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\/1232531852000452609\/yHmJCnSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232531852000452609\/yHmJCnSP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26768,"favorite_count":93828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":26768,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537705676800,"id_str":"1234518537705676800","text":"@Cheryl4SaveCali - @BlaqueIcedQuofi @RaRaAvisPress @atrupar Smdh https:\/\/t.co\/b8ffmiOmyt https:\/\/t.co\/qyxm4w5czM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Cheryl4SaveCali","name":"Cheryl\u2019sWorld - \ud83c\udf1f\ud83c\udf34\ud83c\udfc3\u200d\u2640\ufe0f\ud83c\uddfa\ud83c\uddf8","id":1009862281801314304,"id_str":"1009862281801314304","indices":[0,16]},{"screen_name":"BlaqueIcedQuofi","name":"Sergius - Q. Paulus","id":2640159645,"id_str":"2640159645","indices":[17,33]},{"screen_name":"RaRaAvisPress","name":"RaRa - Avis Press \ud83d\udd77\ud83c\udf51\ud83d\udcaa\ud83c\udffc","id":1126877334450200577,"id_str":"1126877334450200577","indices":[34,48]},{"screen_name":"atrupar","name":"Aaron - Rupar","id":288277167,"id_str":"288277167","indices":[49,57]}],"urls":[{"url":"https:\/\/t.co\/b8ffmiOmyt","expanded_url":"https:\/\/www.nbcnews.com\/health\/health-news\/coronavirus-map-confirmed-cases-2020-n1120686","display_url":"nbcnews.com\/health\/health-\u2026","indices":[63,86]}],"media":[{"id":1234518533100359681,"id_str":"1234518533100359681","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkEKoVUAE6sX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkEKoVUAE6sX2.jpg","url":"https:\/\/t.co\/qyxm4w5czM","display_url":"pic.twitter.com\/qyxm4w5czM","expanded_url":"https:\/\/twitter.com\/CarletteHarris1\/status\/1234518537705676800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":534,"resize":"fit"},"large":{"w":1242,"h":553,"resize":"fit"},"small":{"w":680,"h":303,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518533100359681,"id_str":"1234518533100359681","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkEKoVUAE6sX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkEKoVUAE6sX2.jpg","url":"https:\/\/t.co\/qyxm4w5czM","display_url":"pic.twitter.com\/qyxm4w5czM","expanded_url":"https:\/\/twitter.com\/CarletteHarris1\/status\/1234518537705676800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":534,"resize":"fit"},"large":{"w":1242,"h":553,"resize":"fit"},"small":{"w":680,"h":303,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1234517087227244545,"in_reply_to_status_id_str":"1234517087227244545","in_reply_to_user_id":1009862281801314304,"in_reply_to_user_id_str":"1009862281801314304","in_reply_to_screen_name":"Cheryl4SaveCali","user":{"id":752991710767030272,"id_str":"752991710767030272","name":"Carlette - Harris","screen_name":"CarletteHarris1","location":"California, USA","description":"Once - white ppl can call their colleagues and family a racist, the real conversation - and Change will happen. #VoteBlue #DumpTrump2020 #Resistance #ITMFA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":725,"friends_count":755,"listed_count":2,"created_at":"Tue - Jul 12 22:23:08 +0000 2016","favourites_count":39669,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22794,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1037266896494551040\/lyR2WFu0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1037266896494551040\/lyR2WFu0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752991710767030272\/1582219517","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537617780737,"id_str":"1234518537617780737","text":"RT - @srtabia: \"A capacidade de sequenciar rapidamente, no in\u00edcio de uma - epidemia, pode ajudar na tomada de decis\u00f5es. Vamos supor que apare\u00e7a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"srtabia","name":"Bia - Cardoso","id":14583539,"id_str":"14583539","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91368357,"id_str":"91368357","name":"Paty.faria","screen_name":"Patyas","location":"","description":"O - mundo \u00e9 um moinho, e meu pa\u00eds \u00e9 Minas Gerais","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":344,"friends_count":1423,"listed_count":3,"created_at":"Fri - Nov 20 16:02:42 +0000 2009","favourites_count":47040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29787,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226280114339696640\/lpKzQ04T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226280114339696640\/lpKzQ04T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91368357\/1513640844","profile_link_color":"897193","profile_sidebar_border_color":"272727","profile_sidebar_fill_color":"272727","profile_text_color":"B3617B","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:15 +0000 2020","id":1234517636475740160,"id_str":"1234517636475740160","text":"\"A - capacidade de sequenciar rapidamente, no in\u00edcio de uma epidemia, pode - ajudar na tomada de decis\u00f5es. Vamos supor\u2026 https:\/\/t.co\/HBcjEm6aFL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HBcjEm6aFL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234517636475740160","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14583539,"id_str":"14583539","name":"Bia - Cardoso","screen_name":"srtabia","location":"Bras\u00edlia, DF, BRA","description":"A - Globeleza do Feminismo. Andarilha do Cosmos. Quer tirar um tar\u00f4? chama - na DM!","url":"https:\/\/t.co\/Dx9E3F69qi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Dx9E3F69qi","expanded_url":"http:\/\/blogueirasfeministas.com\/","display_url":"blogueirasfeministas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9886,"friends_count":1900,"listed_count":285,"created_at":"Tue - Apr 29 11:48:59 +0000 2008","favourites_count":529,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":129839,"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\/950543129945485312\/dRmDkitW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/950543129945485312\/dRmDkitW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14583539\/1489263732","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"},"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":"pt"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537487683586,"id_str":"1234518537487683586","text":"RT - @COVID19Update: \u26a0\ufe0f The #CoronaVirus Safety Tips! \u26a0\ufe0f\n\n\ud83d\udd01Retweet - it,to spread awareness\ud83d\udd01\n\n#COVID19 #Covid_19 #coronavirusuk #CoronavirusOut\u2026","truncated":false,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[26,38]},{"text":"COVID19","indices":[90,98]},{"text":"Covid_19","indices":[99,108]},{"text":"coronavirusuk","indices":[109,123]}],"symbols":[],"user_mentions":[{"screen_name":"COVID19Update","name":"CoronaVirus - Updates\ud83e\udda0","id":1081972159860359170,"id_str":"1081972159860359170","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216155227,"id_str":"216155227","name":"Matawalli","screen_name":"MatawalliA","location":"Damaturu, - Nigeria","description":"Biochemist with profound interest in History, from - Thucydides, Sef, Edo to RC Gallo, and also Passionate Education Advocate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1042,"friends_count":632,"listed_count":1,"created_at":"Mon - Nov 15 23:05:44 +0000 2010","favourites_count":8183,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5777,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976486438916288513\/RJsI9c2t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976486438916288513\/RJsI9c2t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216155227\/1498608826","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:37:51 +0000 2020","id":1234518292443926531,"id_str":"1234518292443926531","text":"\u26a0\ufe0f - The #CoronaVirus Safety Tips! \u26a0\ufe0f\n\n\ud83d\udd01Retweet it,to spread - awareness\ud83d\udd01\n\n#COVID19 #Covid_19 #coronavirusuk\u2026 https:\/\/t.co\/GZRQMgzjI9","truncated":true,"entities":{"hashtags":[{"text":"CoronaVirus","indices":[7,19]},{"text":"COVID19","indices":[71,79]},{"text":"Covid_19","indices":[80,89]},{"text":"coronavirusuk","indices":[90,104]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GZRQMgzjI9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518292443926531","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[106,129]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1081972159860359170,"id_str":"1081972159860359170","name":"CoronaVirus - Updates\ud83e\udda0","screen_name":"COVID19Update","location":"Bangkok, Thailand","description":"\u2022I - am a #PH Professional\ud83d\udc68\u200d\u2695\ufe0f.Breaking News and Updates - About #coronavirus,Truth\ud83d\udd0e, No Rumors.|Safety\u26d1\ufe0f\ud83e\udd57Tips|\n#COVID19 - #WHO #CDC #JHU #Dxy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35198,"friends_count":46,"listed_count":238,"created_at":"Sun - Jan 06 17:53:59 +0000 2019","favourites_count":985,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228679128515272705\/k6z4OUS9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228679128515272705\/k6z4OUS9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081972159860359170\/1581774700","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":217,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537412104194,"id_str":"1234518537412104194","text":"RT - @MobilePunch: Minister tests positive for coronavirus in Italy https:\/\/t.co\/8jaUZ7WNdb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MobilePunch","name":"The - Punch Newspapers","id":24291371,"id_str":"24291371","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/8jaUZ7WNdb","expanded_url":"https:\/\/bit.ly\/2IcE9Ss","display_url":"bit.ly\/2IcE9Ss","indices":[74,97]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":755188056,"id_str":"755188056","name":"Emma - ik Umeh (Tcee )\ud83c\uddf3\ud83c\uddec\ud83c\uddf7\ud83c\uddfa","screen_name":"emmaikumeh","location":"Russia - St Petersburg &Nigeria ","description":"Be the change you want to see in others. - https:\/\/t.co\/LykfRu58CA mech engr. lover of God, Arsenal fan.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/LykfRu58CA","expanded_url":"http:\/\/B.sc","display_url":"B.sc","indices":[41,64]}]}},"protected":false,"followers_count":13335,"friends_count":4577,"listed_count":84,"created_at":"Mon - Aug 13 13:55:02 +0000 2012","favourites_count":3547,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":194725,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192863135549538308\/CJa3slRU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192863135549538308\/CJa3slRU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/755188056\/1578557134","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:56:14 +0000 2020","id":1234462517692420103,"id_str":"1234462517692420103","text":"Minister - tests positive for coronavirus in Italy https:\/\/t.co\/8jaUZ7WNdb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8jaUZ7WNdb","expanded_url":"https:\/\/bit.ly\/2IcE9Ss","display_url":"bit.ly\/2IcE9Ss","indices":[57,80]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":24291371,"id_str":"24291371","name":"The - Punch Newspapers","screen_name":"MobilePunch","location":"Lagos, Nigeria","description":"This - is the official Twitter handle of The Punch Newspapers, the most widely read - newspaper in Nigeria.","url":"http:\/\/t.co\/AFJHixaX8r","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/AFJHixaX8r","expanded_url":"http:\/\/www.punchng.com","display_url":"punchng.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2832427,"friends_count":2567,"listed_count":2757,"created_at":"Sat - Mar 14 00:27:10 +0000 2009","favourites_count":324,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":409080,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EB0909","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215182188041379840\/p_qb8fWu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215182188041379840\/p_qb8fWu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24291371\/1583145064","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":91,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":36,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537387073537,"id_str":"1234518537387073537","text":"RT - @RutaKritica: NUESTRA POSTURA EDITORIAL: El morenismo mata m\u00e1s gente - que el coronavirus: En octubre de 2019 asesinaron a 11 ecuatorianos\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RutaKritica","name":"Ruta - Kr\u00edtica","id":963615590962356226,"id_str":"963615590962356226","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":328789090,"id_str":"328789090","name":"Santi - Serrano","screen_name":"santi_adelante","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":299,"friends_count":1069,"listed_count":3,"created_at":"Mon - Jul 04 01:22:16 +0000 2011","favourites_count":24184,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23649,"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\/490897822049251328\/Ys81r-f2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/490897822049251328\/Ys81r-f2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/328789090\/1405874135","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 23:33:34 +0000 2020","id":1234260523832762375,"id_str":"1234260523832762375","text":"NUESTRA - POSTURA EDITORIAL: El morenismo mata m\u00e1s gente que el coronavirus: En - octubre de 2019 asesinaron a 11 ecuat\u2026 https:\/\/t.co\/3Ef7FqCEYV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3Ef7FqCEYV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234260523832762375","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":963615590962356226,"id_str":"963615590962356226","name":"Ruta - Kr\u00edtica","screen_name":"RutaKritica","location":"ec","description":"Cuenta - oficial de Ruta Kr\u00edtica, colectivo ciudadano de \ud83c\uddea\ud83c\udde8 - Ecuador https:\/\/t.co\/hqiWbvZZis","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/hqiWbvZZis","expanded_url":"http:\/\/www.rutakritica.org","display_url":"rutakritica.org","indices":[66,89]}]}},"protected":false,"followers_count":18779,"friends_count":434,"listed_count":50,"created_at":"Wed - Feb 14 03:27:14 +0000 2018","favourites_count":1541,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2376,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/963618535611207682\/eLg9V71U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963618535611207682\/eLg9V71U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/963615590962356226\/1518579236","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":363,"favorite_count":398,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":363,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537370292224,"id_str":"1234518537370292224","text":"RT - @diagnosinghc: A Florida man, Osmel Martinez Azcue, who returned from China - and found himself becoming sick. Because of the risk of coro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"diagnosinghc","name":"Diagnosing - Healthcare","id":1201317785508466688,"id_str":"1201317785508466688","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":742683050492997632,"id_str":"742683050492997632","name":"Emperor","screen_name":"DeLordEmperor","location":"","description":"Your - Perception Is Your Reality.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1300,"friends_count":4183,"listed_count":1,"created_at":"Tue - Jun 14 11:40:12 +0000 2016","favourites_count":13908,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183753912014311425\/5pVwr9Rf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183753912014311425\/5pVwr9Rf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/742683050492997632\/1530501046","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:01:55 +0000 2020","id":1234494148108939264,"id_str":"1234494148108939264","text":"A - Florida man, Osmel Martinez Azcue, who returned from China and found himself - becoming sick. Because of the risk o\u2026 https:\/\/t.co\/FcdVLTJPLA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FcdVLTJPLA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234494148108939264","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1201317785508466688,"id_str":"1201317785508466688","name":"Diagnosing - Healthcare","screen_name":"diagnosinghc","location":"USA","description":"Join - us in inspiring grassroots movement for a better future of US Healthcare. - Our healthcare reform film - #DiagnosingHealthcare \ud83c\udfac - Coming in - Spring 2020.","url":"https:\/\/t.co\/4aAH7F1QLm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4aAH7F1QLm","expanded_url":"https:\/\/www.youtube.com\/watch?v=9JKCHpYDyAo","display_url":"youtube.com\/watch?v=9JKCHp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":1165,"listed_count":4,"created_at":"Mon - Dec 02 01:51:50 +0000 2019","favourites_count":301,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":439,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223521743102345217\/6lb-8bPt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223521743102345217\/6lb-8bPt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201317785508466688\/1578469149","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2817,"favorite_count":6404,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2817,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537311588352,"id_str":"1234518537311588352","text":"RT - @__N0__VA: If you drank from one of these as a kid you are immune to the Coronavirus - https:\/\/t.co\/FAypMT1Skv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"__N0__VA","name":"nova","id":3273826159,"id_str":"3273826159","indices":[3,12]}],"urls":[],"media":[{"id":1232775061263785987,"id_str":"1232775061263785987","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/ERuyYv6WoAMSV40.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ERuyYv6WoAMSV40.jpg","url":"https:\/\/t.co\/FAypMT1Skv","display_url":"pic.twitter.com\/FAypMT1Skv","expanded_url":"https:\/\/twitter.com\/__N0__VA\/status\/1232775064984133639\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":280,"resize":"fit"},"medium":{"w":320,"h":280,"resize":"fit"},"large":{"w":320,"h":280,"resize":"fit"}},"source_status_id":1232775064984133639,"source_status_id_str":"1232775064984133639","source_user_id":3273826159,"source_user_id_str":"3273826159"}]},"extended_entities":{"media":[{"id":1232775061263785987,"id_str":"1232775061263785987","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/ERuyYv6WoAMSV40.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ERuyYv6WoAMSV40.jpg","url":"https:\/\/t.co\/FAypMT1Skv","display_url":"pic.twitter.com\/FAypMT1Skv","expanded_url":"https:\/\/twitter.com\/__N0__VA\/status\/1232775064984133639\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":280,"resize":"fit"},"medium":{"w":320,"h":280,"resize":"fit"},"large":{"w":320,"h":280,"resize":"fit"}},"source_status_id":1232775064984133639,"source_status_id_str":"1232775064984133639","source_user_id":3273826159,"source_user_id_str":"3273826159"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1756976340,"id_str":"1756976340","name":"marcial.","screen_name":"shawhuerta","location":"satx","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":979,"friends_count":527,"listed_count":3,"created_at":"Sat - Sep 07 16:43:24 +0000 2013","favourites_count":20814,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30833,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211484118632075265\/vqtYDfYy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211484118632075265\/vqtYDfYy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1756976340\/1582161419","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 26 21:10:54 +0000 2020","id":1232775064984133639,"id_str":"1232775064984133639","text":"If - you drank from one of these as a kid you are immune to the Coronavirus https:\/\/t.co\/FAypMT1Skv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1232775061263785987,"id_str":"1232775061263785987","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/ERuyYv6WoAMSV40.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ERuyYv6WoAMSV40.jpg","url":"https:\/\/t.co\/FAypMT1Skv","display_url":"pic.twitter.com\/FAypMT1Skv","expanded_url":"https:\/\/twitter.com\/__N0__VA\/status\/1232775064984133639\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":280,"resize":"fit"},"medium":{"w":320,"h":280,"resize":"fit"},"large":{"w":320,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1232775061263785987,"id_str":"1232775061263785987","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/ERuyYv6WoAMSV40.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ERuyYv6WoAMSV40.jpg","url":"https:\/\/t.co\/FAypMT1Skv","display_url":"pic.twitter.com\/FAypMT1Skv","expanded_url":"https:\/\/twitter.com\/__N0__VA\/status\/1232775064984133639\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":280,"resize":"fit"},"medium":{"w":320,"h":280,"resize":"fit"},"large":{"w":320,"h":280,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3273826159,"id_str":"3273826159","name":"nova","screen_name":"__N0__VA","location":"Houston, - TX","description":"Logistics Owner\/OP & Co-owner of Chasing Vibes \u201c\ud835\udcc2\ud835\udcce - \ud835\udc5c\ud835\udcc5\ud835\udcbe\ud835\udcc3\ud835\udcbe\ud835\udc5c\ud835\udcc3\ud835\udcc8 - \ud835\udcb6\ud835\udcc7\ud835\udc52 \ud835\udcc2\ud835\udcce \ud835\udc5c\ud835\udccc\ud835\udcc3\u201d - \u264c\ufe0f","url":"https:\/\/t.co\/wpUAisA8iD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wpUAisA8iD","expanded_url":"http:\/\/wearechasingvibes.com","display_url":"wearechasingvibes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":594,"friends_count":282,"listed_count":14,"created_at":"Fri - Jul 10 04:21:31 +0000 2015","favourites_count":18599,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28046,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1124833927468912641\/1r_AvD4p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1124833927468912641\/1r_AvD4p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3273826159\/1581707619","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":666,"favorite_count":2181,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":666,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537303183361,"id_str":"1234518537303183361","text":"RT - @HeidiNBC: Dr. Matt McCarthy: NY Presbyterian Hospital on Coronavirus:\n\n\"We - are not testing at full capacity and that is a national scan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HeidiNBC","name":"Heidi - Przybyla","id":234186830,"id_str":"234186830","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":344154685,"id_str":"344154685","name":"J - Murphy","screen_name":"murftaz","location":"Iowa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1162,"friends_count":4360,"listed_count":30,"created_at":"Thu - Jul 28 16:38:13 +0000 2011","favourites_count":127506,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":125059,"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\/804057751357898752\/pDaCNh9X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/804057751357898752\/pDaCNh9X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344154685\/1480537285","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:27:17 +0000 2020","id":1234485431753940992,"id_str":"1234485431753940992","text":"Dr. - Matt McCarthy: NY Presbyterian Hospital on Coronavirus:\n\n\"We are not testing - at full capacity and that is a nat\u2026 https:\/\/t.co\/aiOlGbDWmz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aiOlGbDWmz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234485431753940992","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234186830,"id_str":"234186830","name":"Heidi - Przybyla","screen_name":"HeidiNBC","location":"Washington, DC","description":"NBC - News Correspondent covering politics\/government ethics\n\"Prezbella\" Heidi.Przybyla@nbcuni.com - Insta: @hprzybyla Michigan (Spartan)","url":"https:\/\/t.co\/dBrbOK8cT0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dBrbOK8cT0","expanded_url":"https:\/\/www.facebook.com\/heidiprzybylaofficial1\/?ref=","display_url":"facebook.com\/heidiprzybylao\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":149897,"friends_count":1204,"listed_count":1772,"created_at":"Wed - Jan 05 01:32:51 +0000 2011","favourites_count":4883,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":15689,"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\/1137054814708412421\/k6OMmPoO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137054814708412421\/k6OMmPoO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234186830\/1434503148","profile_link_color":"001A99","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13049,"favorite_count":26297,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13049,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537282183170,"id_str":"1234518537282183170","text":"https:\/\/t.co\/EC44o3LH5O","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EC44o3LH5O","expanded_url":"https:\/\/www.dailywire.com\/news\/dr-drew-media-needs-to-shut-up-about-coronavirus-youre-more-likely-to-die-of-influenza?itm_source=parsely-api?utm_source=cnemail&utm_medium=email&utm_content=030220-news&utm_campaign=position4","display_url":"dailywire.com\/news\/dr-drew-m\u2026","indices":[0,23]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15243274,"id_str":"15243274","name":"Bill - Hoidas","screen_name":"BillHoidas","location":"Cary, IL 60013","description":"best - credit card and payment processor in the universe!","url":"http:\/\/t.co\/VxGodRZZi4","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/VxGodRZZi4","expanded_url":"http:\/\/paymentconsulting.net\/","display_url":"paymentconsulting.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":825,"friends_count":2261,"listed_count":7,"created_at":"Thu - Jun 26 12:16:17 +0000 2008","favourites_count":13114,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27541,"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\/967047989599621120\/5q1UjVqA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/967047989599621120\/5q1UjVqA_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"},"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537156354048,"id_str":"1234518537156354048","text":"RT - @ldpsincomplejos: Los progres son esos seres capaces de decretar emergencias - clim\u00e1ticas porque a lo mejor el mar sube 2 cent\u00edmetros dent\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ldpsincomplejos","name":"Luis - del Pino","id":241993704,"id_str":"241993704","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392942458,"id_str":"392942458","name":"barbagris","screen_name":"Juanbarbagris","location":"Espa\u00f1a","description":"TEDAX - desde mi nacimiento. (an\u00e9cdota) Cuando nac\u00ed, le dijo la matrona - a mi madre, enhorabuena, ha tenido ud. un TEDAX.","url":"http:\/\/t.co\/hviu7kr4Gk","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/hviu7kr4Gk","expanded_url":"http:\/\/barbagris-tedax.blogspot.com\/","display_url":"barbagris-tedax.blogspot.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1832,"friends_count":2305,"listed_count":57,"created_at":"Mon - Oct 17 19:56:50 +0000 2011","favourites_count":15862,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":117924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/714860389478055936\/zmP2cFiW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/714860389478055936\/zmP2cFiW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:33:29 +0000 2020","id":1234456792924639232,"id_str":"1234456792924639232","text":"Los - progres son esos seres capaces de decretar emergencias clim\u00e1ticas porque - a lo mejor el mar sube 2 cent\u00edmetros d\u2026 https:\/\/t.co\/rzFIbk4mZu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rzFIbk4mZu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234456792924639232","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241993704,"id_str":"241993704","name":"Luis - del Pino","screen_name":"ldpsincomplejos","location":"Madrid","description":"Director - del programa de tertulia pol\u00edtica Sin Complejos en http:\/\/t.co\/FkO99MbT3H","url":"http:\/\/t.co\/CvntVCsPe0","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CvntVCsPe0","expanded_url":"http:\/\/blogs.libertaddigital.com\/enigmas-del-11-m\/","display_url":"blogs.libertaddigital.com\/enigmas-del-11\u2026","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/FkO99MbT3H","expanded_url":"http:\/\/esradio.libertaddigital.com\/","display_url":"esradio.libertaddigital.com","indices":[60,82]}]}},"protected":false,"followers_count":161466,"friends_count":3031,"listed_count":1236,"created_at":"Sun - Jan 23 17:39:14 +0000 2011","favourites_count":26268,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":105043,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007677959245828097\/i-2yAFvg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007677959245828097\/i-2yAFvg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241993704\/1413083974","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1440,"favorite_count":3030,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":1440,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537143754752,"id_str":"1234518537143754752","text":"RT - @TVVnoticias: #2Mar El alcalde de Miami, Francis Su\u00e1rez, (@MiamiMayor) - informa que la ciudad se ha estado preparando activamente para cu\u2026","truncated":false,"entities":{"hashtags":[{"text":"2Mar","indices":[17,22]}],"symbols":[],"user_mentions":[{"screen_name":"TVVnoticias","name":"TVV - Noticias","id":381515624,"id_str":"381515624","indices":[3,15]},{"screen_name":"MiamiMayor","name":"Mayor - Francis Suarez","id":968575617036881921,"id_str":"968575617036881921","indices":[61,72]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446539510,"id_str":"446539510","name":"gladiola2012","screen_name":"GladysGgladiola","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":81,"listed_count":0,"created_at":"Sun - Dec 25 21:14:35 +0000 2011","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19101,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:27:13 +0000 2020","id":1234515613181235200,"id_str":"1234515613181235200","text":"#2Mar - El alcalde de Miami, Francis Su\u00e1rez, (@MiamiMayor) informa que la ciudad - se ha estado preparando activamente\u2026 https:\/\/t.co\/eL5IFcMn8b","truncated":true,"entities":{"hashtags":[{"text":"2Mar","indices":[0,5]}],"symbols":[],"user_mentions":[{"screen_name":"MiamiMayor","name":"Mayor - Francis Suarez","id":968575617036881921,"id_str":"968575617036881921","indices":[44,55]}],"urls":[{"url":"https:\/\/t.co\/eL5IFcMn8b","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234515613181235200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":381515624,"id_str":"381515624","name":"TVV - Noticias","screen_name":"TVVnoticias","location":"Miami,USA","description":"Cuenta - oficial de @TVVnoticias para informar lo que ocurre en Venezuela y el mundo. - Sinton\u00edzanos en EEUU por Directv, Comcast, Spectrum, VIVOPlay y m\u00e1s.","url":"https:\/\/t.co\/GPlkszCEId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GPlkszCEId","expanded_url":"http:\/\/tvvenezuela.tv","display_url":"tvvenezuela.tv","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":404208,"friends_count":872,"listed_count":1173,"created_at":"Wed - Sep 28 13:31:17 +0000 2011","favourites_count":883,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":245193,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"5A769E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1128325024233005056\/C_x98gmP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1128325024233005056\/C_x98gmP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/381515624\/1557848570","profile_link_color":"000205","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":3,"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"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518537076723712,"id_str":"1234518537076723712","text":"RT - @BimAfolami: by washing their hands with soap and warm water for at least - 20 seconds or using an alcohol-based hand sanitiser gel. If yo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BimAfolami","name":"Bim - Afolami MP","id":311956971,"id_str":"311956971","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4432156474,"id_str":"4432156474","name":"Pete - Thompson","screen_name":"peterth36165266","location":"","description":"music - was my first love","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":165,"listed_count":0,"created_at":"Thu - Dec 10 00:40:54 +0000 2015","favourites_count":360,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":240,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234163960322109441\/QwQt7ZWX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234163960322109441\/QwQt7ZWX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4432156474\/1577690554","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:24:49 +0000 2020","id":1234515010858225664,"id_str":"1234515010858225664","text":"by - washing their hands with soap and warm water for at least 20 seconds or using - an alcohol-based hand sanitiser ge\u2026 https:\/\/t.co\/gdwkHn70lx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gdwkHn70lx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234515010858225664","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234515009272762369,"in_reply_to_status_id_str":"1234515009272762369","in_reply_to_user_id":311956971,"in_reply_to_user_id_str":"311956971","in_reply_to_screen_name":"BimAfolami","user":{"id":311956971,"id_str":"311956971","name":"Bim - Afolami MP","screen_name":"BimAfolami","location":"Hertfordshire\/Westminster","description":"Father - to three boys. Husband to Hetti. MP for #Hitchin & #Harpenden. One Nation - Tory. Retweets mean take a look at this, they don\u2019t mean I necessarily - agree","url":"https:\/\/t.co\/sRG3XBXgpq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sRG3XBXgpq","expanded_url":"https:\/\/www.bimafolami.co.uk","display_url":"bimafolami.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9017,"friends_count":1590,"listed_count":239,"created_at":"Mon - Jun 06 10:41:54 +0000 2011","favourites_count":768,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":2715,"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\/1085919404393676801\/i4vzLXbU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1085919404393676801\/i4vzLXbU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/311956971\/1509309709","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":12,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518536699207682,"id_str":"1234518536699207682","text":"RT - @BBCWorld: \"It seems to start with a fever, followed by a dry cough\"\n\nWhat - is coronavirus and what are the symptoms? @JamesTGallagher ta\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCWorld","name":"BBC - News (World)","id":742143,"id_str":"742143","indices":[3,12]},{"screen_name":"JamesTGallagher","name":"James - Gallagher","id":22686454,"id_str":"22686454","indices":[120,136]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1229113764848558080,"id_str":"1229113764848558080","name":"Laura - Phillips","screen_name":"LauraPh222","location":"","description":"Please help - the public to save the BBC! \nIt costs 43p a day, less than a second class - stamp. We need to think carefully before we damage the BBC beyond repair.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":23,"listed_count":0,"created_at":"Sun - Feb 16 18:42:57 +0000 2020","favourites_count":381,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":540,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229118472183074817\/AM7DUORQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229118472183074817\/AM7DUORQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1229113764848558080\/1581879655","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:58:06 +0000 2020","id":1234478086785290240,"id_str":"1234478086785290240","text":"\"It - seems to start with a fever, followed by a dry cough\"\n\nWhat is coronavirus - and what are the symptoms?\u2026 https:\/\/t.co\/4qAPbCWqH3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4qAPbCWqH3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234478086785290240","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":742143,"id_str":"742143","name":"BBC - News (World)","screen_name":"BBCWorld","location":"London, UK","description":"News, - features and analysis from the World''s newsroom. Breaking news, follow @BBCBreaking. - UK news, @BBCNews. Latest sports news @BBCSport","url":"https:\/\/t.co\/7NEgoMwJy3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7NEgoMwJy3","expanded_url":"http:\/\/www.bbc.com\/news","display_url":"bbc.com\/news","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":26957184,"friends_count":71,"listed_count":118147,"created_at":"Thu - Feb 01 07:44:29 +0000 2007","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":306400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"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\/1150717770478379008\/8-XiwK-s_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1150717770478379008\/8-XiwK-s_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/742143\/1485172490","profile_link_color":"1F527B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"5A5A5A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":293,"favorite_count":540,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":293,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518536665681920,"id_str":"1234518536665681920","text":"RT - @MazurikL: President Trump\u2019s news conference briefing us on the war in - Afghanistan & coronavirus. We have less cases than any other coun\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MazurikL","name":"\ud83d\udcab\ud83d\udc8bExtremely - Stable Genius Nationalist Laare\ud83d\udc8b\ud83d\udcab","id":824322536204865537,"id_str":"824322536204865537","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1027677836818227207,"id_str":"1027677836818227207","name":"Brenda","screen_name":"Brenda11641001","location":"","description":"Guidance - Counselor \nIf you speak from your heart and another heart is open, he\/she\/they - will feel\/hear you! \u2764","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1222,"friends_count":1711,"listed_count":0,"created_at":"Thu - Aug 09 22:07:44 +0000 2018","favourites_count":33143,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14952,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:01:57 +0000 2020","id":1234479057724723203,"id_str":"1234479057724723203","text":"President - Trump\u2019s news conference briefing us on the war in Afghanistan & coronavirus. - We have less cases than any\u2026 https:\/\/t.co\/OgeYBfE4ym","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OgeYBfE4ym","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234479057724723203","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":824322536204865537,"id_str":"824322536204865537","name":"\ud83d\udcab\ud83d\udc8bExtremely - Stable Genius Nationalist Laare\ud83d\udc8b\ud83d\udcab","screen_name":"MazurikL","location":"Pennsylvania, - USA","description":"KNOWLEDGE IS POWER! FB Dinesh D''Souza Charlie Kirk Gen - Flynn Wayne Dupree Scott Baio Charles Payne Sidney Powell Juanita Broderick - Antonio Sabato Ryan Fournier","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73014,"friends_count":54895,"listed_count":47,"created_at":"Wed - Jan 25 18:26:22 +0000 2017","favourites_count":152060,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":297374,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212973569107517440\/Tf1YfLv3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212973569107517440\/Tf1YfLv3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/824322536204865537\/1581085129","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":359,"favorite_count":394,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":359,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518536665620480,"id_str":"1234518536665620480","text":"Disinformation - and phishing attacks are already exploiting the coronavirus outbreak. \n\nDon\u2019t - assume this isn\u2019t a co\u2026 https:\/\/t.co\/TSoMfv77mr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TSoMfv77mr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518536665620480","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720308713,"id_str":"720308713","name":"Dr - Saif Abed","screen_name":"Saif_Abed","location":"London, England","description":"Medical - doctor exploring #cybersecurity for healthcare. Partner & Director of Cybersecurity - Advisory Services at The AbedGraham Group; Expert - EC | WHO | IPA","url":"https:\/\/t.co\/8ziqFlSLOC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8ziqFlSLOC","expanded_url":"http:\/\/www.abedgraham.com","display_url":"abedgraham.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3033,"friends_count":527,"listed_count":453,"created_at":"Fri - Jul 27 15:02:54 +0000 2012","favourites_count":2215,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16876,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8E8E8","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\/1047904007493230592\/_zCB825k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1047904007493230592\/_zCB825k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720308713\/1536775290","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518536661487622,"id_str":"1234518536661487622","text":"RT - @jxeker: everyone: we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jxeker","name":"joe","id":2745274901,"id_str":"2745274901","indices":[3,10]}],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901"}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901","video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":737778159307894784,"id_str":"737778159307894784","name":"\ud835\udc07\ud835\udc04\ud835\udc0d\ud835\udc13\ud835\udc00\ud835\udc08 - \ud835\udc07\ud835\udc0e\ud835\udc0a\ud835\udc00\ud835\udc06\ud835\udc04","screen_name":"h3ntaihokage","location":"United - States","description":"elite niggas only \ud83e\ude78","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":110,"listed_count":1,"created_at":"Tue - May 31 22:49:55 +0000 2016","favourites_count":17471,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14251,"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\/1224044127181889536\/4NsbQFBC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224044127181889536\/4NsbQFBC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/737778159307894784\/1583173314","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 17:58:07 +0000 2020","id":1234176102362419202,"id_str":"1234176102362419202","text":"everyone: - we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35881,"favorite_count":117231,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35881,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:50 +0000 2020","id":1234518536623575040,"id_str":"1234518536623575040","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1149222300543332352,"id_str":"1149222300543332352","name":"Le\u00f3n","screen_name":"nunezzflorezz","location":"","description":"artist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":205,"listed_count":1,"created_at":"Thu - Jul 11 07:42:02 +0000 2019","favourites_count":4965,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232767574863007744\/0nrsvcAa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232767574863007744\/0nrsvcAa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1149222300543332352\/1582496560","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153512,"favorite_count":478726,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153512,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536317435904,"id_str":"1234518536317435904","text":"RT - @sarahkliff: Two Americans were held in mandatory hospital isolation for suspected - Coronavirus.\n\nThey now face $2,700 in outstanding med\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sarahkliff","name":"Sarah - Kliff","id":19734832,"id_str":"19734832","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":797183,"id_str":"797183","name":"Liminal - State Trooper \ud83d\udc9a\ud83c\udff4\ud83d\udc9a","screen_name":"jeremy6d","location":"Richmond, - VA","description":"\"It is not that love will tell you what to do; it is that - love will tell you how to do it with love.\"","url":"https:\/\/t.co\/XPgasNO4Tg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XPgasNO4Tg","expanded_url":"http:\/\/jeremyweiland.com","display_url":"jeremyweiland.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1030,"friends_count":670,"listed_count":92,"created_at":"Tue - Feb 27 04:23:14 +0000 2007","favourites_count":24423,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":75436,"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\/2995828286\/80744699e385ce2d22465689490810bb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2995828286\/80744699e385ce2d22465689490810bb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/797183\/1576849155","profile_link_color":"19CF86","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000080","profile_text_color":"808080","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:28:39 +0000 2020","id":1234470678344224768,"id_str":"1234470678344224768","text":"Two - Americans were held in mandatory hospital isolation for suspected Coronavirus.\n\nThey - now face $2,700 in outstan\u2026 https:\/\/t.co\/EOpDtYdk6D","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EOpDtYdk6D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234470678344224768","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19734832,"id_str":"19734832","name":"Sarah - Kliff","screen_name":"sarahkliff","location":"Washington, DC","description":"Investigations - and health policy for the @nytimes. Dog mom. Human mom. I like reading your - medical bills.\n\nGot a tip? sarah.kliff@nytimes.com or DM for Signal","url":"https:\/\/t.co\/cAqqxaEO4i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cAqqxaEO4i","expanded_url":"http:\/\/www.sarahkliff.com","display_url":"sarahkliff.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":141684,"friends_count":1179,"listed_count":4080,"created_at":"Thu - Jan 29 21:14:18 +0000 2009","favourites_count":4328,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":14130,"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\/817108735290208256\/0H1DNvhi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817108735290208256\/0H1DNvhi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19734832\/1557753068","profile_link_color":"588CA8","profile_sidebar_border_color":"0A0801","profile_sidebar_fill_color":"E6C46C","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5207,"favorite_count":9818,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5207,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536288161792,"id_str":"1234518536288161792","text":"RT - @FusaroZila: Novo coronav\u00edrus causa segunda morte nos Estados Unidos - https:\/\/t.co\/LdkRkNgzTp via @AgoraNoticiasBr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FusaroZila","name":"Zil\u00e1 - Fusaro\ud83d\udcab\ud83d\udcab\ud83c\udde7\ud83c\uddf7\ud83c\udde7\ud83c\uddf7\ud83c\udde7\ud83c\uddf7\ud83c\udde7\ud83c\uddf7","id":1057383865592045574,"id_str":"1057383865592045574","indices":[3,14]},{"screen_name":"AgoraNoticiasBr","name":"AGORA - NOT\u00cdCIAS BRASIL","id":745761593665982464,"id_str":"745761593665982464","indices":[100,116]}],"urls":[{"url":"https:\/\/t.co\/LdkRkNgzTp","expanded_url":"https:\/\/www.agoranoticiasbrasil.com.br\/novo-coronavirus-causa-segunda-morte-nos-estados-unidos\/","display_url":"agoranoticiasbrasil.com.br\/novo-coronavir\u2026","indices":[72,95]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1049705493114032128,"id_str":"1049705493114032128","name":"helena - souza","screen_name":"helenas91507789","location":"Paran\u00e1, Brasil","description":"\ud83d\ude0e\ud83d\ude0e\ud83c\udde7\ud83c\uddf7\ud83c\udde7\ud83c\uddf7\u2665\ufe0f\u2665\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":999,"friends_count":1864,"listed_count":0,"created_at":"Tue - Oct 09 16:57:46 +0000 2018","favourites_count":14372,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7745,"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\/1057339027882475520\/H_jT6S4x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057339027882475520\/H_jT6S4x_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:02:23 +0000 2020","id":1234509363978653697,"id_str":"1234509363978653697","text":"Novo - coronav\u00edrus causa segunda morte nos Estados Unidos https:\/\/t.co\/LdkRkNgzTp - via @AgoraNoticiasBr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AgoraNoticiasBr","name":"AGORA - NOT\u00cdCIAS BRASIL","id":745761593665982464,"id_str":"745761593665982464","indices":[84,100]}],"urls":[{"url":"https:\/\/t.co\/LdkRkNgzTp","expanded_url":"https:\/\/www.agoranoticiasbrasil.com.br\/novo-coronavirus-causa-segunda-morte-nos-estados-unidos\/","display_url":"agoranoticiasbrasil.com.br\/novo-coronavir\u2026","indices":[56,79]}]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1057383865592045574,"id_str":"1057383865592045574","name":"Zil\u00e1 - Fusaro\ud83d\udcab\ud83d\udcab\ud83c\udde7\ud83c\uddf7\ud83c\udde7\ud83c\uddf7\ud83c\udde7\ud83c\uddf7\ud83c\udde7\ud83c\uddf7","screen_name":"FusaroZila","location":"S\u00e3o - Paulo, Brasil","description":"Eu vou estar com voc\u00ea em cada passo do - caminho @jairbolsonaro\n\ud83d\udcab\ud83d\udcab\ud83d\udcab\ud83d\udcab","url":"https:\/\/t.co\/YejpyhLIrb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YejpyhLIrb","expanded_url":"https:\/\/twitter.com\/ZilaFusaro?s=09","display_url":"twitter.com\/ZilaFusaro?s=09","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7946,"friends_count":4954,"listed_count":4,"created_at":"Tue - Oct 30 21:28:53 +0000 2018","favourites_count":131414,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203497349953343489\/ybdwFT_H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203497349953343489\/ybdwFT_H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1057383865592045574\/1582080404","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"pt"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536267206657,"id_str":"1234518536267206657","text":"RT - @ClayTravis: Every year, on average, 50,000 people die from the flu in the - US yet most people won\u2019t take the time to get a flu shot. Two\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ClayTravis","name":"Clay - Travis","id":50772918,"id_str":"50772918","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":992426576947052544,"id_str":"992426576947052544","name":"kf100","screen_name":"kfrost100","location":"Alabama, - USA","description":"International business. Libertarian leaning. Media and - Never Trump types have made me support the President more every day.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":347,"friends_count":2076,"listed_count":1,"created_at":"Fri - May 04 15:31:49 +0000 2018","favourites_count":58663,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15048,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213203446863519744\/dyX4uTri_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213203446863519744\/dyX4uTri_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:30:40 +0000 2020","id":1234486285219303426,"id_str":"1234486285219303426","text":"Every - year, on average, 50,000 people die from the flu in the US yet most people - won\u2019t take the time to get a flu s\u2026 https:\/\/t.co\/otXEAWGJjo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/otXEAWGJjo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234486285219303426","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50772918,"id_str":"50772918","name":"Clay - Travis","screen_name":"ClayTravis","location":"Nashville","description":"https:\/\/t.co\/Ut3ejMNAQd, - @outkick @foxsportsradio 6-9 am et & @lockitinonfs1 TV show 4:30 et, author, - Republicans Buy Sneakers Too, dad of three boys, lawyer","url":"https:\/\/t.co\/c46ZljJT0b","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c46ZljJT0b","expanded_url":"http:\/\/www.outkick.com","display_url":"outkick.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Ut3ejMNAQd","expanded_url":"http:\/\/Outkick.com","display_url":"Outkick.com","indices":[0,23]}]}},"protected":false,"followers_count":652060,"friends_count":353,"listed_count":3730,"created_at":"Thu - Jun 25 21:16:40 +0000 2009","favourites_count":8233,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":102380,"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\/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\/668983225860034564\/PIdSf23G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668983225860034564\/PIdSf23G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50772918\/1448333179","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5516,"favorite_count":26587,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5516,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536267190272,"id_str":"1234518536267190272","text":"eu - ja n\u00e3o gosto de pessoas ai o coronavirus n\u00e3o pode ter contato to - sussa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1024771283534405637,"id_str":"1024771283534405637","name":"\ud83e\udd82","screen_name":"confuserddl","location":"no - cu do br","description":"Demi Lovato forever in my heart \u2661 \/ Fifth Harmony - \u2661 \/\n\n[ GOT \u2022 VIS A VIS \u2022 VIS A VIS : EL OASIS \u2022 SOBRENATURAL - \u2022 EUPHORIA \u2022 LA CASA DE PAPEL \u2022 LUCIFER ]","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3513,"friends_count":3972,"listed_count":0,"created_at":"Wed - Aug 01 21:38:08 +0000 2018","favourites_count":12752,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17284,"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\/1234519370904350720\/L1E81r0W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234519370904350720\/L1E81r0W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1024771283534405637\/1578626085","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536263028740,"id_str":"1234518536263028740","text":"RT - @bttr_as1: Make no mistake, \u2066@realDonaldTrump\u2069 is not happy that - diagnostic testing is finally available, and will reveal an outbreak he\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bttr_as1","name":"AGirlHasNoPresident - \ud83c\udd98","id":880417607865815040,"id_str":"880417607865815040","indices":[3,12]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[32,48]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4290214943,"id_str":"4290214943","name":"Pat - Woodruff Cohan","screen_name":"1stvoxfox","location":"Saratoga Springs, NY","description":"\ud83c\udf0a\ud83c\udf0a\ud83c\udf0aVoice - actor 30+ yrs., animal\/nature lover, and volunteer at Old Friends at Cabin - Creek, thoroughbred racehorse retirement farm. All opinions R my own.","url":"https:\/\/t.co\/2lfXZnJpbK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2lfXZnJpbK","expanded_url":"http:\/\/www.patwoodruffcohan.com","display_url":"patwoodruffcohan.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":145,"friends_count":221,"listed_count":0,"created_at":"Thu - Nov 26 23:23:56 +0000 2015","favourites_count":13361,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5337,"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\/1222948530937061377\/V7-VLPL9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222948530937061377\/V7-VLPL9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4290214943\/1563078535","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:40:42 +0000 2020","id":1234473708485533696,"id_str":"1234473708485533696","text":"Make - no mistake, \u2066@realDonaldTrump\u2069 is not happy that diagnostic testing - is finally available, and will reveal an o\u2026 https:\/\/t.co\/P1ShJ2wC7k","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[18,34]}],"urls":[{"url":"https:\/\/t.co\/P1ShJ2wC7k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234473708485533696","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":880417607865815040,"id_str":"880417607865815040","name":"AGirlHasNoPresident - \ud83c\udd98","screen_name":"bttr_as1","location":"","description":"Neuroscience - Nurse Practitioner, PhD, proud wife of an Army SF Vet. I know shit from shinola, - so #FuckTrump #Resist #ImpeachTheMF. No lists please","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7304,"friends_count":6697,"listed_count":19,"created_at":"Thu - Jun 29 13:28:09 +0000 2017","favourites_count":50070,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":34606,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025202730363695105\/y-v-mUao_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025202730363695105\/y-v-mUao_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/880417607865815040\/1571316836","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":94,"favorite_count":171,"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"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536262840321,"id_str":"1234518536262840321","text":"prefiero - que me de coronavirus a volverme a enamorar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1202820004942696448,"id_str":"1202820004942696448","name":"Alexa - Jenner","screen_name":"AlexaML19","location":"","description":"feliz cumplea\u00f1os - Palo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":103,"listed_count":0,"created_at":"Fri - Dec 06 05:20:35 +0000 2019","favourites_count":1797,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":288,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228187612122206209\/d5fbVh5C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228187612122206209\/d5fbVh5C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1202820004942696448\/1578373481","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536246087680,"id_str":"1234518536246087680","text":"@FMKermitThinks - Coronavirus has a mortality rate at 0.9.....at least this is the current estimate. - This is half of the Influenza rate.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FMKermitThinks","name":"Very - Stable Genius Kman","id":1027958152715796480,"id_str":"1027958152715796480","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234501170879696897,"in_reply_to_status_id_str":"1234501170879696897","in_reply_to_user_id":1027958152715796480,"in_reply_to_user_id_str":"1027958152715796480","in_reply_to_screen_name":"FMKermitThinks","user":{"id":784425611204755456,"id_str":"784425611204755456","name":"Dmac","screen_name":"sioux4evrr","location":"Atlanta, - GA","description":"MD, Conservative, Love Schadenfreude","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1412,"friends_count":1610,"listed_count":8,"created_at":"Fri - Oct 07 16:10:14 +0000 2016","favourites_count":107407,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35651,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/791130451935125504\/qkifrSPS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/791130451935125504\/qkifrSPS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536216891393,"id_str":"1234518536216891393","text":"RT - @RVAwonk: The Shanghai lab that published the world\u2019s first genome sequence - of #coronavirus (which helped researchers develop test kits\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[82,94]}],"symbols":[],"user_mentions":[{"screen_name":"RVAwonk","name":"Caroline - Orr","id":2316383071,"id_str":"2316383071","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":806794262004150273,"id_str":"806794262004150273","name":"BeSeriousUSA - \ud83e\udd40","screen_name":"BeSeriousUSA","location":"Trumpocalypse-USA","description":"#HarvardAlumni - \ud83c\udf93 #SoCalBeachGal \ud83d\ude0e#TheResistance \ud83e\udd85 #DemocraticDelegate - \ud83d\udd4a #Biden2020 #VoteBlueNoMatterWho \ud83d\udc48\ud83c\udffb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46600,"friends_count":43724,"listed_count":103,"created_at":"Thu - Dec 08 09:35:16 +0000 2016","favourites_count":124888,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":133455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/913286839036821504\/FLqZkjAX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913286839036821504\/FLqZkjAX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806794262004150273\/1538985031","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 29 03:00:22 +0000 2020","id":1233587787594698752,"id_str":"1233587787594698752","text":"The - Shanghai lab that published the world\u2019s first genome sequence of #coronavirus - (which helped researchers develop\u2026 https:\/\/t.co\/qw3pW0Rq7R","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[69,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qw3pW0Rq7R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233587787594698752","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2316383071,"id_str":"2316383071","name":"Caroline - Orr","screen_name":"RVAwonk","location":"","description":"#Feminist. Behavioral - Scientist. Peripatetic. Reporter @NatObserver focusing on disinformation & - the rise of hate. Also find me @ArcDigi & @BylineTimes.","url":"https:\/\/t.co\/fTDB1TpYap","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fTDB1TpYap","expanded_url":"https:\/\/medium.com\/@RVAwonk","display_url":"medium.com\/@RVAwonk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":433366,"friends_count":3712,"listed_count":4535,"created_at":"Wed - Jan 29 02:27:58 +0000 2014","favourites_count":89640,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":88438,"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\/754103991966003200\/9JwV0DTh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/754103991966003200\/9JwV0DTh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2316383071\/1570243835","profile_link_color":"993377","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":487,"favorite_count":625,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":487,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536187449344,"id_str":"1234518536187449344","text":"Coronavirus: - 3 questions \u00e0 se poser avant de r\u00e9server son prochain voyage https:\/\/t.co\/tInCzohVav","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tInCzohVav","expanded_url":"https:\/\/www.lefigaro.fr\/voyages\/coronavirus-3-questions-a-se-poser-avant-de-reserver-son-prochain-voyage-20200302","display_url":"lefigaro.fr\/voyages\/corona\u2026","indices":[74,97]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.netguide.com\/\" rel=\"nofollow\"\u003eNetguide.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,"user":{"id":2422762861,"id_str":"2422762861","name":"Netguide","screen_name":"netguide","location":"Paris, - France","description":"https:\/\/t.co\/JZ6ES9pOFh, le Portail Internet nouvelle - g\u00e9n\u00e9ration pour passer un temps de qualit\u00e9 sur Internet, dans - le respect de sa vie priv\u00e9e","url":"https:\/\/t.co\/6ZyRUTse2D","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6ZyRUTse2D","expanded_url":"http:\/\/www.Netguide.com\/","display_url":"Netguide.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/JZ6ES9pOFh","expanded_url":"https:\/\/Netguide.com","display_url":"Netguide.com","indices":[0,23]}]}},"protected":false,"followers_count":3238,"friends_count":1,"listed_count":90,"created_at":"Tue - Apr 01 22:35:47 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":260655,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F7F7F7","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\/545929831636946944\/yUwAfYdJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545929831636946944\/yUwAfYdJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2422762861\/1476308563","profile_link_color":"1B95E0","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536074203138,"id_str":"1234518536074203138","text":"RT - @AlexandraRquez: pero tranquilos q no hay nuevos casos de coronavirus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlexandraRquez","name":"Alexandra.","id":221764185,"id_str":"221764185","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1121128151847976961,"id_str":"1121128151847976961","name":":P","screen_name":"albagallegoo__","location":"Valladolid, - Espa\u00f1a","description":"pero no se, nunca encajo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":156,"listed_count":0,"created_at":"Wed - Apr 24 19:05:55 +0000 2019","favourites_count":6137,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233892315124596736\/U5PF5raW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233892315124596736\/U5PF5raW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1121128151847976961\/1581262919","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 13:12:19 +0000 2020","id":1234104177946746880,"id_str":"1234104177946746880","text":"pero - tranquilos q no hay nuevos casos de coronavirus https:\/\/t.co\/UvpyVLUefb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UvpyVLUefb","expanded_url":"https:\/\/twitter.com\/diariodeavisos\/status\/1234076490700148736","display_url":"twitter.com\/diariodeavisos\u2026","indices":[53,76]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221764185,"id_str":"221764185","name":"Alexandra.","screen_name":"AlexandraRquez","location":"Canarias.","description":"none - but ourselves can free our minds.","url":"https:\/\/t.co\/dg4psBPsJG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dg4psBPsJG","expanded_url":"http:\/\/instagram.com\/alexvhso","display_url":"instagram.com\/alexvhso","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":465,"friends_count":314,"listed_count":3,"created_at":"Wed - Dec 01 15:06:14 +0000 2010","favourites_count":12054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12329,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.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\/1140034414304464901\/lbWmthoq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140034414304464901\/lbWmthoq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/221764185\/1486489965","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1234076490700148736,"quoted_status_id_str":"1234076490700148736","quoted_status":{"created_at":"Sun - Mar 01 11:22:18 +0000 2020","id":1234076490700148736,"id_str":"1234076490700148736","text":"\ud83d\udd34\ud83d\udd34Denuncian - una nueva agresi\u00f3n sexual en la \u00faltima noche del Carnaval de Santa - Cruz de Tenerife\u2026 https:\/\/t.co\/s6ZyLccksP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s6ZyLccksP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234076490700148736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[97,120]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41097292,"id_str":"41097292","name":"Diario - de Avisos","screen_name":"diariodeavisos","location":"Santa Cruz de Tenerife, - Espa\u00f1a","description":"El portal de noticias y entretenimiento l\u00edder - en Canarias. En papel, el decano de la prensa, desde 1890 en tu kiosco","url":"https:\/\/t.co\/ChmDOxdOyw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ChmDOxdOyw","expanded_url":"http:\/\/www.diariodeavisos.com","display_url":"diariodeavisos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":96436,"friends_count":51,"listed_count":937,"created_at":"Tue - May 19 11:28:04 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":130140,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"104C88","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143450680478380033\/L4fFXO5o_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143450680478380033\/L4fFXO5o_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41097292\/1578479429","profile_link_color":"8C1108","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6E6E6","profile_text_color":"242424","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":275,"favorite_count":224,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"retweet_count":5605,"favorite_count":14870,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1234076490700148736,"quoted_status_id_str":"1234076490700148736","retweet_count":5605,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536065863680,"id_str":"1234518536065863680","text":"@tedlieu - @jagne_r You know what I think, I think no one cares, cause this is a nothing-burger - compared to heart dis\u2026 https:\/\/t.co\/Wv1woIICj9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedlieu","name":"Ted - Lieu","id":21059255,"id_str":"21059255","indices":[0,8]},{"screen_name":"jagne_r","name":"RichardJagne\ud83c\udf0a\ud83d\udc99\ud83e\udd8b\u270d","id":565395037,"id_str":"565395037","indices":[9,17]}],"urls":[{"url":"https:\/\/t.co\/Wv1woIICj9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518536065863680","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234512837025812484,"in_reply_to_status_id_str":"1234512837025812484","in_reply_to_user_id":21059255,"in_reply_to_user_id_str":"21059255","in_reply_to_screen_name":"tedlieu","user":{"id":31510951,"id_str":"31510951","name":"PeeWee - Lee","screen_name":"LeeSpaner","location":"Monsey, NY","description":"#GlobalWarming - #Physics #Evolution #Commie #BlueWave #USNVet #DrGreger #VeganPlus #Hiking - #Atheist #AronRa #BLM #TheGordonCenterForBlackCulture","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1604,"friends_count":737,"listed_count":107,"created_at":"Wed - Apr 15 20:32:15 +0000 2009","favourites_count":6391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50240,"lang":null,"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\/765878086684385280\/AgML16dJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/765878086684385280\/AgML16dJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31510951\/1479811890","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518536032333824,"id_str":"1234518536032333824","text":"RT - @Pog_llins: 900 people get Coronavirus and the whole world wants to wear surgical - mask, 30 million people have AIDS but still nobody wan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Pog_llins","name":"Pogllins - \ud83c\udf0d","id":836612413755691012,"id_str":"836612413755691012","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201359155,"id_str":"201359155","name":"The - Great","screen_name":"_ARIANAtheGreat","location":"","description":"I am part - Beyonce. Kim Kardashian is my best friend.","url":"https:\/\/t.co\/lmtz7FckjJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lmtz7FckjJ","expanded_url":"http:\/\/christianmingle.com","display_url":"christianmingle.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":547,"friends_count":433,"listed_count":1,"created_at":"Mon - Oct 11 17:38:14 +0000 2010","favourites_count":1343,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74410,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/975514476148678657\/ZeIr7hOi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/975514476148678657\/ZeIr7hOi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201359155\/1403102853","profile_link_color":"0084B4","profile_sidebar_border_color":"B1D1E0","profile_sidebar_fill_color":"EBF2F5","profile_text_color":"2A1763","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 06:27:07 +0000 2020","id":1234002206485090304,"id_str":"1234002206485090304","text":"900 - people get Coronavirus and the whole world wants to wear surgical mask, 30 - million people have AIDS but still n\u2026 https:\/\/t.co\/AISc3vJ3F5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AISc3vJ3F5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234002206485090304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","quoted_status":{"created_at":"Sat - Feb 29 21:40:42 +0000 2020","id":1233869731607826433,"id_str":"1233869731607826433","text":"Sco - pa tu mana https:\/\/t.co\/Vqt0enFGmA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233869722736824326,"id_str":"1233869722736824326","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-V-brWkAYzyX3.jpg","url":"https:\/\/t.co\/Vqt0enFGmA","display_url":"pic.twitter.com\/Vqt0enFGmA","expanded_url":"https:\/\/twitter.com\/Pog_llins\/status\/1233869731607826433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":761,"resize":"fit"},"medium":{"w":1125,"h":761,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836612413755691012,"id_str":"836612413755691012","name":"Pogllins - \ud83c\udf0d","screen_name":"Pog_llins","location":"Lagos ,Nigeria","description":"Content - Creator || Arsenal fan || digital marketer || Brand Strategist || \ud83d\udce9collinsegwu48@gmail.com - || Unilag Influencer || Playboi Carti Stan!","url":"https:\/\/t.co\/WLIGl0TTDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WLIGl0TTDN","expanded_url":"http:\/\/instagram.com\/pogllins","display_url":"instagram.com\/pogllins","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42248,"friends_count":34634,"listed_count":8,"created_at":"Tue - Feb 28 16:21:57 +0000 2017","favourites_count":85363,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222198105048784899\/lqqHSj27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836612413755691012\/1582809793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":{"id":"00817d75276a95cf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00817d75276a95cf.json","place_type":"city","name":"Lagos","full_name":"Lagos, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":601,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"retweet_count":153512,"favorite_count":478726,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1233869731607826433,"quoted_status_id_str":"1233869731607826433","retweet_count":153512,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535948374017,"id_str":"1234518535948374017","text":"RT - @eldiariodedross: Lee Man-hee, l\u00edder de la iglesia Shincheonji, pide - perd\u00f3n por no hacer nada para evitar que el Coronavirus se esparza\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eldiariodedross","name":"Dross","id":78324623,"id_str":"78324623","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":268033801,"id_str":"268033801","name":"Rolando - Salazar","screen_name":"RolansRM","location":"valencia-venezuela","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":86,"listed_count":0,"created_at":"Fri - Mar 18 01:13:20 +0000 2011","favourites_count":5813,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4085,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221104760620711937\/dPeCrvqu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221104760620711937\/dPeCrvqu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268033801\/1398953255","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:08:48 +0000 2020","id":1234510980144672769,"id_str":"1234510980144672769","text":"Lee - Man-hee, l\u00edder de la iglesia Shincheonji, pide perd\u00f3n por no hacer - nada para evitar que el Coronavirus se espar\u2026 https:\/\/t.co\/AKMW4f7oPw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AKMW4f7oPw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510980144672769","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":78324623,"id_str":"78324623","name":"Dross","screen_name":"eldiariodedross","location":"En - la estaci\u00f3n Shenzhou","description":"Genocida de youtubers de salseo. - Scare Master Supreme. Sugar Daddy profesional. Exitoso escritor de horror. - Balcony beefcake.","url":"https:\/\/t.co\/lKohPsCg6N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lKohPsCg6N","expanded_url":"https:\/\/www.youtube.com\/user\/DrossRotzank","display_url":"youtube.com\/user\/DrossRotz\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2976907,"friends_count":68,"listed_count":2158,"created_at":"Tue - Sep 29 14:32:01 +0000 2009","favourites_count":25678,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":29302,"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\/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\/1229426343739133952\/tqlI0U27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229426343739133952\/tqlI0U27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78324623\/1568328119","profile_link_color":"6E6E6E","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":992,"favorite_count":8647,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":992,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535944228866,"id_str":"1234518535944228866","text":"RT - @LesEchos: INTERVIEW - Laurence Boone : le cri d''alarme de l''OCDE sur la - croissance mondiale\n\ud83d\udc49 https:\/\/t.co\/HlTw3mBbbK https:\/\/t.co\/NgOe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LesEchos","name":"Les - Echos","id":92564226,"id_str":"92564226","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/HlTw3mBbbK","expanded_url":"https:\/\/trib.al\/tzrZjDf","display_url":"trib.al\/tzrZjDf","indices":[98,121]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":76326683,"id_str":"76326683","name":"Hubert - MESSMER","screen_name":"Zehub","location":"Strasbourg, France","description":"Veilleur - DDurable - Alsacien Europ\u00e9en curieux de tout, en particulier d''#Ecologie - #ChangementClimatique #Enr #COP25 #Bio #Biodiversit\u00e9 #Climat #VEILLE - #GIEC","url":"https:\/\/t.co\/vqbG7Ol8Fo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vqbG7Ol8Fo","expanded_url":"http:\/\/bit.ly\/HgrxRf","display_url":"bit.ly\/HgrxRf","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7110,"friends_count":780,"listed_count":621,"created_at":"Tue - Sep 22 13:02:29 +0000 2009","favourites_count":7824,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":212060,"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\/1173505173081268224\/I6-yTvW6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1173505173081268224\/I6-yTvW6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76326683\/1401138754","profile_link_color":"447280","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:35:08 +0000 2020","id":1234517607862153216,"id_str":"1234517607862153216","text":"INTERVIEW - - Laurence Boone : le cri d''alarme de l''OCDE sur la croissance mondiale\n\ud83d\udc49 - https:\/\/t.co\/HlTw3mBbbK https:\/\/t.co\/NgOeMAgHdC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HlTw3mBbbK","expanded_url":"https:\/\/trib.al\/tzrZjDf","display_url":"trib.al\/tzrZjDf","indices":[84,107]}],"media":[{"id":1234517605861543937,"id_str":"1234517605861543937","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHjOMZX0AE1qnX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHjOMZX0AE1qnX.jpg","url":"https:\/\/t.co\/NgOeMAgHdC","display_url":"pic.twitter.com\/NgOeMAgHdC","expanded_url":"https:\/\/twitter.com\/LesEchos\/status\/1234517607862153216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":480,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":960,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234517605861543937,"id_str":"1234517605861543937","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHjOMZX0AE1qnX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHjOMZX0AE1qnX.jpg","url":"https:\/\/t.co\/NgOeMAgHdC","display_url":"pic.twitter.com\/NgOeMAgHdC","expanded_url":"https:\/\/twitter.com\/LesEchos\/status\/1234517607862153216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":480,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":960,"h":480,"resize":"fit"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":92564226,"id_str":"92564226","name":"Les - Echos","screen_name":"LesEchos","location":"Paris","description":"L''actualit\u00e9 - \u00e9conomique, financi\u00e8re et boursi\u00e8re fran\u00e7aise et internationale.","url":"https:\/\/t.co\/gixxFCrqR9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gixxFCrqR9","expanded_url":"http:\/\/www.lesechos.fr\/","display_url":"lesechos.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1220465,"friends_count":507,"listed_count":8097,"created_at":"Wed - Nov 25 17:01:01 +0000 2009","favourites_count":319,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":404535,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/917735975119441920\/Otcve69W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/917735975119441920\/Otcve69W_normal.jpg","profile_link_color":"B01415","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"},"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":"fr"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535793147910,"id_str":"1234518535793147910","text":"RT - @trump_gays: The airplanes I took before and after the #CPAC2020 were totally - packed... \nI''m thanking God, I was able to be part of such\u2026","truncated":false,"entities":{"hashtags":[{"text":"CPAC2020","indices":[58,67]}],"symbols":[],"user_mentions":[{"screen_name":"trump_gays","name":"GAYS - LOVE PRESIDENT TRUMP","id":1023415691104407552,"id_str":"1023415691104407552","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4214995979,"id_str":"4214995979","name":"\u274cI - Did A #WalkAway","screen_name":"purplemeatballs","location":"Earth","description":"Facts - Not Feelings \ud83c\udfaf Gay\ud83c\udf08 Voted Trump after Obama\ud83d\udc4d - got a MBA \ud83d\udcda Got RESPECT for \ud83d\udc08\ud83d\udc15\ud83d\udc38\ufe0f\ud83d\udd2b\u2721\ud83d\ude94\u26ea - Now Retired \ud83d\ude34 BTY I''m \u26ab1\/2 black +\u26aa1\/2 white =100% - American \u2764","url":"https:\/\/t.co\/VifjACdDKK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VifjACdDKK","expanded_url":"https:\/\/youtu.be\/hiU20QjKPCo","display_url":"youtu.be\/hiU20QjKPCo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8099,"friends_count":8928,"listed_count":106,"created_at":"Wed - Nov 18 03:40:52 +0000 2015","favourites_count":134036,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":105885,"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\/1159833136672329728\/HVS_v-Cp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159833136672329728\/HVS_v-Cp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4214995979\/1579567048","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 03:55:25 +0000 2020","id":1234326420228313088,"id_str":"1234326420228313088","text":"The - airplanes I took before and after the #CPAC2020 were totally packed... \nI''m - thanking God, I was able to be part\u2026 https:\/\/t.co\/v3Gl2Rndj5","truncated":true,"entities":{"hashtags":[{"text":"CPAC2020","indices":[42,51]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/v3Gl2Rndj5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234326420228313088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1023415691104407552,"id_str":"1023415691104407552","name":"GAYS - LOVE PRESIDENT TRUMP","screen_name":"trump_gays","location":"Land of 2A home - of FreeSpeech!","description":"I didn''t choose to be Gay!\ud83c\udff3\ufe0f\u200d\ud83c\udf08 - I chose to be a Conservative!\ud83c\uddfa\ud83c\uddf8 Loving & defending the - U.S. is a must\ud83d\uddfdDemocrats hate everything but Sharia! #EndAbortion! - \ud83d\udc7c","url":"https:\/\/t.co\/ClBKGt968z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ClBKGt968z","expanded_url":"http:\/\/www.GaysForTrump.com","display_url":"GaysForTrump.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12392,"friends_count":13573,"listed_count":14,"created_at":"Sun - Jul 29 03:51:29 +0000 2018","favourites_count":50184,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71084,"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\/1198337589448708096\/zApfdt3n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198337589448708096\/zApfdt3n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1023415691104407552\/1551771215","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":69,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":23,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535734382592,"id_str":"1234518535734382592","text":"RT - @sandycompany: At least nine western Washington schools and one college will - be closed Monday for deep cleaning out of an \"abundance of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sandycompany","name":"sandy","id":931766772855951360,"id_str":"931766772855951360","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19414346,"id_str":"19414346","name":"\ud83c\udf0aRiseUpBlue\ud83c\udf0a\ud83c\udd98","screen_name":"iyamtoo","location":"Washington, - USA","description":"No lists or BLOCKED #TheResistance #Resist #NotMyPresident - #Indivisible Union Strong | Democrat | American #March4OurLives #BlueWave - #FBR \u201cIt\u2019s chaos. Be kind.\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7264,"friends_count":7788,"listed_count":36,"created_at":"Fri - Jan 23 21:13:24 +0000 2009","favourites_count":498703,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":187552,"lang":null,"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\/1162201637252788224\/6JrvO9Vb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162201637252788224\/6JrvO9Vb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19414346\/1565925439","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:14:18 +0000 2020","id":1234512366479347712,"id_str":"1234512366479347712","text":"At - least nine western Washington schools and one college will be closed Monday - for deep cleaning out of an \"abundan\u2026 https:\/\/t.co\/1Hfy4HxpbY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1Hfy4HxpbY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234512366479347712","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":931766772855951360,"id_str":"931766772855951360","name":"sandy","screen_name":"sandycompany","location":"","description":"My - life isnt \"wonderful Christian woman & exemplary faith\" It''s by Jesus'' - grace that i am even alive. Best part of my twitter is me re-tweeting awesome - people!","url":"https:\/\/t.co\/3JdIJYZEov","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3JdIJYZEov","expanded_url":"https:\/\/littlesanctuaryministries.home.blog\/","display_url":"littlesanctuaryministries.home.blog","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1018,"friends_count":362,"listed_count":5,"created_at":"Sat - Nov 18 06:11:24 +0000 2017","favourites_count":212651,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1106838126947758081\/DEy32VH8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1106838126947758081\/DEy32VH8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/931766772855951360\/1512043193","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535642271745,"id_str":"1234518535642271745","text":"RT - @Conflits_FR: \ud83c\uddeb\ud83c\uddf7 Epidemie de #coronavirus : alors que - 100 lyc\u00e9ens de #Caen ne devaient pas rentrer demain, ils ont re\u00e7u - un mail leur dis\u2026","truncated":false,"entities":{"hashtags":[{"text":"coronavirus","indices":[32,44]},{"text":"Caen","indices":[72,77]}],"symbols":[],"user_mentions":[{"screen_name":"Conflits_FR","name":"Conflits","id":1214315619031478272,"id_str":"1214315619031478272","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138783624,"id_str":"138783624","name":"James - Mozart","screen_name":"jamesmozart","location":"Florida, USA","description":"M\u03b1n\u03b1g\u0454\u044f - | Photog\u044f\u03b1ph\u0454\u044f | \u00d0\u0454\u00a7ign\u0454\u044f | Husband - | Founder |@jaimefoto_ | @gospelvog | IG : @jamesmozart_ | FP : James Mozart - Photography","url":"https:\/\/t.co\/oRTDUQ2176","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oRTDUQ2176","expanded_url":"http:\/\/jamesmozart.com","display_url":"jamesmozart.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":469,"friends_count":73,"listed_count":15,"created_at":"Fri - Apr 30 15:40:25 +0000 2010","favourites_count":4400,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94631,"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\/1045416849691877380\/J6YBAzeB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1045416849691877380\/J6YBAzeB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138783624\/1578103949","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 22:11:27 +0000 2020","id":1234239857142255617,"id_str":"1234239857142255617","text":"\ud83c\uddeb\ud83c\uddf7 - Epidemie de #coronavirus : alors que 100 lyc\u00e9ens de #Caen ne devaient - pas rentrer demain, ils ont re\u00e7u un mail l\u2026 https:\/\/t.co\/FXMDuTLjgL","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[15,27]},{"text":"Caen","indices":[55,60]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FXMDuTLjgL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234239857142255617","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214315619031478272,"id_str":"1214315619031478272","name":"Conflits","screen_name":"Conflits_FR","location":"\ud83c\uddeb\ud83c\uddf7 - \/ \ud83c\udde9\ud83c\uddea","description":"Traque les conflits autour du - globe en temps r\u00e9el & en fran\u00e7ais. (G\u00e9o)politique, terrorisme, - espionnage, cyber-s\u00e9curit\u00e9, sant\u00e9. Backup : @ConflitsFR. #OSINT","url":"https:\/\/t.co\/Ve7b3t0FON","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ve7b3t0FON","expanded_url":"https:\/\/www.instagram.com\/conflits_fr\/","display_url":"instagram.com\/conflits_fr\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":87911,"friends_count":12,"listed_count":205,"created_at":"Mon - Jan 06 22:40:00 +0000 2020","favourites_count":2668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3526,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225053312615096322\/W0iRUc1r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214315619031478272\/1580759618","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1146,"favorite_count":2166,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":1146,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535390535683,"id_str":"1234518535390535683","text":"@cancelo27 - I''m so scared of coronavirus that I google the stats every hour. I just need - it to go away","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cancelo27","name":"\ud835\ude4921","id":1087773696557641729,"id_str":"1087773696557641729","indices":[0,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1234429181917687808,"in_reply_to_status_id_str":"1234429181917687808","in_reply_to_user_id":1087773696557641729,"in_reply_to_user_id_str":"1087773696557641729","in_reply_to_screen_name":"cancelo27","user":{"id":1023635387204464640,"id_str":"1023635387204464640","name":"\ud83d\udc99\ud83d\udc99Phumi\ud83d\udc99\ud83d\udc99","screen_name":"PhomelloMCFC","location":"Kevin - De Bruyne''s Vision ","description":"Sane and Sterling''s doormat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1133,"friends_count":1001,"listed_count":0,"created_at":"Sun - Jul 29 18:24:29 +0000 2018","favourites_count":31861,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8151,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222468170021318657\/0-u9criX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222468170021318657\/0-u9criX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1023635387204464640\/1580249796","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535218618368,"id_str":"1234518535218618368","text":"https:\/\/t.co\/5vZGqHi9ub","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5vZGqHi9ub","expanded_url":"https:\/\/www.cnbc.com\/2020\/03\/02\/coronavirus-how-to-build-a-cash-cushion-as-outbreak-spreads.html?__source=sharebar|twitter&par=sharebar","display_url":"cnbc.com\/2020\/03\/02\/cor\u2026","indices":[0,23]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"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,"user":{"id":65127962,"id_str":"65127962","name":"Jim - \ud83d\udc36 Pavia","screen_name":"jimpavia","location":"New York City","description":"Money - Editor @CNBC. Supporter of Fourth Estate who likes dogs more than most people. - Go @NYRangers @Yankees.","url":"https:\/\/t.co\/xNSucapdhO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xNSucapdhO","expanded_url":"http:\/\/cnbc.com","display_url":"cnbc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7057,"friends_count":1113,"listed_count":238,"created_at":"Wed - Aug 12 19:09:55 +0000 2009","favourites_count":3395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":34818,"lang":null,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/959165650294968320\/Z3UGuJvj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/959165650294968320\/Z3UGuJvj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65127962\/1497225033","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"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535168196608,"id_str":"1234518535168196608","text":"RT - @ClayTravis: Every year, on average, 50,000 people die from the flu in the - US yet most people won\u2019t take the time to get a flu shot. Two\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ClayTravis","name":"Clay - Travis","id":50772918,"id_str":"50772918","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":979395134,"id_str":"979395134","name":"Caleb","screen_name":"Caleb_usry","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":429,"friends_count":352,"listed_count":3,"created_at":"Thu - Nov 29 23:52:26 +0000 2012","favourites_count":5952,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11724,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1200821758988828672\/pRnuSH1C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1200821758988828672\/pRnuSH1C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/979395134\/1514872208","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 14:30:40 +0000 2020","id":1234486285219303426,"id_str":"1234486285219303426","text":"Every - year, on average, 50,000 people die from the flu in the US yet most people - won\u2019t take the time to get a flu s\u2026 https:\/\/t.co\/otXEAWGJjo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/otXEAWGJjo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234486285219303426","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50772918,"id_str":"50772918","name":"Clay - Travis","screen_name":"ClayTravis","location":"Nashville","description":"https:\/\/t.co\/Ut3ejMNAQd, - @outkick @foxsportsradio 6-9 am et & @lockitinonfs1 TV show 4:30 et, author, - Republicans Buy Sneakers Too, dad of three boys, lawyer","url":"https:\/\/t.co\/c46ZljJT0b","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c46ZljJT0b","expanded_url":"http:\/\/www.outkick.com","display_url":"outkick.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Ut3ejMNAQd","expanded_url":"http:\/\/Outkick.com","display_url":"Outkick.com","indices":[0,23]}]}},"protected":false,"followers_count":652060,"friends_count":353,"listed_count":3730,"created_at":"Thu - Jun 25 21:16:40 +0000 2009","favourites_count":8233,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":102380,"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\/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\/668983225860034564\/PIdSf23G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668983225860034564\/PIdSf23G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50772918\/1448333179","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5516,"favorite_count":26587,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5516,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535159853058,"id_str":"1234518535159853058","text":"We - Want to Talk to People Working or Living on the Front Lines of Coronavirus. - Help Us Report. https:\/\/t.co\/kKHCImjfvu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kKHCImjfvu","expanded_url":"https:\/\/www.propublica.org\/getinvolved\/we-want-to-talk-to-people-working-or-living-on-the-front-lines-of-coronavirus-help-us-report","display_url":"propublica.org\/getinvolved\/we\u2026","indices":[95,118]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1195420595405623298,"id_str":"1195420595405623298","name":"PJ - MacAvery","screen_name":"PJMacAvery","location":"Indoors, usually.","description":"Cat - parent. Writer. Book junkie. Tree lover. Bipolar agoraphobe. Somewhat sweary. - I''m a work in progress. DMs (& many other things) give me anxiety attacks.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1169,"friends_count":1068,"listed_count":9,"created_at":"Fri - Nov 15 19:17:57 +0000 2019","favourites_count":9290,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1524,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195421548586377217\/YhV7NXBE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195421548586377217\/YhV7NXBE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1195420595405623298\/1574132194","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535109476352,"id_str":"1234518535109476352","text":"RT - @laura_maffi: Hey,@matteosalvinimi, questo koglione \u00e8 il governatore - della Sardegna,espressione soprattutto.. tua,come mai nn \u00e8 riuscito\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"laura_maffi","name":"Laura - Maffi \u2b50 \u2b50 \u2b50 \u2b50 \u2b50","id":1172019419557638144,"id_str":"1172019419557638144","indices":[3,15]},{"screen_name":"matteosalvinimi","name":"Matteo - Salvini","id":270839361,"id_str":"270839361","indices":[21,37]}],"urls":[]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983253218,"id_str":"983253218","name":"Uno - \u2b50\u2b50\u2b50\u2b50\u2b50","screen_name":"UnoNemoNessuno","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3902,"friends_count":3418,"listed_count":35,"created_at":"Sat - Dec 01 20:12:51 +0000 2012","favourites_count":39260,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47563,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561158139148382208\/m8_vD8ZV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561158139148382208\/m8_vD8ZV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/983253218\/1566383099","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 12:25:11 +0000 2020","id":1234454705142718464,"id_str":"1234454705142718464","text":"Hey,@matteosalvinimi, - questo koglione \u00e8 il governatore della Sardegna,espressione soprattutto.. - tua,come mai nn \u00e8 r\u2026 https:\/\/t.co\/APcMr5z3zv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"matteosalvinimi","name":"Matteo - Salvini","id":270839361,"id_str":"270839361","indices":[4,20]}],"urls":[{"url":"https:\/\/t.co\/APcMr5z3zv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234454705142718464","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"it","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1172019419557638144,"id_str":"1172019419557638144","name":"Laura - Maffi \u2b50 \u2b50 \u2b50 \u2b50 \u2b50","screen_name":"laura_maffi","location":"Milano","description":"#NOtav\u2b50 - \u2b50 \u2b50 \u2b50 \u2b50","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1824,"friends_count":3359,"listed_count":1,"created_at":"Thu - Sep 12 05:29:52 +0000 2019","favourites_count":17183,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14950,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228290830844252161\/eu_SYoAb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228290830844252161\/eu_SYoAb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1172019419557638144\/1583170729","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":106,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":57,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535012896768,"id_str":"1234518535012896768","text":"RT - @ewarren: I''ve been worried that our economy is heading towards another crash\u2014and - coronavirus is already a serious economic threat. I''ve\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":155729955,"id_str":"155729955","name":"Christine - Robbins","screen_name":"RobbinsWriting","location":"La Mesa, CA","description":"Business - copyeditor\/copywriter, tree hugger, recovering smarty pants","url":"http:\/\/t.co\/0BiiT1rvMR","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/0BiiT1rvMR","expanded_url":"http:\/\/www.robbinswriting.com","display_url":"robbinswriting.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":183,"friends_count":313,"listed_count":15,"created_at":"Mon - Jun 14 23:19:22 +0000 2010","favourites_count":34896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9578,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/990763961\/CLR_062008_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/990763961\/CLR_062008_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155729955\/1472689336","profile_link_color":"91D2FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:39:50 +0000 2020","id":1234503692398866432,"id_str":"1234503692398866432","text":"I''ve - been worried that our economy is heading towards another crash\u2014and coronavirus - is already a serious economic t\u2026 https:\/\/t.co\/8djM7inFtq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8djM7inFtq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234503692398866432","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357606935,"id_str":"357606935","name":"Elizabeth - Warren","screen_name":"ewarren","location":"Massachusetts","description":"U.S. - Senator, former teacher, and candidate for president. Wife, mom (Amelia, Alex, - Bailey, @CFPB), grandmother, and Okie. She\/her. Official campaign account.","url":"https:\/\/t.co\/5jpXuSnwli","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5jpXuSnwli","expanded_url":"http:\/\/ewar.ren\/chip-in","display_url":"ewar.ren\/chip-in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3831315,"friends_count":521,"listed_count":15758,"created_at":"Thu - Aug 18 16:43:48 +0000 2011","favourites_count":116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9199,"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\/1215406626049413121\/LiVKh64l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215406626049413121\/LiVKh64l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357606935\/1578610497","profile_link_color":"232444","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"7DA6D9","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1508,"favorite_count":5511,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1508,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518535000481802,"id_str":"1234518535000481802","text":"RT - @tonyposnanski: Listen, I don\u2019t believe in making the Coronavirus political. - I\u2019m just saying that I don\u2019t want a man who can\u2019t close an\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tonyposnanski","name":"Tony - Posnanski","id":17642747,"id_str":"17642747","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":562456058,"id_str":"562456058","name":"Jennifer - Walter-Salyer","screen_name":"Doryphoros","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":156,"listed_count":1,"created_at":"Wed - Apr 25 00:32:15 +0000 2012","favourites_count":15238,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3163,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1088063014396411904\/IEV-Wfgs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1088063014396411904\/IEV-Wfgs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:31:31 +0000 2020","id":1234516697278750722,"id_str":"1234516697278750722","text":"Listen, - I don\u2019t believe in making the Coronavirus political. I\u2019m just saying - that I don\u2019t want a man who can\u2019t clos\u2026 https:\/\/t.co\/jbbaeAjf7i","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jbbaeAjf7i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234516697278750722","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17642747,"id_str":"17642747","name":"Tony - Posnanski","screen_name":"tonyposnanski","location":"","description":"Father - of a future MLBer. Owner of Tony\u2019s Sports Card w\/ great auctions on - EBay here https:\/\/t.co\/6qCnSLxerj. Your 87-93 sports cards are garbage.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/6qCnSLxerj","expanded_url":"https:\/\/ebay.com\/usr\/tonyposnanski","display_url":"ebay.com\/usr\/tonyposnan\u2026","indices":[85,108]}]}},"protected":false,"followers_count":222186,"friends_count":1349,"listed_count":2284,"created_at":"Wed - Nov 26 04:57:28 +0000 2008","favourites_count":41800,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":122213,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234470722342395904\/meaDlXIE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234470722342395904\/meaDlXIE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17642747\/1583180891","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":618,"favorite_count":5035,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":618,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534912446464,"id_str":"1234518534912446464","text":"RT - @CGTNOfficial: #Wuhan will close its first temporary hospital as the #coronavirus - infection rate slows down https:\/\/t.co\/9k3OpfVvrs","truncated":false,"entities":{"hashtags":[{"text":"Wuhan","indices":[18,24]},{"text":"coronavirus","indices":[72,84]}],"symbols":[],"user_mentions":[{"screen_name":"CGTNOfficial","name":"CGTN","id":1115874631,"id_str":"1115874631","indices":[3,16]}],"urls":[],"media":[{"id":1234335020975673350,"id_str":"1234335020975673350","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/ESFRzuyUEAAUaZB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESFRzuyUEAAUaZB.jpg","url":"https:\/\/t.co\/9k3OpfVvrs","display_url":"pic.twitter.com\/9k3OpfVvrs","expanded_url":"https:\/\/twitter.com\/CGTNOfficial\/status\/1234362802824892416\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"small":{"w":480,"h":360,"resize":"fit"}},"source_status_id":1234362802824892416,"source_status_id_str":"1234362802824892416","source_user_id":1115874631,"source_user_id_str":"1115874631"}]},"extended_entities":{"media":[{"id":1234335020975673350,"id_str":"1234335020975673350","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/ESFRzuyUEAAUaZB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESFRzuyUEAAUaZB.jpg","url":"https:\/\/t.co\/9k3OpfVvrs","display_url":"pic.twitter.com\/9k3OpfVvrs","expanded_url":"https:\/\/twitter.com\/CGTNOfficial\/status\/1234362802824892416\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"small":{"w":480,"h":360,"resize":"fit"}},"source_status_id":1234362802824892416,"source_status_id_str":"1234362802824892416","source_user_id":1115874631,"source_user_id_str":"1115874631","video_info":{"aspect_ratio":[16,9],"duration_millis":58080,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234335020975673350\/vid\/480x270\/vj5rtRIbfYuSMA7l.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234335020975673350\/vid\/1280x720\/8GeuCMWrl9H2R1Jz.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234335020975673350\/pl\/IFDarihXZi2ojN6e.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234335020975673350\/vid\/640x360\/saYR4yqZ25fZO7Tc.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":1115874631,"id_str":"1115874631","name":"CGTN","screen_name":"CGTNOfficial","location":"Beijing, - China","description":"China Global Television Network, or CGTN, is a multi-language, - multi-platform media grouping.","url":"https:\/\/t.co\/YSOcIymQSt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YSOcIymQSt","expanded_url":"http:\/\/www.CGTN.com","display_url":"CGTN.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":14053153,"friends_count":55,"listed_count":8144,"created_at":"Thu - Jan 24 03:18:59 +0000 2013","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":112877,"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\/969543729500467202\/y-kyowAV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969543729500467202\/y-kyowAV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1115874631\/1483157766","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1223772522,"id_str":"1223772522","name":"Miche\ud83e\udd8b","screen_name":"360Ev","location":"JHB","description":"events - and marketing \ud83e\udd73Life is colourful!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":939,"friends_count":3120,"listed_count":14,"created_at":"Wed - Feb 27 06:36:47 +0000 2013","favourites_count":1940,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10351,"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\/1199061557428281346\/FL9XIeeP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199061557428281346\/FL9XIeeP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1223772522\/1581607294","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 06:20:00 +0000 2020","id":1234362802824892416,"id_str":"1234362802824892416","text":"#Wuhan - will close its first temporary hospital as the #coronavirus infection rate - slows down https:\/\/t.co\/9k3OpfVvrs","truncated":false,"entities":{"hashtags":[{"text":"Wuhan","indices":[0,6]},{"text":"coronavirus","indices":[54,66]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234335020975673350,"id_str":"1234335020975673350","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/ESFRzuyUEAAUaZB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESFRzuyUEAAUaZB.jpg","url":"https:\/\/t.co\/9k3OpfVvrs","display_url":"pic.twitter.com\/9k3OpfVvrs","expanded_url":"https:\/\/twitter.com\/CGTNOfficial\/status\/1234362802824892416\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"small":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234335020975673350,"id_str":"1234335020975673350","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/ESFRzuyUEAAUaZB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESFRzuyUEAAUaZB.jpg","url":"https:\/\/t.co\/9k3OpfVvrs","display_url":"pic.twitter.com\/9k3OpfVvrs","expanded_url":"https:\/\/twitter.com\/CGTNOfficial\/status\/1234362802824892416\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"small":{"w":480,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":58080,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234335020975673350\/vid\/480x270\/vj5rtRIbfYuSMA7l.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234335020975673350\/vid\/1280x720\/8GeuCMWrl9H2R1Jz.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1234335020975673350\/pl\/IFDarihXZi2ojN6e.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1234335020975673350\/vid\/640x360\/saYR4yqZ25fZO7Tc.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":1115874631,"id_str":"1115874631","name":"CGTN","screen_name":"CGTNOfficial","location":"Beijing, - China","description":"China Global Television Network, or CGTN, is a multi-language, - multi-platform media grouping.","url":"https:\/\/t.co\/YSOcIymQSt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YSOcIymQSt","expanded_url":"http:\/\/www.CGTN.com","display_url":"CGTN.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":14053153,"friends_count":55,"listed_count":8144,"created_at":"Thu - Jan 24 03:18:59 +0000 2013","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":112877,"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\/969543729500467202\/y-kyowAV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969543729500467202\/y-kyowAV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1115874631\/1483157766","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":481,"favorite_count":1008,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":481,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534799187968,"id_str":"1234518534799187968","text":"RT - @gningue94: #COVID19 #coronavirus #kebetu #senegal https:\/\/t.co\/Hg5j3F2sGz","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[15,23]},{"text":"coronavirus","indices":[25,37]},{"text":"kebetu","indices":[38,45]},{"text":"senegal","indices":[46,54]}],"symbols":[],"user_mentions":[{"screen_name":"gningue94","name":"Medisbu","id":2850712106,"id_str":"2850712106","indices":[3,13]}],"urls":[],"media":[{"id":1234504336320925696,"id_str":"1234504336320925696","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHXJzgWkAAxnpO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHXJzgWkAAxnpO.jpg","url":"https:\/\/t.co\/Hg5j3F2sGz","display_url":"pic.twitter.com\/Hg5j3F2sGz","expanded_url":"https:\/\/twitter.com\/gningue94\/status\/1234504355224616960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1000,"h":1000,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1234504355224616960,"source_status_id_str":"1234504355224616960","source_user_id":2850712106,"source_user_id_str":"2850712106"}]},"extended_entities":{"media":[{"id":1234504336320925696,"id_str":"1234504336320925696","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHXJzgWkAAxnpO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHXJzgWkAAxnpO.jpg","url":"https:\/\/t.co\/Hg5j3F2sGz","display_url":"pic.twitter.com\/Hg5j3F2sGz","expanded_url":"https:\/\/twitter.com\/gningue94\/status\/1234504355224616960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1000,"h":1000,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1234504355224616960,"source_status_id_str":"1234504355224616960","source_user_id":2850712106,"source_user_id_str":"2850712106"}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":881258225802326016,"id_str":"881258225802326016","name":"AGIADAG\u26ab\u26aa\ud83c\uddf8\ud83c\uddf3","screen_name":"gadjigo28","location":"Dakar - S\u00e9n\u00e9gal","description":"#YON\u00c9NTE_MBACK\u00c9\ud83d\udc4c\ud83c\udffe#MALAAKA_FALL.","url":"https:\/\/t.co\/GYkw6gLKvd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GYkw6gLKvd","expanded_url":"http:\/\/www.jazbu.com","display_url":"jazbu.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":720,"friends_count":713,"listed_count":1,"created_at":"Sat - Jul 01 21:08:28 +0000 2017","favourites_count":5829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4097,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230457630210117634\/7MDHuNgN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230457630210117634\/7MDHuNgN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881258225802326016\/1579873008","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:42:28 +0000 2020","id":1234504355224616960,"id_str":"1234504355224616960","text":"#COVID19 #coronavirus - #kebetu #senegal https:\/\/t.co\/Hg5j3F2sGz","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[0,8]},{"text":"coronavirus","indices":[10,22]},{"text":"kebetu","indices":[23,30]},{"text":"senegal","indices":[31,39]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234504336320925696,"id_str":"1234504336320925696","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHXJzgWkAAxnpO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHXJzgWkAAxnpO.jpg","url":"https:\/\/t.co\/Hg5j3F2sGz","display_url":"pic.twitter.com\/Hg5j3F2sGz","expanded_url":"https:\/\/twitter.com\/gningue94\/status\/1234504355224616960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1000,"h":1000,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234504336320925696,"id_str":"1234504336320925696","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHXJzgWkAAxnpO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHXJzgWkAAxnpO.jpg","url":"https:\/\/t.co\/Hg5j3F2sGz","display_url":"pic.twitter.com\/Hg5j3F2sGz","expanded_url":"https:\/\/twitter.com\/gningue94\/status\/1234504355224616960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1000,"h":1000,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2850712106,"id_str":"2850712106","name":"Medisbu","screen_name":"gningue94","location":"","description":"#Medecine - #Enseignements #Islam #ShexulXadiim #Touba #Xamlu #Xame #Xamle #L\u00ebgeey_jaamu_Ya_ALLAH","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":690,"friends_count":120,"listed_count":1,"created_at":"Fri - Oct 10 17:03:33 +0000 2014","favourites_count":88,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":513,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219039141394034691\/XftTRdiz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219039141394034691\/XftTRdiz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2850712106\/1543142707","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534765584386,"id_str":"1234518534765584386","text":"RT - @AFPespanol: #\u00daLTIMAHORA La OMS inform\u00f3 que en el \u00faltimo d\u00eda - los nuevos casos de coronavirus en el mundo se multiplicaron por 9 con resp\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u00daLTIMAHORA","indices":[16,27]}],"symbols":[],"user_mentions":[{"screen_name":"AFPespanol","name":"Agence - France-Presse","id":851108442,"id_str":"851108442","indices":[3,14]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327746358,"id_str":"327746358","name":"Hilmar - Rojas Erazo","screen_name":"HilmarRE","location":"","description":"Venezolana, - Lic. Comunicaci\u00f3n Social. UCAB. Amante de los deportes, apasionada del - boxeo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3850,"friends_count":686,"listed_count":38,"created_at":"Sat - Jul 02 02:37:54 +0000 2011","favourites_count":270,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":82570,"lang":null,"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\/1038085995407831045\/hjeFmYDu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1038085995407831045\/hjeFmYDu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327746358\/1565526723","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:57:58 +0000 2020","id":1234508255642165248,"id_str":"1234508255642165248","text":"#\u00daLTIMAHORA - La OMS inform\u00f3 que en el \u00faltimo d\u00eda los nuevos casos de coronavirus - en el mundo se multiplicaron por 9\u2026 https:\/\/t.co\/PnihdURGYD","truncated":true,"entities":{"hashtags":[{"text":"\u00daLTIMAHORA","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PnihdURGYD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234508255642165248","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"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,"user":{"id":851108442,"id_str":"851108442","name":"Agence - France-Presse","screen_name":"AFPespanol","location":"Montevideo, Uruguay","description":"Las - noticias y las historias del mundo con el aporte de los periodistas de AFP - en 150 pa\u00edses. Tambi\u00e9n en Facebook: https:\/\/t.co\/USg46DHztr","url":"https:\/\/t.co\/xUUUHGq0CB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xUUUHGq0CB","expanded_url":"http:\/\/www.afp.com\/es","display_url":"afp.com\/es","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/USg46DHztr","expanded_url":"http:\/\/u.afp.com\/AFPespanol","display_url":"u.afp.com\/AFPespanol","indices":[115,138]}]}},"protected":false,"followers_count":353786,"friends_count":1076,"listed_count":4142,"created_at":"Fri - Sep 28 14:00:14 +0000 2012","favourites_count":348,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":174586,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558269048778002434\/bz6xLWex_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558269048778002434\/bz6xLWex_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851108442\/1565894214","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":41,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":75,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534761222144,"id_str":"1234518534761222144","text":"RT - @DavidJHarrisJr: All this hysteria for nothing. Well done, Mr. President.\nhttps:\/\/t.co\/JTaaPXmEj1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DavidJHarrisJr","name":"David - J Harris Jr","id":3530404094,"id_str":"3530404094","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/JTaaPXmEj1","expanded_url":"https:\/\/davidharrisjr.com\/steven\/dr-marc-siegel-on-coronavirus-ive-never-seen-an-emerging-contagion-handled-better\/","display_url":"davidharrisjr.com\/steven\/dr-marc\u2026","indices":[77,100]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":812923271955910656,"id_str":"812923271955910656","name":"LilyJoyful","screen_name":"lilyJoyfull","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":459,"friends_count":319,"listed_count":16,"created_at":"Sun - Dec 25 07:29:46 +0000 2016","favourites_count":126998,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31130,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:05:55 +0000 2020","id":1234464957263052800,"id_str":"1234464957263052800","text":"All - this hysteria for nothing. Well done, Mr. President.\nhttps:\/\/t.co\/JTaaPXmEj1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JTaaPXmEj1","expanded_url":"https:\/\/davidharrisjr.com\/steven\/dr-marc-siegel-on-coronavirus-ive-never-seen-an-emerging-contagion-handled-better\/","display_url":"davidharrisjr.com\/steven\/dr-marc\u2026","indices":[57,80]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3530404094,"id_str":"3530404094","name":"David - J Harris Jr","screen_name":"DavidJHarrisJr","location":"Texas, USA","description":"Husband. - Father. Lover of God & Country. Speaker. Best Selling Author of - Why I Couldn\u2019t - Stay Silent - Get it signed from my store!","url":"https:\/\/t.co\/VS2JS8vbO7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VS2JS8vbO7","expanded_url":"https:\/\/davidharrisjr.store","display_url":"davidharrisjr.store","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":326339,"friends_count":2260,"listed_count":708,"created_at":"Fri - Sep 11 20:34:46 +0000 2015","favourites_count":11128,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16606,"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\/1047949800463720448\/D_WBZBlr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1047949800463720448\/D_WBZBlr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3530404094\/1538623799","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":445,"favorite_count":1152,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":445,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534715269120,"id_str":"1234518534715269120","text":"RT - @apaulalop15: Cadena de oraci\u00f3n para que el Coronavirus le agarre a Manzur","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"apaulalop15","name":"Pauli","id":321483144,"id_str":"321483144","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2218713266,"id_str":"2218713266","name":"P - a t o","screen_name":"Uasuff","location":"Taf\u00ed Viejo, Argentina","description":"\ud83d\udc7d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":454,"friends_count":411,"listed_count":0,"created_at":"Thu - Nov 28 01:46:41 +0000 2013","favourites_count":209,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6349,"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\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223494990703230976\/eImsCO0H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223494990703230976\/eImsCO0H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2218713266\/1580574118","profile_link_color":"009999","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:29:46 +0000 2020","id":1234516258277687298,"id_str":"1234516258277687298","text":"Cadena - de oraci\u00f3n para que el Coronavirus le agarre a Manzur","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321483144,"id_str":"321483144","name":"Pauli","screen_name":"apaulalop15","location":"","description":"No - me rompan el pingo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":766,"friends_count":143,"listed_count":3,"created_at":"Tue - Jun 21 17:03:55 +0000 2011","favourites_count":8309,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21062,"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":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233643046690009089\/y20Eo_ZY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233643046690009089\/y20Eo_ZY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321483144\/1577231309","profile_link_color":"FA743E","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534702669824,"id_str":"1234518534702669824","text":"Las - pruebas realizadas a un franc\u00e9s ingresado en un el hospital militar Ram\u00f3n - de Lara en Santo Domingo Este por sos\u2026 https:\/\/t.co\/8wgL1z4D2K","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8wgL1z4D2K","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518534702669824","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3282519726,"id_str":"3282519726","name":"Informando","screen_name":"InformandoRD7","location":"Dominican - Republic","description":"Inform\u00e1ndote d\u00eda a d\u00eda, Latinoam\u00e9rica.\nS\u00edguenos - en Instagram @InformandoRD7 #Informando","url":"https:\/\/t.co\/YjJFfeiUpD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YjJFfeiUpD","expanded_url":"http:\/\/www.informando.com.do","display_url":"informando.com.do","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7162,"friends_count":400,"listed_count":67,"created_at":"Fri - Jul 17 16:00:14 +0000 2015","favourites_count":19745,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":81623,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221772963835531264\/eViJ6CsN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221772963835531264\/eViJ6CsN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3282519726\/1582859227","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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":"es"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534610399233,"id_str":"1234518534610399233","text":"RT - @TheKalenAllen: Dear coronavirus,\n\nTake people like this first! https:\/\/t.co\/90kG2Cq9t0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheKalenAllen","name":"Kalen - Allen","id":171685697,"id_str":"171685697","indices":[3,17]}],"urls":[],"media":[{"id":1185921154311020544,"id_str":"1185921154311020544","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185921154311020544\/pu\/img\/9FGDtU53MyuPtugL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185921154311020544\/pu\/img\/9FGDtU53MyuPtugL.jpg","url":"https:\/\/t.co\/90kG2Cq9t0","display_url":"pic.twitter.com\/90kG2Cq9t0","expanded_url":"https:\/\/twitter.com\/dimasauruse\/status\/1185921376055517186\/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":1185921376055517186,"source_status_id_str":"1185921376055517186","source_user_id":1368959011,"source_user_id_str":"1368959011"}]},"extended_entities":{"media":[{"id":1185921154311020544,"id_str":"1185921154311020544","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185921154311020544\/pu\/img\/9FGDtU53MyuPtugL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185921154311020544\/pu\/img\/9FGDtU53MyuPtugL.jpg","url":"https:\/\/t.co\/90kG2Cq9t0","display_url":"pic.twitter.com\/90kG2Cq9t0","expanded_url":"https:\/\/twitter.com\/dimasauruse\/status\/1185921376055517186\/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":1185921376055517186,"source_status_id_str":"1185921376055517186","source_user_id":1368959011,"source_user_id_str":"1368959011","video_info":{"aspect_ratio":[1,1],"duration_millis":10204,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185921154311020544\/pu\/vid\/720x720\/8PCek4N8CMIK_x1a.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185921154311020544\/pu\/vid\/480x480\/dPSm80CTXiNxVEkW.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185921154311020544\/pu\/pl\/MGfSbKmOagaGtOcx.m3u8?tag=10"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185921154311020544\/pu\/vid\/320x320\/ez1pkGe2TXiCxzFQ.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1972219099,"id_str":"1972219099","name":"Bully\ud83d\udda4","screen_name":"braggabull","location":"Sunrise, - FL","description":"Instagram @Bragga_Bull Real girl status \ud83d\udc81\ud83c\udffd\u200d\u2640\ufe0f\u2728","url":"https:\/\/t.co\/zY6Zt7WiCe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zY6Zt7WiCe","expanded_url":"https:\/\/BeatByBully.as.me\/","display_url":"BeatByBully.as.me","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":434,"friends_count":427,"listed_count":0,"created_at":"Sat - Oct 19 16:54:10 +0000 2013","favourites_count":9607,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5790,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1055659188062445568\/Z1LZXqqU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1055659188062445568\/Z1LZXqqU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1972219099\/1524888803","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 16:34:46 +0000 2020","id":1234155128732569600,"id_str":"1234155128732569600","text":"Dear - coronavirus,\n\nTake people like this first! https:\/\/t.co\/90kG2Cq9t0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1185921154311020544,"id_str":"1185921154311020544","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185921154311020544\/pu\/img\/9FGDtU53MyuPtugL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185921154311020544\/pu\/img\/9FGDtU53MyuPtugL.jpg","url":"https:\/\/t.co\/90kG2Cq9t0","display_url":"pic.twitter.com\/90kG2Cq9t0","expanded_url":"https:\/\/twitter.com\/dimasauruse\/status\/1185921376055517186\/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":1185921376055517186,"source_status_id_str":"1185921376055517186","source_user_id":1368959011,"source_user_id_str":"1368959011"}]},"extended_entities":{"media":[{"id":1185921154311020544,"id_str":"1185921154311020544","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185921154311020544\/pu\/img\/9FGDtU53MyuPtugL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185921154311020544\/pu\/img\/9FGDtU53MyuPtugL.jpg","url":"https:\/\/t.co\/90kG2Cq9t0","display_url":"pic.twitter.com\/90kG2Cq9t0","expanded_url":"https:\/\/twitter.com\/dimasauruse\/status\/1185921376055517186\/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":1185921376055517186,"source_status_id_str":"1185921376055517186","source_user_id":1368959011,"source_user_id_str":"1368959011","video_info":{"aspect_ratio":[1,1],"duration_millis":10204,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185921154311020544\/pu\/vid\/720x720\/8PCek4N8CMIK_x1a.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185921154311020544\/pu\/vid\/480x480\/dPSm80CTXiNxVEkW.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185921154311020544\/pu\/pl\/MGfSbKmOagaGtOcx.m3u8?tag=10"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185921154311020544\/pu\/vid\/320x320\/ez1pkGe2TXiCxzFQ.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171685697,"id_str":"171685697","name":"Kalen - Allen","screen_name":"TheKalenAllen","location":"Los Angeles, CA","description":"I - work at the kindest place on earth @theellenshow! @beyonce and @oprah know - who I am! #TempleMade Inquiries: bookings@thekalenallen.com","url":"https:\/\/t.co\/t2QLdtDIfN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/t2QLdtDIfN","expanded_url":"http:\/\/ellentube.com","display_url":"ellentube.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":217445,"friends_count":2598,"listed_count":399,"created_at":"Tue - Jul 27 22:58:05 +0000 2010","favourites_count":63315,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":45355,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"040505","profile_background_image_url":"http:\/\/abs.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\/1227647051090911237\/ohgk6Nlz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227647051090911237\/ohgk6Nlz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171685697\/1568430241","profile_link_color":"8B4513","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"},"geo":null,"coordinates":null,"place":{"id":"3b77caf94bfc81fe","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3b77caf94bfc81fe.json","place_type":"city","name":"Los - Angeles","full_name":"Los Angeles, CA","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-118.668404,33.704538],[-118.155409,33.704538],[-118.155409,34.337041],[-118.668404,34.337041]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2387,"favorite_count":13516,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2387,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534572716034,"id_str":"1234518534572716034","text":"Investors - should be wary of Coronavirus cons. https:\/\/t.co\/MCdWbu1xvU https:\/\/t.co\/BydpQgE23X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MCdWbu1xvU","expanded_url":"https:\/\/trib.al\/bqJhlkz","display_url":"trib.al\/bqJhlkz","indices":[46,69]}],"media":[{"id":1234518531074674688,"id_str":"1234518531074674688","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkEDFX0AAWJv8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkEDFX0AAWJv8.jpg","url":"https:\/\/t.co\/BydpQgE23X","display_url":"pic.twitter.com\/BydpQgE23X","expanded_url":"https:\/\/twitter.com\/aldotcom\/status\/1234518534572716034\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"},"large":{"w":1280,"h":795,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234518531074674688,"id_str":"1234518531074674688","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/ESHkEDFX0AAWJv8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESHkEDFX0AAWJv8.jpg","url":"https:\/\/t.co\/BydpQgE23X","display_url":"pic.twitter.com\/BydpQgE23X","expanded_url":"https:\/\/twitter.com\/aldotcom\/status\/1234518534572716034\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"},"large":{"w":1280,"h":795,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":14528874,"id_str":"14528874","name":"AL.com","screen_name":"aldotcom","location":"Alabama","description":"All - things Alabama. Managed by the team at Alabama Media Group: @ikemorgan, Monica - Keener and @rlwbenj.","url":"https:\/\/t.co\/KJW2cleabC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KJW2cleabC","expanded_url":"http:\/\/www.al.com","display_url":"al.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":308897,"friends_count":849,"listed_count":1938,"created_at":"Fri - Apr 25 16:36:18 +0000 2008","favourites_count":10044,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":185280,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"333C49","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080880038998872064\/TelQUR_R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080880038998872064\/TelQUR_R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14528874\/1573164774","profile_link_color":"333C49","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFD800","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"},"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"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534543200262,"id_str":"1234518534543200262","text":"RT - @KGeorgieva: The IMF and the @WorldBank stand ready to help our member countries - address the human tragedy and economic challenge posed\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KGeorgieva","name":"Kristalina - Georgieva","id":123109597,"id_str":"123109597","indices":[3,14]},{"screen_name":"WorldBank","name":"World - Bank","id":27860681,"id_str":"27860681","indices":[32,42]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":714281382759890945,"id_str":"714281382759890945","name":"Ann - Connolly","screen_name":"tconnollyfam","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":25,"listed_count":0,"created_at":"Mon - Mar 28 02:42:07 +0000 2016","favourites_count":11111,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7312,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:21:38 +0000 2020","id":1234514210941526016,"id_str":"1234514210941526016","text":"The - IMF and the @WorldBank stand ready to help our member countries address the - human tragedy and economic challeng\u2026 https:\/\/t.co\/bBkINYYVdb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WorldBank","name":"World - Bank","id":27860681,"id_str":"27860681","indices":[16,26]}],"urls":[{"url":"https:\/\/t.co\/bBkINYYVdb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234514210941526016","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":123109597,"id_str":"123109597","name":"Kristalina - Georgieva","screen_name":"KGeorgieva","location":"Washington, DC","description":"Managing - Director of the International Monetary Fund.","url":"https:\/\/t.co\/HI3dbU3bD6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HI3dbU3bD6","expanded_url":"http:\/\/www.Facebook.com\/KristalinaGeorgieva","display_url":"Facebook.com\/KristalinaGeor\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":176879,"friends_count":2312,"listed_count":1739,"created_at":"Mon - Mar 15 01:25:22 +0000 2010","favourites_count":7058,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":18256,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"5B95ED","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\/1179508389421965312\/rIvvZjwQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179508389421965312\/rIvvZjwQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123109597\/1571345390","profile_link_color":"0E3C74","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"020E28","profile_use_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":63,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534501392384,"id_str":"1234518534501392384","text":"RT - @le_gorafi: Skyrim \u2013 Premier cas de contamination au coronavirus entre - un joueur et un PNJ https:\/\/t.co\/6xmm89ujED https:\/\/t.co\/725Q0D1X\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"le_gorafi","name":"Le - Gorafi","id":492648852,"id_str":"492648852","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/6xmm89ujED","expanded_url":"http:\/\/legorafi.fr\/u\/8fc","display_url":"legorafi.fr\/u\/8fc","indices":[94,117]}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303781828,"id_str":"3303781828","name":"k4ne","screen_name":"k4neHotS","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":647,"listed_count":2,"created_at":"Sat - May 30 14:24:17 +0000 2015","favourites_count":2617,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7375,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/855758778624598016\/L23SsW3U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/855758778624598016\/L23SsW3U_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 13:05:59 +0000 2020","id":1234464972605939712,"id_str":"1234464972605939712","text":"Skyrim - \u2013 Premier cas de contamination au coronavirus entre un joueur et un PNJ - https:\/\/t.co\/6xmm89ujED https:\/\/t.co\/725Q0D1XG0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6xmm89ujED","expanded_url":"http:\/\/legorafi.fr\/u\/8fc","display_url":"legorafi.fr\/u\/8fc","indices":[79,102]}],"media":[{"id":1234464970512969728,"id_str":"1234464970512969728","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGzWacWsAALeDA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGzWacWsAALeDA.png","url":"https:\/\/t.co\/725Q0D1XG0","display_url":"pic.twitter.com\/725Q0D1XG0","expanded_url":"https:\/\/twitter.com\/le_gorafi\/status\/1234464972605939712\/photo\/1","type":"photo","sizes":{"medium":{"w":750,"h":400,"resize":"fit"},"large":{"w":750,"h":400,"resize":"fit"},"small":{"w":680,"h":363,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1234464970512969728,"id_str":"1234464970512969728","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/ESGzWacWsAALeDA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/ESGzWacWsAALeDA.png","url":"https:\/\/t.co\/725Q0D1XG0","display_url":"pic.twitter.com\/725Q0D1XG0","expanded_url":"https:\/\/twitter.com\/le_gorafi\/status\/1234464972605939712\/photo\/1","type":"photo","sizes":{"medium":{"w":750,"h":400,"resize":"fit"},"large":{"w":750,"h":400,"resize":"fit"},"small":{"w":680,"h":363,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"metadata":{"iso_language_code":"fr","result_type":"recent"},"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,"user":{"id":492648852,"id_str":"492648852","name":"Le - Gorafi","screen_name":"le_gorafi","location":"Paris, New-York, Montmartre","description":"Contradictoire, - depuis 1826. https:\/\/t.co\/GQqnqAa6lA l''Atlas des r\u00e9gions Gorafi","url":"https:\/\/t.co\/4gc8My3XXc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4gc8My3XXc","expanded_url":"http:\/\/www.legorafi.fr","display_url":"legorafi.fr","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/GQqnqAa6lA","expanded_url":"https:\/\/amzn.to\/2qoCJPk","display_url":"amzn.to\/2qoCJPk","indices":[29,52]}]}},"protected":false,"followers_count":1269234,"friends_count":747,"listed_count":3026,"created_at":"Tue - Feb 14 23:41:32 +0000 2012","favourites_count":320,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":21212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/757531728286195713\/iZCcALkw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/757531728286195713\/iZCcALkw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492648852\/1441088042","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":833,"favorite_count":3322,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":833,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534467702793,"id_str":"1234518534467702793","text":"RT - @voaindonesia: #PalingPopuler \"Rasanya lebih dari sedih. Ingin nyebur ke - sumur.\"\n\nOmed salah satu WNI yang batal dievakuasi dari Wuhan.\u2026","truncated":false,"entities":{"hashtags":[{"text":"PalingPopuler","indices":[18,32]}],"symbols":[],"user_mentions":[{"screen_name":"voaindonesia","name":"VOA - Indonesia","id":75077164,"id_str":"75077164","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"in","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212467990,"id_str":"212467990","name":"@ikramafro","screen_name":"ikramafro","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1770,"friends_count":835,"listed_count":5,"created_at":"Sat - Nov 06 04:34:16 +0000 2010","favourites_count":335,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29139,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"080808","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\/1042206756779122688\/K0McTlU8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1042206756779122688\/K0McTlU8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212467990\/1392124710","profile_link_color":"0099CC","profile_sidebar_border_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 04:00:26 +0000 2020","id":1233965294571397121,"id_str":"1233965294571397121","text":"#PalingPopuler - \"Rasanya lebih dari sedih. Ingin nyebur ke sumur.\"\n\nOmed salah satu WNI - yang batal dievakuasi dari W\u2026 https:\/\/t.co\/I74dkcUZSw","truncated":true,"entities":{"hashtags":[{"text":"PalingPopuler","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/I74dkcUZSw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233965294571397121","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"in","result_type":"recent"},"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,"user":{"id":75077164,"id_str":"75077164","name":"VOA - Indonesia","screen_name":"voaindonesia","location":"Washington, DC","description":"Voice - of America adalah jaringan siaran radio, televisi dan internet yang sejak - 1942 menyiarkan dari AS beragam program dalam 53 bahasa ke 40 negara.","url":"https:\/\/t.co\/MYLQtrK1bJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MYLQtrK1bJ","expanded_url":"https:\/\/www.youtube.com\/watch?v=LqL3g5hrQPE","display_url":"youtube.com\/watch?v=LqL3g5\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":307909,"friends_count":398,"listed_count":673,"created_at":"Thu - Sep 17 18:19:35 +0000 2009","favourites_count":181,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":121382,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363636","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\/1217871534771134464\/UU9PQn1j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217871534771134464\/UU9PQn1j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75077164\/1578515606","profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B5B5B5","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":37,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":25,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534463479808,"id_str":"1234518534463479808","text":"606 - public companies have mentioned #coronavirus as a risk factor in recent SEC - filings. \u201cIt is a fluid situation,\u2026 https:\/\/t.co\/ekcS442DLY","truncated":true,"entities":{"hashtags":[{"text":"coronavirus","indices":[36,48]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ekcS442DLY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234518534463479808","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3120296529,"id_str":"3120296529","name":"Danielle - Pelfrey Duryea","screen_name":"pelfreyduryea","location":"Boston, MA","description":"@BU_Law - Clinics. #Compliance, #medleg, #healthequity\/#SDOH, #IPE. Sometimes basketball. - Fmrly @UBSchoolofLaw, @GeorgetownLaw, @RopesGray, @UVA, @Yale. My views!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":884,"listed_count":8,"created_at":"Fri - Mar 27 01:46:00 +0000 2015","favourites_count":5625,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2260,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181673534109573120\/1AvvdDAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181673534109573120\/1AvvdDAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3120296529\/1582135239","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518534396502016,"id_str":"1234518534396502016","text":"RT - @PaddyMcGuinness: Found out a shop nearby has put the price of hand sanitizer - up from 99p to \u00a34.99! How do these people sleep at night?\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaddyMcGuinness","name":"Paddy - McGuinness","id":2517360192,"id_str":"2517360192","indices":[3,19]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96350647,"id_str":"96350647","name":"Peter - Garbutt","screen_name":"PeterG4NES2019","location":"Sheffield UK","description":"Husband, - Father, Granpa. Cynical realism is failing us. Only idealism can save us. - @TheGreenParty councillor for Nether Edge and Sharrow. All views my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2943,"friends_count":2367,"listed_count":166,"created_at":"Sat - Dec 12 14:20:28 +0000 2009","favourites_count":9852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56634,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/985582299231150080\/tpZY-pek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/985582299231150080\/tpZY-pek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96350647\/1456692818","profile_link_color":"217A18","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 09:22:26 +0000 2020","id":1234046326045843456,"id_str":"1234046326045843456","text":"Found - out a shop nearby has put the price of hand sanitizer up from 99p to \u00a34.99! - How do these people sleep at nigh\u2026 https:\/\/t.co\/0Q3HpgPzAr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0Q3HpgPzAr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234046326045843456","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2517360192,"id_str":"2517360192","name":"Paddy - McGuinness","screen_name":"PaddyMcGuinness","location":"Bolton","description":"Twitter - is like the council swimming baths. Every now and again you''re gonna see - a turd. #TopGear #catchpoint #TMO","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":427964,"friends_count":564,"listed_count":245,"created_at":"Fri - May 23 09:21:24 +0000 2014","favourites_count":589,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":17998,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080169618835161091\/5Vj_dhGv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080169618835161091\/5Vj_dhGv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2517360192\/1575404169","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4869,"favorite_count":36854,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4869,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518533834444800,"id_str":"1234518533834444800","text":"RT - @autosport: In the latest edition of the Tank Slappers Podcast, Lewis Duncan - and Oriol Puigdemont discuss the cancellation of the first\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"autosport","name":"Autosport","id":20517081,"id_str":"20517081","indices":[3,13]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1176640496,"id_str":"1176640496","name":"\u26aa\ud83c\udfc1#ATeamComeTrue - #F1 #C4F1\ud83c\udfc1\u26aa","screen_name":"SteveStevens47","location":"\ud83d\udd34Bristol, - England\ud83d\udd34","description":"I''m A Massive @F1+Football Supporter(@BristolCity+@LFC)+F1\/Football - News+Daily Polls\/Horoscopes\/Quotes\/Facts #211 #JFT96 #YNWA - @SteveStevens55\/50OtherAccounts","url":"https:\/\/t.co\/WmIUuWlpo3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WmIUuWlpo3","expanded_url":"http:\/\/www.MyProfilePicIsSubjectToChange.com","display_url":"MyProfilePicIsSubjectToChange.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8180,"friends_count":70,"listed_count":1055,"created_at":"Wed - Feb 13 19:36:52 +0000 2013","favourites_count":354,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1128298,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203660273627942912\/cHahGwpg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203660273627942912\/cHahGwpg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1176640496\/1575809948","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 16:14:29 +0000 2020","id":1234512411744460800,"id_str":"1234512411744460800","text":"In - the latest edition of the Tank Slappers Podcast, Lewis Duncan and Oriol Puigdemont - discuss the cancellation of t\u2026 https:\/\/t.co\/K2VQRn0kba","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/K2VQRn0kba","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234512411744460800","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":20517081,"id_str":"20517081","name":"Autosport","screen_name":"autosport","location":"","description":"The - world''s leading authority in motorsport news, analysis and opinion","url":"https:\/\/t.co\/QRLyS7M034","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QRLyS7M034","expanded_url":"http:\/\/www.autosport.com","display_url":"autosport.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":325434,"friends_count":359,"listed_count":5791,"created_at":"Tue - Feb 10 14:45:11 +0000 2009","favourites_count":1625,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":73150,"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\/839906681786142721\/SOuI5F3u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/839906681786142721\/SOuI5F3u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20517081\/1576838711","profile_link_color":"DD1313","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518533775605760,"id_str":"1234518533775605760","text":"RT - @yumcoconutmilk: I really hate this country. $3,000 to get tested for the - coronavirus, bc they wanted to reject the WHO\u2019s test so they c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yumcoconutmilk","name":"nylah - burton","id":703052849039675393,"id_str":"703052849039675393","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2861993412,"id_str":"2861993412","name":"julia","screen_name":"bevoftw","location":"burnsville - ","description":"burnsville || bozeman","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":214,"listed_count":0,"created_at":"Sat - Oct 18 06:37:11 +0000 2014","favourites_count":25309,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3006,"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\/1067671415946653697\/fZpMV4I5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1067671415946653697\/fZpMV4I5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861993412\/1543422521","profile_link_color":"445566","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 16:52:32 +0000 2020","id":1234159596379529216,"id_str":"1234159596379529216","text":"I - really hate this country. $3,000 to get tested for the coronavirus, bc they - wanted to reject the WHO\u2019s test so th\u2026 https:\/\/t.co\/jKUj9JPPCt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jKUj9JPPCt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234159596379529216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703052849039675393,"id_str":"703052849039675393","name":"nylah - burton","screen_name":"yumcoconutmilk","location":"Washington, DC ","description":"Writer - | race, climate, mental health | words @NYMag @Essence @zoramag @byshondaland - @TheNation @bustle @Independent | \u201coverwhelming Aries energy\u201d","url":"https:\/\/t.co\/rcfUUE7kM1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rcfUUE7kM1","expanded_url":"https:\/\/nylahburton.contently.com\/","display_url":"nylahburton.contently.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16427,"friends_count":3022,"listed_count":169,"created_at":"Fri - Feb 26 03:03:56 +0000 2016","favourites_count":37151,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16924,"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\/1212065411816136704\/EqCukNXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212065411816136704\/EqCukNXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703052849039675393\/1561545197","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50653,"favorite_count":261094,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":50653,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518533717008384,"id_str":"1234518533717008384","text":"RT - @OGGomas: Na r\u00e1dio j\u00e1 s\u00f3 se ouve duas coisas...\n- coronavirus\n- - essa menina solta","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OGGomas","name":"OG - GOMAS \ud83c\uddf2\ud83c\uddfd","id":1225366974965932033,"id_str":"1225366974965932033","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2531620631,"id_str":"2531620631","name":"Ribas","screen_name":"BeaRibas27","location":"","description":"Insta- - @ribas_27 \ud83d\ude43","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":185,"friends_count":1572,"listed_count":0,"created_at":"Mon - May 05 19:11:25 +0000 2014","favourites_count":28547,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15341,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1208762895418511362\/rAQPoIj6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208762895418511362\/rAQPoIj6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2531620631\/1577026508","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 09:22:22 +0000 2020","id":1234408696190586880,"id_str":"1234408696190586880","text":"Na - r\u00e1dio j\u00e1 s\u00f3 se ouve duas coisas...\n- coronavirus\n- essa menina - solta","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"pt","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1225366974965932033,"id_str":"1225366974965932033","name":"OG - GOMAS \ud83c\uddf2\ud83c\uddfd","screen_name":"OGGomas","location":"Aveiro, - Portugal","description":"A MINHA CONTA DE 35K FOI SUSPENSA, SIGAM AQUI || - INSTAGRAM: BRUNOGOMAS \ud83c\udf9e","url":"https:\/\/t.co\/6PY19XxP0r","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6PY19XxP0r","expanded_url":"http:\/\/instagram.com\/brunogomas","display_url":"instagram.com\/brunogomas","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5328,"friends_count":397,"listed_count":0,"created_at":"Thu - Feb 06 10:34:03 +0000 2020","favourites_count":5889,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1062,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234566906595725312\/a4lqRrG3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234566906595725312\/a4lqRrG3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1225366974965932033\/1583191759","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3846,"favorite_count":9212,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":3846,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518533616345091,"id_str":"1234518533616345091","text":"RT - @gatewaypundit: Obama Holdover Made the Call to Fly Coronavirus Patients Back - to the US from Japan - Then Boasted About It https:\/\/t.co\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gatewaypundit","name":"Jim - Hoft","id":19211550,"id_str":"19211550","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1081305799123714054,"id_str":"1081305799123714054","name":"debjonmc","screen_name":"debjonmc","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":279,"friends_count":271,"listed_count":0,"created_at":"Fri - Jan 04 21:46:06 +0000 2019","favourites_count":70722,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69364,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:41:58 +0000 2020","id":1234504228187574275,"id_str":"1234504228187574275","text":"Obama - Holdover Made the Call to Fly Coronavirus Patients Back to the US from Japan - - Then Boasted About It\u2026 https:\/\/t.co\/oESCzgH33c","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oESCzgH33c","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234504228187574275","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[108,131]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":19211550,"id_str":"19211550","name":"Jim - Hoft","screen_name":"gatewaypundit","location":"St. Louis, Missouri","description":"Writer- - Speaker- Where Hope Made a Comeback - Top Choice of the American Truth Seeker","url":"https:\/\/t.co\/9D93JQ9grt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9D93JQ9grt","expanded_url":"http:\/\/www.thegatewaypundit.com\/","display_url":"thegatewaypundit.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":223632,"friends_count":1437,"listed_count":2976,"created_at":"Tue - Jan 20 00:45:40 +0000 2009","favourites_count":6378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":98547,"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\/967266044338294786\/6cu37jlt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/967266044338294786\/6cu37jlt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19211550\/1504151751","profile_link_color":"91D2FA","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1830,"favorite_count":1372,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1830,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518533553319936,"id_str":"1234518533553319936","text":"RT - @jxeker: everyone: we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jxeker","name":"joe","id":2745274901,"id_str":"2745274901","indices":[3,10]}],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901"}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901","video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1229803423463161858,"id_str":"1229803423463161858","name":"kayu","screen_name":"apimarak","location":"","description":"toxic - people","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":45,"listed_count":0,"created_at":"Tue - Feb 18 16:22:59 +0000 2020","favourites_count":31,"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":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233822066161274880\/NcvanCrr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233822066161274880\/NcvanCrr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1229803423463161858\/1583001079","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 17:58:07 +0000 2020","id":1234176102362419202,"id_str":"1234176102362419202","text":"everyone: - we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35881,"favorite_count":117231,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35881,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518533515595779,"id_str":"1234518533515595779","text":"RT - @WeHateTories: Hi @MartinSLewis I booked a flight to Thailand for October - days before coronavirus news broke, now I''m trying to get a re\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WeHateTories","name":"Sean - #FBAT","id":1166777261686710272,"id_str":"1166777261686710272","indices":[3,16]},{"screen_name":"MartinSLewis","name":"Martin - Lewis","id":252569527,"id_str":"252569527","indices":[21,34]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2590130982,"id_str":"2590130982","name":"jay - vee","screen_name":"oso1mex","location":"Lake Balboa, Los Angeles","description":"Fun - n freewheeling, too pragmatic for my own good, Govt seems to forget who they - work for regardless if u voted for them or not: We the Ppl\ud83c\uddfa\ud83c\uddf8Wake - Up\u203c\ufe0fI RESIST","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1070,"friends_count":1836,"listed_count":2,"created_at":"Thu - Jun 26 19:25:46 +0000 2014","favourites_count":32072,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":89326,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/857746482983612416\/kJWE47oQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/857746482983612416\/kJWE47oQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 02 15:36:41 +0000 2020","id":1234502899645939712,"id_str":"1234502899645939712","text":"Hi - @MartinSLewis I booked a flight to Thailand for October days before coronavirus - news broke, now I''m trying to ge\u2026 https:\/\/t.co\/SI6ojRoucc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MartinSLewis","name":"Martin - Lewis","id":252569527,"id_str":"252569527","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/SI6ojRoucc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234502899645939712","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1166777261686710272,"id_str":"1166777261686710272","name":"Sean - #FBAT","screen_name":"WeHateTories","location":"Liverpool","description":"Had - enough of them pesky Tories, haven''t we?\n#FBPE\n#NotMyPM\nBelieve in a better - combo of Socialism and Capitalism\nLFC #TheUnbearables","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":461,"friends_count":527,"listed_count":0,"created_at":"Wed - Aug 28 18:19:22 +0000 2019","favourites_count":56,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":691,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184933773252743171\/4Nhnh6nm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184933773252743171\/4Nhnh6nm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1166777261686710272\/1571345230","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon - Mar 02 16:38:49 +0000 2020","id":1234518533398286341,"id_str":"1234518533398286341","text":"RT - @jxeker: everyone: we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jxeker","name":"joe","id":2745274901,"id_str":"2745274901","indices":[3,10]}],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901"}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"source_status_id":1234176102362419202,"source_status_id_str":"1234176102362419202","source_user_id":2745274901,"source_user_id_str":"2745274901","video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1241268500,"id_str":"1241268500","name":"Elisa.","screen_name":"elisadventures_","location":"","description":"No - one will ever be able to hate you more than you already hate yourself \u2022 - 21 yo \u2022 \ud83c\udde7\ud83c\uddea","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1756,"friends_count":842,"listed_count":10,"created_at":"Mon - Mar 04 12:38:50 +0000 2013","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":37156,"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\/1226622710471630849\/_4diDt99_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226622710471630849\/_4diDt99_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1241268500\/1523354598","profile_link_color":"0AF5B2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 01 17:58:07 +0000 2020","id":1234176102362419202,"id_str":"1234176102362419202","text":"everyone: - we need a coronavirus vaccine NOW\n\ndoctors: https:\/\/t.co\/6KpSgv4NsA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1234176086315012097,"id_str":"1234176086315012097","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1234176086315012097\/pu\/img\/Nlfd84ZAw-3s_Mjk.jpg","url":"https:\/\/t.co\/6KpSgv4NsA","display_url":"pic.twitter.com\/6KpSgv4NsA","expanded_url":"https:\/\/twitter.com\/jxeker\/status\/1234176102362419202\/video\/1","type":"video","sizes":{"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"duration_millis":2324,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/720x360\/2-h98LO4FE6sePH6.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/pl\/pbdJQnTO32Bml-y9.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1234176086315012097\/pu\/vid\/540x270\/kVASC0HEmeQ02eUT.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745274901,"id_str":"2745274901","name":"joe","screen_name":"jxeker","location":"england","description":"chaos","url":"https:\/\/t.co\/GkGm3jbdhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkGm3jbdhN","expanded_url":"http:\/\/paypal.me\/joedeal","display_url":"paypal.me\/joedeal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35652,"friends_count":579,"listed_count":803,"created_at":"Sun - Aug 17 11:34:57 +0000 2014","favourites_count":51692,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234200532878839813\/C2J96M5c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745274901\/1581867940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35881,"favorite_count":117231,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35881,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}],"search_metadata":{"completed_in":0.079,"max_id":1234518540826247167,"max_id_str":"1234518540826247167","next_results":"?max_id=1234518533398286340&q=coronavirus&count=100&include_entities=1&result_type=mixed","query":"coronavirus","refresh_url":"?since_id=1234518540826247167&q=coronavirus&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=United%20Kingdom&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1170635283131486209/ednETtzW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '371181' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:30 GMT - Last-Modified: - - Sun, 08 Sep 2019 09:47:35 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1170635283131486209 - X-Cache: - - HIT - X-Connection-Hash: - - 30a448a6dd6cc7d439b770d505f3303d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=United%20Kingdom&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1190254164510728193/DIqAxBy0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '378974' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:31 GMT - Last-Modified: - - Fri, 01 Nov 2019 13:06:01 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1190254164510728193 - X-Cache: - - HIT - X-Connection-Hash: - - 159dc072bb37b63130c4fa8c7ed82975 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '112' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Washington,%20DC&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1165700602334208000/M9RCv3YZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91367' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:31 GMT - Last-Modified: - - Sun, 25 Aug 2019 18:58:55 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1165700602334208000 - X-Cache: - - HIT - X-Connection-Hash: - - efe2f1f402190847d840d5fa7edacda3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:31 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234516997133742083.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f3ddb42eaa5cd737cdac88c2528bc268", - oauth_signature="ifhodd9MEJPc16KTFk4pniQizAI%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257111", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '9864' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:32 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:32 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325711211317122; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:32 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_eCh3hvd3zqf7qTnZ4aaP6A=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:32 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - edf15db72a71eccb6a96b471d47d4f0f - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '857' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '154' - X-Transaction: - - 003b566200257015 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:32:42 +0000 2020","id":1234516997133742083,"id_str":"1234516997133742083","text":"4. - No, COVID-19 was not man-made and financed by Bill Gates. Many Trump supporters - are now pushing conspiracy theor\u2026 https:\/\/t.co\/JkGH3YqakC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JkGH3YqakC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234516997133742083","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234513538338652160,"in_reply_to_status_id_str":"1234513538338652160","in_reply_to_user_id":65284273,"in_reply_to_user_id_str":"65284273","in_reply_to_screen_name":"JaneLytv","user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233784025417965569,"quoted_status_id_str":"1233784025417965569","quoted_status":{"created_at":"Sat - Feb 29 16:00:08 +0000 2020","id":1233784025417965569,"id_str":"1233784025417965569","text":"Worrying - and incredible: the US Secretary of State refuses to say that he doesn''t - believe the coronavirus is a hoax https:\/\/t.co\/qHowcpvJ9p","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233476618573819908,"id_str":"1233476618573819908","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1233476618573819908\/img\/w7e5yeI5_a3iBCjx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1233476618573819908\/img\/w7e5yeI5_a3iBCjx.jpg","url":"https:\/\/t.co\/qHowcpvJ9p","display_url":"pic.twitter.com\/qHowcpvJ9p","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1233479972007927809\/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":1233479972007927809,"source_status_id_str":"1233479972007927809","source_user_id":1917731,"source_user_id_str":"1917731"}]},"extended_entities":{"media":[{"id":1233476618573819908,"id_str":"1233476618573819908","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1233476618573819908\/img\/w7e5yeI5_a3iBCjx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1233476618573819908\/img\/w7e5yeI5_a3iBCjx.jpg","url":"https:\/\/t.co\/qHowcpvJ9p","display_url":"pic.twitter.com\/qHowcpvJ9p","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1233479972007927809\/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":1233479972007927809,"source_status_id_str":"1233479972007927809","source_user_id":1917731,"source_user_id_str":"1917731","video_info":{"aspect_ratio":[16,9],"duration_millis":74174,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1233476618573819908\/vid\/480x270\/ssrk__rGngfl6fE1.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1233476618573819908\/vid\/640x360\/BxMxmVvxLo05Dw3y.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1233476618573819908\/vid\/1280x720\/E-E3QZCwTVyWmdkX.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1233476618573819908\/pl\/kP6s8It4oDRw4MFZ.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":1917731,"id_str":"1917731","name":"The - Hill","screen_name":"thehill","location":"Washington, DC","description":"The - Hill is the premier source for policy and political news. Follow for tweets - on what''s happening in Washington, breaking news and retweets of our reporters.","url":"http:\/\/t.co\/t414UtTRv4","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/t414UtTRv4","expanded_url":"http:\/\/www.thehill.com","display_url":"thehill.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3570216,"friends_count":262,"listed_count":27135,"created_at":"Thu - Mar 22 18:15:18 +0000 2007","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":698856,"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\/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\/907330975587336193\/tw7JPE5v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907330975587336193\/tw7JPE5v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1917731\/1434034905","profile_link_color":"FF0021","profile_sidebar_border_color":"ADADAA","profile_sidebar_fill_color":"EBEBEB","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"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14519041,"id_str":"14519041","name":"Matthew - Garrahan","screen_name":"MattGarrahan","location":"","description":"FT news - editor. Business journalist of the year 2018, 2019 UK Press Awards. Arts & - entertainment reporter of the year, 2018 British Journalism Awards","url":"https:\/\/t.co\/177fJYUUBM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/177fJYUUBM","expanded_url":"http:\/\/www.ft.com","display_url":"ft.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20069,"friends_count":2249,"listed_count":750,"created_at":"Thu - Apr 24 22:45:20 +0000 2008","favourites_count":5552,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":2548,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2E2635","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\/1170301297188380672\/sFpADIzb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170301297188380672\/sFpADIzb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14519041\/1412543618","profile_link_color":"281A1B","profile_sidebar_border_color":"5E929D","profile_sidebar_fill_color":"3396CC","profile_text_color":"201544","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":337,"favorite_count":655,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"retweet_count":25,"favorite_count":54,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1165700602334208000/M9RCv3YZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91373' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:37 GMT - Last-Modified: - - Sun, 25 Aug 2019 18:58:55 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1165700602334208000 - X-Cache: - - HIT - X-Connection-Hash: - - efe2f1f402190847d840d5fa7edacda3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:37 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234513538338652160.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8aa1dc5438b6638405b63f223f2b220d", - oauth_signature="VFnQJ56l4NifWVs8WcbNAW4xgkE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257117", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '7322' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:38 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:38 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325711797895672; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:38 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_UWzxsJmuhOMu4c8/RgicXQ=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:38 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 74d176656f83b8344a8e7b8fdbeced62 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '856' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '136' - X-Transaction: - - '00117401008e8a92' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:18:58 +0000 2020","id":1234513538338652160,"id_str":"1234513538338652160","text":"3. - A fake Chuck Schumer tweet is being spread across platforms. \n\nSchumer did - not say \"there must be a check and Ba\u2026 https:\/\/t.co\/zH5CSZfYLU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zH5CSZfYLU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234513538338652160","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234511788076601344,"in_reply_to_status_id_str":"1234511788076601344","in_reply_to_user_id":65284273,"in_reply_to_user_id_str":"65284273","in_reply_to_screen_name":"JaneLytv","user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233856925974003713,"quoted_status_id_str":"1233856925974003713","quoted_status":{"created_at":"Sat - Feb 29 20:49:49 +0000 2020","id":1233856925974003713,"id_str":"1233856925974003713","text":"Fake - Senator Schumer tweet spotted on q Anon Instagram hashtag. https:\/\/t.co\/6HiizqKwEe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1233856908861288454,"id_str":"1233856908861288454","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-KUkRWsAYe8W6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-KUkRWsAYe8W6.jpg","url":"https:\/\/t.co\/6HiizqKwEe","display_url":"pic.twitter.com\/6HiizqKwEe","expanded_url":"https:\/\/twitter.com\/konrad_it\/status\/1233856925974003713\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":494,"h":680,"resize":"fit"},"medium":{"w":872,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1233856908861288454,"id_str":"1233856908861288454","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-KUkRWsAYe8W6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-KUkRWsAYe8W6.jpg","url":"https:\/\/t.co\/6HiizqKwEe","display_url":"pic.twitter.com\/6HiizqKwEe","expanded_url":"https:\/\/twitter.com\/konrad_it\/status\/1233856925974003713\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":494,"h":680,"resize":"fit"},"medium":{"w":872,"h":1200,"resize":"fit"}}},{"id":1233856918348845057,"id_str":"1233856918348845057","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/ER-KVHnXUAEW6vF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ER-KVHnXUAEW6vF.jpg","url":"https:\/\/t.co\/6HiizqKwEe","display_url":"pic.twitter.com\/6HiizqKwEe","expanded_url":"https:\/\/twitter.com\/konrad_it\/status\/1233856925974003713\/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,"user":{"id":2199716367,"id_str":"2199716367","name":"Konrad - Iturbe","screen_name":"konrad_it","location":"Barcelona\/Madrid","description":"F4A83E52CF2B880C, - and opinions my own","url":"https:\/\/t.co\/pIQcS13pw9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pIQcS13pw9","expanded_url":"http:\/\/chernowii.com","display_url":"chernowii.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":795,"friends_count":353,"listed_count":70,"created_at":"Thu - Nov 28 20:49:46 +0000 2013","favourites_count":17128,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2551,"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\/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\/1220474590356561922\/EHnGRA76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220474590356561922\/EHnGRA76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2199716367\/1550664560","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"retweet_count":27,"favorite_count":40,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:38 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:38 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:38 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1165700602334208000/M9RCv3YZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91374' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:38 GMT - Last-Modified: - - Sun, 25 Aug 2019 18:58:55 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1165700602334208000 - X-Cache: - - HIT - X-Connection-Hash: - - efe2f1f402190847d840d5fa7edacda3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:38 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234511788076601344.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0dde6ff61f1b035e35ebb7de045954a4", - oauth_signature="s2cnOGZoqInVNyiMNO%2BViJWdlww%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257118", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '5956' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:38 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:38 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325711883964646; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:38 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_RP9NN8bDoOJMgBkmF6gSkw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:38 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 03b777f5b27e383be02c4078f5e8aae7 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '855' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '147' - X-Transaction: - - 00e0855e00407a59 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:12:01 +0000 2020","id":1234511788076601344,"id_str":"1234511788076601344","text":"2. - No, the pope has not been contaminated with coronavirus. \n\nThis claim has - over 60,000 people engaging with it on\u2026 https:\/\/t.co\/XMqRV6EzCB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XMqRV6EzCB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234511788076601344","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234511046741831685,"in_reply_to_status_id_str":"1234511046741831685","in_reply_to_user_id":65284273,"in_reply_to_user_id_str":"65284273","in_reply_to_screen_name":"JaneLytv","user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1233771696462684161,"quoted_status_id_str":"1233771696462684161","quoted_status":{"created_at":"Sat - Feb 29 15:11:09 +0000 2020","id":1233771696462684161,"id_str":"1233771696462684161","text":"1. - THREAD.\n\nThere''s a fake news story circulating from a website called \"MCM - News\" claiming the Pope has the\u2026 https:\/\/t.co\/bjwO4kQuTM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bjwO4kQuTM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1233771696462684161","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800713486229614597,"id_str":"800713486229614597","name":"Cindy - Otis (Pre-order TRUE OR FALSE now!)","screen_name":"CindyOtis_","location":"","description":"Former - @CIA, now cyber\/disinfo. Author of TRUE OR FALSE: A CIA Analyst''s Guide - to Spotting Fake News (Macmillan 5\/20, PREORDER now!). Tweets are mine\u2260employer''s","url":"https:\/\/t.co\/YRUbyDvjEo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YRUbyDvjEo","expanded_url":"http:\/\/www.cindyotis.com","display_url":"cindyotis.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":28482,"friends_count":906,"listed_count":415,"created_at":"Mon - Nov 21 14:52:26 +0000 2016","favourites_count":36602,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13638,"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\/1152678441407451136\/vEQnJ-1e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152678441407451136\/vEQnJ-1e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800713486229614597\/1579196801","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":707,"favorite_count":637,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"retweet_count":17,"favorite_count":44,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:39 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:39 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:39 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1165700602334208000/M9RCv3YZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91375' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:39 GMT - Last-Modified: - - Sun, 25 Aug 2019 18:58:55 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1165700602334208000 - X-Cache: - - HIT - X-Connection-Hash: - - efe2f1f402190847d840d5fa7edacda3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:39 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234511046741831685.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ef439d7a18909def3f1e0324495a0555", - oauth_signature="vpOb3S5Q2JdBjWPXqd%2Buw1gemkk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257119", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '3013' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:39 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:39 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325711972449864; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:39 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_0ubYnxWzP/aKsPWEuteGPw=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:39 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 76cfea7f6afe9668926b37a841d3b6e2 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '854' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '126' - X-Transaction: - - 00c1858d00d3f27e - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:09:04 +0000 2020","id":1234511046741831685,"id_str":"1234511046741831685","text":"1. - Police departments and others are spreading misinformation about meth being - contaminated with coronavirus. It''s\u2026 https:\/\/t.co\/oeoVRyS49Y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oeoVRyS49Y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234511046741831685","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":1234510629089796098,"in_reply_to_status_id_str":"1234510629089796098","in_reply_to_user_id":65284273,"in_reply_to_user_id_str":"65284273","in_reply_to_screen_name":"JaneLytv","user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":34,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:39 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:39 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:40 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1165700602334208000/M9RCv3YZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91376' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:40 GMT - Last-Modified: - - Sun, 25 Aug 2019 18:58:55 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1165700602334208000 - X-Cache: - - HIT - X-Connection-Hash: - - efe2f1f402190847d840d5fa7edacda3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wAIABkAEwAAADlhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAaAAABBQEAAAAAAAAAAAAAAAAFAAMEBgcC/8QAGgEAAgMBAQAAAAAAAAAAAAAABAUAAQIDBv/aAAwDAQACEAMQAAAB2VJSJh+oAkuwmHfLPZljqDpg10XPXqkSSVyNn99xlQ/57CvkOD5nPCo2NqICSx/kUhHJQ86g2yup2edyCPDXAy1xTioy4E4U05VROiIA4QgnXpITMfq7rj08Y5Y3m25PrCsaFRdHpA/CC9HW8JJSSopY717UTT880O+n/8QAJBAAAgICAQUAAgMAAAAAAAAAAgMBBAAFEBESExQ0FSAhMzX/2gAIAQEAAQUC5c0VA62086zirLV5XeLh/W02WtMwDlRytgzBDzantr2LSk49puNT3Lwdg+MTdSca+etbm78tmJixZk1YDJJCDY6Y/nNV8nNz5b64Ot47DaD0WK2eBya2nGJqa35sO+uD97GXO4GgZq9TaRrmqtqoa/3LKqNVtWnSCQr4UnWf7b8GzYKZtWIn2n4sYaMB2YBmE6fYk083C+h5renk2Qx24M9pbIO2zlD7svK8tbBmRJrTbzKJt1/xT8Ug6+y42H1fprf7Mf8A7mf/xAAiEQACAgIBBAMBAAAAAAAAAAABAgADBBEhEBMxYQUSIoH/2gAIAQMBAT8BmLR3m9RalQcCZGItg489fhqg6ncGRWXNRHjn+Srt5KfdRoTIGrWmxMHKSlTs8xM/Kd/y3J9CYuReGNVvHrxLzuxjDx0VipDCFzZ+jLBoxx1WwgR+dT//xAAlEQABAwMDAwUAAAAAAAAAAAABAAIDBBESBRAhEzEzFCJBUXH/2gAIAQIBAT8BVfV+mZx3Kklkk9zyqPUJIXWcbtQN9qyBs1QA74C6LcLW4U+nxHjsqPwM/FYrUKaZ8zXxhGNoC1bwjFUjS2BoP0hvFjgMeyrIwx/Cbu2oewWCqyTiSv/EAC0QAAECBQIDCAIDAAAAAAAAAAEAAgMREiExEEEyUWEEExQgInGBoTRyQlKx/9oACAEBAAY/AtanKxpHRZK4qhyKtY7jzE7bIVOAnieoeEHDB8jz0RE5vGyqeV6HkdFek/CFRodyQ6W8j/ZRA7NSrEQ5wu8pvyRPeFstgpBCeZ+SJ7J5lcCaPavDgwR1UNjmwfW4MbJ2VGjUQQ2HELHercGSbGld9/ZfOhaxj3y5L8eKi3w8W4TmUOuJYXgu6hUf23/xQ2ns0Chjm0vD7tIv9qKxkCA7M640skmcpcXVQ4DxMsF5JoOc6Pa0ylZcX0pNMz7KRMvhcX0okB2IjZfKkpscWnoV4ePd38Xc9GxRvY6O5yTX740BGyLhwxBUNIH7jRzRnI0qaZFCs41a1pAfDO/JccNQYb5TrBtq/wAr/bRn7t0//8QAJxABAAICAAUDBAMAAAAAAAAAAQARITEQIEFhcVGBoZGx0fDB4fH/2gAIAQEAAT8h43Z8HViadj/KZ7zeY9heRl2xdnTlcSxuOD2m0eqzfHfidPUmtgs5FH3eW36JiG49DoEFob3ES0/RpMyA1b8x7/U8outgMCvLpcKl0aly3GUGmGBRkXAQoGjLkNw14Y18Zl9ZFarxWfn4Y0GAqtn20YvySqwqDtAqxXUxtj9P9ZPveClHZM/YS38galEte3cRrYjDTIu/4fSMzgWTgs1hXXv4ioDb8doFFZxiNWZCJpWjhdQLo2dJ2P0TwWBLK2NjKxVY3tIdtiFatN5uEyzTVBy2n4D34VswfcOCpu2M7pPdwXYlZCF4Hvb+eDRD93hRSz9U4HkBpmOD0AVxerGu5P8AcZYaolYS+PyuX4n78lf/2gAMAwEAAgADAAAAEPIapN/GY6XcTVof/r7CNWbvntf/xAAiEQEAAgEEAgIDAAAAAAAAAAABABEhMUFRYRCRcdGBobH/2gAIAQMBAT8QmFdGv1CxUROmv7+YiNPjs19Rh4nChOxV+mmZ57DjOpoLxvTCEcs7phJtZ6h4uxYsetP1EqoGwo4dAIZmlsCqmau4/FI2fiP32vMHBNzyXCJCeJ//xAAkEQEAAgEDAgcBAAAAAAAAAAABABEhMUFRELFhcYGRocHR4f/aAAgBAgEBPxCUrliPt9I9Yb5+tvaClbg5rxPyABNOjJ4srm1/I1KHRW3zNDWOMfyJbuHbpW3K10xTfMyAxAlFy5S3Gd/OoAlIO0VlzeoglMFIVTSHk0JHt1u3iG6xJ//EACYQAQABAgUDBQEBAAAAAAAAAAERACExQVFhgRCRwSBxobHwMOH/2gAIAQEAAT8Q6vossHi6FMzy3hjfFS876lz3oLqlIcOJT3WKvu3N/SgKoBdWlSpXSDPnGnzlMEqEQRkcHXo6t2/cD704sjbZPQwkADm3mrYtINmchcCpThYOEGlbqZPwtEU565clG+a/SdsEO8URKe3Db79Hxn2UNKSU5iqPaKhLjDxn5yrJsQWQzNCkZCgII7t8qGhXAxVwpO5QLeCfRADU9r1eM+OTawnRJKZb4QyEYWwM89ijhzbAkxuJMMCRqZdgmVFqRJAlCBqY1EyCgUA8LzRj3+Po0dEAi2Mam9fuaEpkzG0kUHjvTYUJ+aOjKxQ3BxG6ZsvTP2USiVMJYWJEMQmhAShFlJADHECVaOJc6q2SZLxSdZgYks/XST+smVyVfaOjw5LYCVqSqoAEpRCkiwpgrgaN33kq80YZ0lqQv0qM7UZlK2CglyrLjnFSa1naC5B7fXQ8VA4jfxUUgTpzESduiRwRtxqPtEeGhxLogEPiVFNCoizxg5uc0iKIiMI4lKIOQxKfgmQE5vv1JMopwnMW0Svxnil0vECP8/xmBr8bU6f/2SAgICAg - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:40 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234510629089796098.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0ebce189bf7d6383440e1f723f3d8fbd", - oauth_signature="r%2BuKf2NyR%2BatMXHkF7TDnGZoyKg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257120", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '3014' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:40 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:40 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325712059144871; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_3XX4oZS+zDLjQ8Voa8pm3w=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:40 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e5c1626213bd4f511eb7552613442679 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '853' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '123' - X-Transaction: - - 007b981d0099b6b9 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 16:07:24 +0000 2020","id":1234510629089796098,"id_str":"1234510629089796098","text":"This - post is going to be continuously refreshed and updated with the latest debunks - and also includes all the older\u2026 https:\/\/t.co\/T645kekapk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T645kekapk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234510629089796098","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234501855004233728,"in_reply_to_status_id_str":"1234501855004233728","in_reply_to_user_id":65284273,"in_reply_to_user_id_str":"65284273","in_reply_to_screen_name":"JaneLytv","user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":56,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:40 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:40 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:40 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1165700602334208000/M9RCv3YZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91376' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:40 GMT - Last-Modified: - - Sun, 25 Aug 2019 18:58:55 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1165700602334208000 - X-Cache: - - HIT - X-Connection-Hash: - - efe2f1f402190847d840d5fa7edacda3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:40 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234501855004233728.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0c5f5ce49f18bc30e1120565045fc3de", - oauth_signature="%2FhVno87STjgOFDXxElZUocG%2B08g%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257120", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '6076' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:46 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:46 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325712646206445; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:46 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_uiFjDb9Rb7M5Xxs/PKraug=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:46 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 1a9d3ba0f870aee4248a1958e3d5adf3 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '852' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '148' - X-Transaction: - - 007b7d4800d460c1 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 15:32:32 +0000 2020","id":1234501855004233728,"id_str":"1234501855004233728","text":"The - previous debunk thread from January can be found here \ud83d\udc47\nhttps:\/\/t.co\/TtAJdmrlVX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TtAJdmrlVX","expanded_url":"https:\/\/twitter.com\/JaneLytv\/status\/1223370119109337090","display_url":"twitter.com\/JaneLytv\/statu\u2026","indices":[60,83]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1234501853464977409,"in_reply_to_status_id_str":"1234501853464977409","in_reply_to_user_id":65284273,"in_reply_to_user_id_str":"65284273","in_reply_to_screen_name":"JaneLytv","user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1223370119109337090,"quoted_status_id_str":"1223370119109337090","quoted_status":{"created_at":"Fri - Jan 31 22:19:00 +0000 2020","id":1223370119109337090,"id_str":"1223370119109337090","text":"43. - Zero Hedge, a pro-Trump website, has doxxed a Chinese scientist it falsely - connected to the spread of coronavir\u2026 https:\/\/t.co\/5toOCUQCUS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5toOCUQCUS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223370119109337090","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1223364112329138176,"in_reply_to_status_id_str":"1223364112329138176","in_reply_to_user_id":65284273,"in_reply_to_user_id_str":"65284273","in_reply_to_screen_name":"JaneLytv","user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":75,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"retweet_count":9,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:46 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:46 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:46 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1165700602334208000/M9RCv3YZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91382' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:46 GMT - Last-Modified: - - Sun, 25 Aug 2019 18:58:55 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1165700602334208000 - X-Cache: - - HIT - X-Connection-Hash: - - efe2f1f402190847d840d5fa7edacda3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:46 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1234501853464977409.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="004bbe7be018e2e64eadc75357bb7ac6", - oauth_signature="u1U%2FHhgwMQATIiWfn%2FRP%2FvKgp74%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1583257126", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2952' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 03 Mar 2020 17:38:52 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 03 Mar 2020 17:38:52 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158325713238640936; Max-Age=63072000; Expires=Thu, 3 Mar 2022 - 17:38:52 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - - lang=en; Path=/ - - personalization_id="v1_JOYz7dFIZKM6BhEcRSEgTA=="; Max-Age=63072000; Expires=Thu, - 3 Mar 2022 17:38:52 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 425a774fb2ed2bd6bc0e151306559547 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '851' - X-Rate-Limit-Reset: - - '1583257476' - X-Response-Time: - - '321' - X-Transaction: - - '005004890045735b' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Mar 02 15:32:32 +0000 2020","id":1234501853464977409,"id_str":"1234501853464977409","text":"Hello. - I''m (once again) keeping track of fakes about #covid19 in this thread \ud83d\udc47 - \n\nSee something? My DMs are open, my\u2026 https:\/\/t.co\/7LdyQ582FY","truncated":true,"entities":{"hashtags":[{"text":"covid19","indices":[53,61]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7LdyQ582FY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234501853464977409","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":65284273,"id_str":"65284273","name":"Jane - Lytvynenko \ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f\ud83e\udd26\ud83c\udffd\u200d\u2640\ufe0f","screen_name":"JaneLytv","location":"Toronto, - Ontario","description":"internet reporter \u2022 disinfo, security, online - investigations \u2022 send tips, leaks, observations, gifs: jane.lytvynenko@buzzfeed.com - \u2022 DMs open","url":"https:\/\/t.co\/l4mA7I2ahX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l4mA7I2ahX","expanded_url":"https:\/\/www.buzzfeednews.com\/article\/janelytvynenko","display_url":"buzzfeednews.com\/article\/janely\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":37733,"friends_count":4918,"listed_count":822,"created_at":"Thu - Aug 13 05:20:45 +0000 2009","favourites_count":27610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":9135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","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\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165700602334208000\/M9RCv3YZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65284273\/1580237774","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2C2C2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":151,"favorite_count":218,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:52 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 03 Mar 2020 17:38:52 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:52 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1165700602334208000/M9RCv3YZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91389' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 03 Mar 2020 17:38:53 GMT - Last-Modified: - - Sun, 25 Aug 2019 18:58:55 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1165700602334208000 - X-Cache: - - HIT - X-Connection-Hash: - - efe2f1f402190847d840d5fa7edacda3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 03 Mar 2020 17:38:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Padang&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Thu, 05 Mar 2020 17:12:17 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 05 Mar 2020 17:12:17 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Toronto,%20Ontario&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Thu, 05 Mar 2020 17:12:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Thu, 05 Mar 2020 17:12:30 GMT -recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/is_false_default_skips_retweets.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/is_false_default_skips_retweets.yml new file mode 100644 index 000000000..3c8e1c562 --- /dev/null +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/is_false_default_skips_retweets.yml @@ -0,0 +1,437 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", + oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796438", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '124247' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:18 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:18 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:18 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - e258dfc9229bc838cd9d50c00177c48a + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '179' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '182' + X-Transaction: + - 00cf981300b03fb6 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[{"created_at":"Thu + Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover + jobs for design, product, ux, ui, engineering, pm, research, and more via + Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue + Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue + Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq + Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users + ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, + Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, + Discourse & other open source instances for you, so you don''t have to. + Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun + Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come + and join our team to bring Zammad even further forward! \n\nIt''s gonna be + amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, + Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | + Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri + Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub + Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, + testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:18 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '76528' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/png + Date: + - Tue, 04 Feb 2020 06:07:27 GMT + Last-Modified: + - Wed, 24 Apr 2019 14:50:32 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1121064385504534529 + X-Cache: + - HIT + X-Connection-Hash: + - d794e5057dfcb8c176f39934751f5fec + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:27 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '237853' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Last-Modified: + - Wed, 30 Oct 2019 08:56:48 GMT + Server: + - ECS (tpe/68A1) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1189466673532854272 + X-Cache: + - HIT + X-Connection-Hash: + - b140b365ea73f0d34e1c7c5a2ad7cbc9 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '108' + Content-Length: + - '3863' + body: + encoding: ASCII-8BIT + string: !binary |- + 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", + oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796452", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2781' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:32 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 608ef1d33f94f7800d75e9f14fc86838 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '892' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '125' + X-Transaction: + - 00dc12c800f73e29 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","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,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/is_false_default_skips_tweets_15_days_older_than_channel_itself.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/is_false_default_skips_tweets_15_days_older_than_channel_itself.yml new file mode 100644 index 000000000..3c8e1c562 --- /dev/null +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/is_false_default_skips_tweets_15_days_older_than_channel_itself.yml @@ -0,0 +1,437 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", + oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796438", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '124247' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:18 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:18 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:18 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - e258dfc9229bc838cd9d50c00177c48a + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '179' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '182' + X-Transaction: + - 00cf981300b03fb6 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[{"created_at":"Thu + Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover + jobs for design, product, ux, ui, engineering, pm, research, and more via + Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue + Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue + Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq + Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users + ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, + Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, + Discourse & other open source instances for you, so you don''t have to. + Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun + Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come + and join our team to bring Zammad even further forward! \n\nIt''s gonna be + amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, + Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | + Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri + Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub + Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, + testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:18 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '76528' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/png + Date: + - Tue, 04 Feb 2020 06:07:27 GMT + Last-Modified: + - Wed, 24 Apr 2019 14:50:32 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1121064385504534529 + X-Cache: + - HIT + X-Connection-Hash: + - d794e5057dfcb8c176f39934751f5fec + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:27 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '237853' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Last-Modified: + - Wed, 30 Oct 2019 08:56:48 GMT + Server: + - ECS (tpe/68A1) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1189466673532854272 + X-Cache: + - HIT + X-Connection-Hash: + - b140b365ea73f0d34e1c7c5a2ad7cbc9 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '108' + Content-Length: + - '3863' + body: + encoding: ASCII-8BIT + string: !binary |- + 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", + oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796452", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2781' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:32 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 608ef1d33f94f7800d75e9f14fc86838 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '892' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '125' + X-Transaction: + - 00dc12c800f73e29 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","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,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/is_true_creates_an_article_for_each_recent_tweet_retweet.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/is_true_creates_an_article_for_each_recent_tweet_retweet.yml new file mode 100644 index 000000000..3c8e1c562 --- /dev/null +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/is_true_creates_an_article_for_each_recent_tweet_retweet.yml @@ -0,0 +1,437 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", + oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796438", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '124247' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:18 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:18 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:18 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - e258dfc9229bc838cd9d50c00177c48a + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '179' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '182' + X-Transaction: + - 00cf981300b03fb6 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[{"created_at":"Thu + Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover + jobs for design, product, ux, ui, engineering, pm, research, and more via + Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue + Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue + Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq + Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users + ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, + Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, + Discourse & other open source instances for you, so you don''t have to. + Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun + Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come + and join our team to bring Zammad even further forward! \n\nIt''s gonna be + amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, + Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | + Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri + Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub + Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, + testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:18 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '76528' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/png + Date: + - Tue, 04 Feb 2020 06:07:27 GMT + Last-Modified: + - Wed, 24 Apr 2019 14:50:32 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1121064385504534529 + X-Cache: + - HIT + X-Connection-Hash: + - d794e5057dfcb8c176f39934751f5fec + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:27 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '237853' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Last-Modified: + - Wed, 30 Oct 2019 08:56:48 GMT + Server: + - ECS (tpe/68A1) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1189466673532854272 + X-Cache: + - HIT + X-Connection-Hash: + - b140b365ea73f0d34e1c7c5a2ad7cbc9 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '108' + Content-Length: + - '3863' + body: + encoding: ASCII-8BIT + string: !binary |- + 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", + oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796452", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2781' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:32 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 608ef1d33f94f7800d75e9f14fc86838 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '892' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '125' + X-Transaction: + - 00dc12c800f73e29 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","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,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/is_true_creates_an_article_for_each_tweet.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/is_true_creates_an_article_for_each_tweet.yml new file mode 100644 index 000000000..3c8e1c562 --- /dev/null +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/is_true_creates_an_article_for_each_tweet.yml @@ -0,0 +1,437 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", + oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796438", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '124247' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:18 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:18 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:18 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - e258dfc9229bc838cd9d50c00177c48a + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '179' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '182' + X-Transaction: + - 00cf981300b03fb6 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[{"created_at":"Thu + Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover + jobs for design, product, ux, ui, engineering, pm, research, and more via + Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue + Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue + Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq + Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users + ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, + Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, + Discourse & other open source instances for you, so you don''t have to. + Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun + Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come + and join our team to bring Zammad even further forward! \n\nIt''s gonna be + amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, + Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | + Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri + Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub + Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, + testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:18 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '76528' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/png + Date: + - Tue, 04 Feb 2020 06:07:27 GMT + Last-Modified: + - Wed, 24 Apr 2019 14:50:32 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1121064385504534529 + X-Cache: + - HIT + X-Connection-Hash: + - d794e5057dfcb8c176f39934751f5fec + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:27 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '237853' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Last-Modified: + - Wed, 30 Oct 2019 08:56:48 GMT + Server: + - ECS (tpe/68A1) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1189466673532854272 + X-Cache: + - HIT + X-Connection-Hash: + - b140b365ea73f0d34e1c7c5a2ad7cbc9 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '108' + Content-Length: + - '3863' + body: + encoding: ASCII-8BIT + string: !binary |- + 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", + oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796452", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2781' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:32 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 608ef1d33f94f7800d75e9f14fc86838 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '892' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '125' + X-Transaction: + - 00dc12c800f73e29 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","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,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/twitter_api_activity_sets_successful_status_attributes.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/twitter_api_activity_sets_successful_status_attributes.yml index 209adde8f..431202078 100644 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/twitter_api_activity_sets_successful_status_attributes.yml +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/twitter_api_activity_sets_successful_status_attributes.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8efb0d12349b48e6acaa2ec6ff224cc2", - oauth_signature="uABvZoC5sN%2F68E4oxp6Qk6SxO2Y%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795852", oauth_token="REDACTED", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="248ea6cd99422659fa5b577609041c6f", + oauth_signature="atNpNBIi2lP%2ByyOQ6hrAVGpVWXI%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034927", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -30,25 +30,25 @@ http_interactions: Content-Disposition: - attachment; filename=json.json Content-Length: - - '100314' + - '238271' Content-Type: - application/json;charset=utf-8 Date: - - Mon, 03 Dec 2018 00:10:52 GMT + - Thu, 12 Mar 2020 17:42:08 GMT Expires: - Tue, 31 Mar 1981 05:00:00 GMT Last-Modified: - - Mon, 03 Dec 2018 00:10:52 GMT + - Thu, 12 Mar 2020 17:42:07 GMT Pragma: - no-cache Server: - - tsa_o + - tsa_m Set-Cookie: - - guest_id=v1%3A154379585206598350; Expires=Wed, 02 Dec 2020 00:10:52 GMT; Path=/; - Domain=.twitter.com + - guest_id=v1%3A158403492778897684; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:42:07 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - lang=en; Path=/ - - personalization_id="v1_waQbYwEcthV3BgOM79ebyA=="; Expires=Wed, 02 Dec 2020 - 00:10:52 GMT; Path=/; Domain=.twitter.com + - personalization_id="v1_E0QYy7ILBfE/LhaQbajuSA=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:42:07 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None Status: - 200 OK Strict-Transport-Security: @@ -56,7 +56,7 @@ http_interactions: X-Access-Level: - read-write-directmessages X-Connection-Hash: - - a1a23cf829d6620a58e4f36784e4cb35 + - b157b5d711acdfb4e0c9d33eedd800d9 X-Content-Type-Options: - nosniff X-Frame-Options: @@ -64,353 +64,33 @@ http_interactions: X-Rate-Limit-Limit: - '180' X-Rate-Limit-Remaining: - - '174' + - '179' X-Rate-Limit-Reset: - - '1543796367' + - '1584035827' X-Response-Time: - - '350' + - '311' X-Transaction: - - '009c973e00526e95' + - 005c7ab0006f0d05 X-Twitter-Response-Tags: - BouncerCompliant X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report + - '0' body: encoding: UTF-8 - string: '{"statuses":[{"created_at":"Sun Dec 02 16:20:35 +0000 2018","id":1069265077583400960,"id_str":"1069265077583400960","text":"@pexample - @Example1 Not Love only FAME","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pexample","name":"Zarghuna - Bukhari","id":2176345957,"id_str":"2176345957","indices":[0,12]},{"screen_name":"Example1","name":"Reham - Khan","id":298959564,"id_str":"298959564","indices":[13,24]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1068958852887076864,"in_reply_to_status_id_str":"1068958852887076864","in_reply_to_user_id":2176345957,"in_reply_to_user_id_str":"2176345957","in_reply_to_screen_name":"pexample","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat - Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub - Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, - testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Fri - Nov 30 12:23:31 +0000 2018","id":1068480642663542784,"id_str":"1068480642663542784","text":"@mexample - @AExample @TGExample Tell that to any left wing political person who tweets - somewhat consistently on this site","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mexample","name":"Zammad - Mustafa","id":2694949692,"id_str":"2694949692","indices":[0,14]},{"screen_name":"AExample","name":"ahad","id":2320914337,"id_str":"2320914337","indices":[15,23]},{"screen_name":"TGExample","name":"Twitter - Gaming","id":3873936134,"id_str":"3873936134","indices":[24,38]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1062817263106039814,"in_reply_to_status_id_str":"1062817263106039814","in_reply_to_user_id":2694949692,"in_reply_to_user_id_str":"2694949692","in_reply_to_screen_name":"mexample","user":{"id":980307493954895872,"id_str":"980307493954895872","name":"Luke - Appleford","screen_name":"LukeAppleford1","location":"Traverse City, MI","description":"Games - eSports","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":216,"listed_count":0,"created_at":"Sun - Apr 01 04:54:54 +0000 2018","favourites_count":84,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":499,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/982030415094575107\/uoPHSILZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/982030415094575107\/uoPHSILZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/980307493954895872\/1522969368","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri - Nov 30 06:30:02 +0000 2018","id":1068391688459051009,"id_str":"1068391688459051009","text":"GitHub - Trending Archive, 28 Nov 2018, Ruby. djezzzl\/database_consistency, adworse\/iguvium, - testdouble\/standard, git\u2026 https:\/\/t.co\/lcXoXyEjkQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lcXoXyEjkQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068391688459051009","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Thu - Nov 29 13:03:10 +0000 2018","id":1068128231952400386,"id_str":"1068128231952400386","text":"@example_org - Pmln=Chor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"example_org","name":"Example(N)","id":497658491,"id_str":"497658491","indices":[0,9]}],"urls":[]},"metadata":{"iso_language_code":"es","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1068124600951803905,"in_reply_to_status_id_str":"1068124600951803905","in_reply_to_user_id":497658491,"in_reply_to_user_id_str":"497658491","in_reply_to_screen_name":"example_org","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Thu - Nov 29 06:30:02 +0000 2018","id":1068029300794785792,"id_str":"1068029300794785792","text":"GitHub - Trending Archive, 27 Nov 2018, Ruby. djezzzl\/database_consistency, adworse\/iguvium, - testdouble\/standard, uoh\u2026 https:\/\/t.co\/1HdM47L90h","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1HdM47L90h","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068029300794785792","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Wed - Nov 28 06:30:09 +0000 2018","id":1067666938346692608,"id_str":"1067666938346692608","text":"GitHub - Trending Archive, 26 Nov 2018, Ruby. travis-ci\/travis.rb, zammad\/zammad, - citation-style-language\/styles, ath\u2026 https:\/\/t.co\/0Rxi6UIxPn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0Rxi6UIxPn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1067666938346692608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Tue - Nov 27 20:16:04 +0000 2018","id":1067512400096702464,"id_str":"1067512400096702464","text":"RT - @chaudhry_nabeel: 100 days of Patwari life \ud83d\ude25\ud83d\ude25\n\nRT - and share there misery\n#100DaysOfKhan https:\/\/t.co\/8SuDIKp2np","truncated":false,"entities":{"hashtags":[{"text":"100DaysOfKhan","indices":[76,90]}],"symbols":[],"user_mentions":[{"screen_name":"chaudhry_nabeel","name":"Nabeel - Chaudhry","id":148806508,"id_str":"148806508","indices":[3,19]}],"urls":[],"media":[{"id":1067456003346755585,"id_str":"1067456003346755585","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","url":"https:\/\/t.co\/8SuDIKp2np","display_url":"pic.twitter.com\/8SuDIKp2np","expanded_url":"https:\/\/twitter.com\/chaudhry_nabeel\/status\/1067458921831546880\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":669,"resize":"fit"},"large":{"w":1280,"h":714,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"source_status_id":1067458921831546880,"source_status_id_str":"1067458921831546880","source_user_id":148806508,"source_user_id_str":"148806508"}]},"extended_entities":{"media":[{"id":1067456003346755585,"id_str":"1067456003346755585","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","url":"https:\/\/t.co\/8SuDIKp2np","display_url":"pic.twitter.com\/8SuDIKp2np","expanded_url":"https:\/\/twitter.com\/chaudhry_nabeel\/status\/1067458921831546880\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":669,"resize":"fit"},"large":{"w":1280,"h":714,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"source_status_id":1067458921831546880,"source_status_id_str":"1067458921831546880","source_user_id":148806508,"source_user_id_str":"148806508","video_info":{"aspect_ratio":[640,357],"duration_millis":46933,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/pl\/x7OlDUqM8vFckfqL.m3u8?tag=5"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/322x180\/fOH4uRhl0DahC-c9.mp4?tag=5"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/1280x714\/MXl3naMgncziejIx.mp4?tag=5"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/644x360\/jpwRvUvlD37j_w2a.mp4?tag=5"}]},"additional_media_info":{"monetizable":false,"source_user":{"id":148806508,"id_str":"148806508","name":"Nabeel - Chaudhry","screen_name":"chaudhry_nabeel","location":"Gujranwala","description":"A - good dentist never gets on your nerves\nI edit photos and videos just for - Fun","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24292,"friends_count":3172,"listed_count":41,"created_at":"Thu - May 27 17:07:00 +0000 2010","favourites_count":32993,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40495,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976550528414048257\/HsYRKtE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976550528414048257\/HsYRKtE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148806508\/1541347396","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 27 16:43:34 +0000 2018","id":1067458921831546880,"id_str":"1067458921831546880","text":"100 - days of Patwari life \ud83d\ude25\ud83d\ude25\n\nRT and share there misery\n#100DaysOfKhan - https:\/\/t.co\/8SuDIKp2np","truncated":false,"entities":{"hashtags":[{"text":"100DaysOfKhan","indices":[55,69]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1067456003346755585,"id_str":"1067456003346755585","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","url":"https:\/\/t.co\/8SuDIKp2np","display_url":"pic.twitter.com\/8SuDIKp2np","expanded_url":"https:\/\/twitter.com\/chaudhry_nabeel\/status\/1067458921831546880\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":669,"resize":"fit"},"large":{"w":1280,"h":714,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1067456003346755585,"id_str":"1067456003346755585","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1067456003346755585\/pu\/img\/tic7hRa9OHyvJL-z.jpg","url":"https:\/\/t.co\/8SuDIKp2np","display_url":"pic.twitter.com\/8SuDIKp2np","expanded_url":"https:\/\/twitter.com\/chaudhry_nabeel\/status\/1067458921831546880\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":669,"resize":"fit"},"large":{"w":1280,"h":714,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"video_info":{"aspect_ratio":[640,357],"duration_millis":46933,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/pl\/x7OlDUqM8vFckfqL.m3u8?tag=5"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/322x180\/fOH4uRhl0DahC-c9.mp4?tag=5"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/1280x714\/MXl3naMgncziejIx.mp4?tag=5"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1067456003346755585\/pu\/vid\/644x360\/jpwRvUvlD37j_w2a.mp4?tag=5"}]},"additional_media_info":{"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148806508,"id_str":"148806508","name":"Nabeel - Chaudhry","screen_name":"chaudhry_nabeel","location":"Gujranwala","description":"A - good dentist never gets on your nerves\nI edit photos and videos just for - Fun","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24292,"friends_count":3172,"listed_count":41,"created_at":"Thu - May 27 17:07:00 +0000 2010","favourites_count":32993,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40495,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976550528414048257\/HsYRKtE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976550528414048257\/HsYRKtE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148806508\/1541347396","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":268,"favorite_count":649,"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"},{"created_at":"Tue - Nov 27 10:36:04 +0000 2018","id":1067366438179151872,"id_str":"1067366438179151872","text":"RT - @zefanjas: Zammad LDAP Integration mit https:\/\/t.co\/wVe8RyJ9rE https:\/\/t.co\/Tm4uGm0TCc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zefanjas","name":"zefanjas","id":37184801,"id_str":"37184801","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/wVe8RyJ9rE","expanded_url":"http:\/\/Linuxmuster.net","display_url":"Linuxmuster.net","indices":[42,65]},{"url":"https:\/\/t.co\/Tm4uGm0TCc","expanded_url":"http:\/\/rviv.ly\/0yY5qp","display_url":"rviv.ly\/0yY5qp","indices":[66,89]}]},"metadata":{"iso_language_code":"ht","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"dev - - Zammad maintainer - OTRS customizer","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":40,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":215,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":120,"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\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 27 08:04:35 +0000 2018","id":1067328318691790848,"id_str":"1067328318691790848","text":"Zammad - LDAP Integration mit https:\/\/t.co\/wVe8RyJ9rE https:\/\/t.co\/Tm4uGm0TCc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wVe8RyJ9rE","expanded_url":"http:\/\/Linuxmuster.net","display_url":"Linuxmuster.net","indices":[28,51]},{"url":"https:\/\/t.co\/Tm4uGm0TCc","expanded_url":"http:\/\/rviv.ly\/0yY5qp","display_url":"rviv.ly\/0yY5qp","indices":[52,75]}]},"metadata":{"iso_language_code":"ht","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/openschoolsolutions.org\" rel=\"nofollow\"\u003eMy_Blog_Tweeter\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37184801,"id_str":"37184801","name":"zefanjas","screen_name":"zefanjas","location":"","description":"teacher, - sysadmin, open source, https:\/\/t.co\/jPPFTbyZMX,","url":"https:\/\/t.co\/dxttQkh7O8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dxttQkh7O8","expanded_url":"https:\/\/zefanjas.de","display_url":"zefanjas.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jPPFTbyZMX","expanded_url":"http:\/\/linuxmuster.net","display_url":"linuxmuster.net","indices":[32,55]}]}},"protected":false,"followers_count":212,"friends_count":327,"listed_count":29,"created_at":"Sat - May 02 12:04:50 +0000 2009","favourites_count":131,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1288,"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\/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\/915014575\/zefanjas_new_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915014575\/zefanjas_new_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37184801\/1512218035","profile_link_color":"038543","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"},"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":"ht"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ht"},{"created_at":"Tue - Nov 27 08:04:35 +0000 2018","id":1067328318691790848,"id_str":"1067328318691790848","text":"Zammad - LDAP Integration mit https:\/\/t.co\/wVe8RyJ9rE https:\/\/t.co\/Tm4uGm0TCc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wVe8RyJ9rE","expanded_url":"http:\/\/Linuxmuster.net","display_url":"Linuxmuster.net","indices":[28,51]},{"url":"https:\/\/t.co\/Tm4uGm0TCc","expanded_url":"http:\/\/rviv.ly\/0yY5qp","display_url":"rviv.ly\/0yY5qp","indices":[52,75]}]},"metadata":{"iso_language_code":"ht","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/openschoolsolutions.org\" rel=\"nofollow\"\u003eMy_Blog_Tweeter\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37184801,"id_str":"37184801","name":"zefanjas","screen_name":"zefanjas","location":"","description":"teacher, - sysadmin, open source, https:\/\/t.co\/jPPFTbyZMX,","url":"https:\/\/t.co\/dxttQkh7O8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dxttQkh7O8","expanded_url":"https:\/\/zefanjas.de","display_url":"zefanjas.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jPPFTbyZMX","expanded_url":"http:\/\/linuxmuster.net","display_url":"linuxmuster.net","indices":[32,55]}]}},"protected":false,"followers_count":212,"friends_count":327,"listed_count":29,"created_at":"Sat - May 02 12:04:50 +0000 2009","favourites_count":131,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1288,"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\/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\/915014575\/zefanjas_new_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915014575\/zefanjas_new_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37184801\/1512218035","profile_link_color":"038543","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"},"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":"ht"},{"created_at":"Mon - Nov 26 11:39:24 +0000 2018","id":1067019989121724416,"id_str":"1067019989121724416","text":"zammad\/zammad: - Zammad is a web based open source helpdesk\/customer support system https:\/\/t.co\/a1FHuA1nrT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a1FHuA1nrT","expanded_url":"https:\/\/example.com\/zammad\/zammad","display_url":"example.com\/zammad\/zammad","indices":[82,105]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":35983221,"id_str":"35983221","name":"Alex - Ishida","screen_name":"alexishida","location":"Porto Velho, Brasil","description":"Senior - Software Developer, Ruby on Rails Evangelist, Blockchain Enthusiast, Gamer, - Addicted to Electronic, Photography and Technology.","url":"https:\/\/t.co\/fG4NwLjeSS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fG4NwLjeSS","expanded_url":"https:\/\/www.example.com\/in\/alexishida\/","display_url":"example.com\/in\/alexishida\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":1050,"listed_count":90,"created_at":"Tue - Apr 28 04:04:57 +0000 2009","favourites_count":812,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4229,"lang":"pt","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"5D7382","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\/932827443404197888\/kFWnZpm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932827443404197888\/kFWnZpm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35983221\/1511238535","profile_link_color":"5C6B7E","profile_sidebar_border_color":"000000","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"},"geo":null,"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"},{"created_at":"Mon - Nov 26 06:30:13 +0000 2018","id":1066942182664224769,"id_str":"1066942182664224769","text":"GitHub - Trending Archive, 24 Nov 2018, Ruby. asciidoctor\/asciidoctor-pdf, uohzxela\/clean-code-ruby, - ManageIQ\/managei\u2026 https:\/\/t.co\/gWM7paKJXZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gWM7paKJXZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1066942182664224769","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Sun - Nov 25 20:19:27 +0000 2018","id":1066788475469529091,"id_str":"1066788475469529091","text":"I - added a video to a @YouTube playlist https:\/\/t.co\/3v4JTQKOQp Cardi B, Bad - Bunny & J Balvin - I Like It [Official Music Video]","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[21,29]}],"urls":[{"url":"https:\/\/t.co\/3v4JTQKOQp","expanded_url":"http:\/\/youtu.be\/xTlNMmZKwpA?a","display_url":"youtu.be\/xTlNMmZKwpA?a","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"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"},{"created_at":"Sun - Nov 25 06:30:03 +0000 2018","id":1066579751278567424,"id_str":"1066579751278567424","text":"GitHub - Trending Archive, 23 Nov 2018, Ruby. fbkcs\/msf-elf-in-memory-execution, ciconia\/modulation, - contentful-labs\/\u2026 https:\/\/t.co\/pSQs0HwgrE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pSQs0HwgrE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1066579751278567424","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Sun - Nov 25 05:48:06 +0000 2018","id":1066569192860762112,"id_str":"1066569192860762112","text":"I - added a video to a @YouTube playlist https:\/\/t.co\/OZOnKsQUH6 We Put Lego - In a Blender and it was Worth It!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[21,29]}],"urls":[{"url":"https:\/\/t.co\/OZOnKsQUH6","expanded_url":"http:\/\/youtu.be\/Po4C-IiAJlQ?a","display_url":"youtu.be\/Po4C-IiAJlQ?a","indices":[39,62]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"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"},{"created_at":"Sat - Nov 24 12:41:19 +0000 2018","id":1066310793925455872,"id_str":"1066310793925455872","text":"@zammadhq - Danke. Noch eine Frage zu Twitter und Zammad. Wo kann ich das Standarttemplate - f\u00fcr Twitter bearbeiten?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":1066307515649003520,"in_reply_to_status_id_str":"1066307515649003520","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":280647844,"id_str":"280647844","name":"fexample","screen_name":"fexample","location":"Berlin","description":"ITler, - Autist und Podcaster |\nim CCC Umfeld aktiv | er\/he","url":"https:\/\/t.co\/lqrFmdOsAP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lqrFmdOsAP","expanded_url":"http:\/\/fexample.org","display_url":"fexample.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":701,"listed_count":20,"created_at":"Mon - Apr 11 19:18:56 +0000 2011","favourites_count":24752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13973,"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\/851468284230848517\/HAmK9OTy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851468284230848517\/HAmK9OTy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280647844\/1454753210","profile_link_color":"0F125C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Sat - Nov 24 11:51:40 +0000 2018","id":1066298300649877504,"id_str":"1066298300649877504","text":"@zammadhq - Ist es im Moment eigentlich m\u00f6glich, Twitter DMs via Zammad zu Verwalten?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":280647844,"id_str":"280647844","name":"fexample","screen_name":"fexample","location":"Berlin","description":"ITler, - Autist und Podcaster |\nim CCC Umfeld aktiv | er\/he","url":"https:\/\/t.co\/lqrFmdOsAP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lqrFmdOsAP","expanded_url":"http:\/\/fexample.org","display_url":"fexample.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":701,"listed_count":20,"created_at":"Mon - Apr 11 19:18:56 +0000 2011","favourites_count":24752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13973,"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\/851468284230848517\/HAmK9OTy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851468284230848517\/HAmK9OTy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280647844\/1454753210","profile_link_color":"0F125C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Sat - Nov 24 06:30:08 +0000 2018","id":1066217385328164864,"id_str":"1066217385328164864","text":"GitHub - Trending Archive, 22 Nov 2018, Ruby. socketry\/falcon, skycocker\/chromebrew, - zammad\/zammad, Linuxbrew\/brew, a\u2026 https:\/\/t.co\/2aRQBL4ltz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2aRQBL4ltz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1066217385328164864","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub - Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun - May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"},{"created_at":"Fri - Nov 23 19:47:06 +0000 2018","id":1066055560028672000,"id_str":"1066055560028672000","text":"RT - @example: #Ruby #AutoTweet | Zammad: A Web-Based Open Source Helpdesk\/Customer - Support System https:\/\/t.co\/E092AvvEAH","truncated":false,"entities":{"hashtags":[{"text":"Ruby","indices":[12,17]},{"text":"AutoTweet","indices":[19,29]}],"symbols":[],"user_mentions":[{"screen_name":"example","name":"Yohan - J. Rodr\u00edguez","id":386830764,"id_str":"386830764","indices":[3,10]}],"urls":[{"url":"https:\/\/t.co\/E092AvvEAH","expanded_url":"https:\/\/goo.gl\/zducHG","display_url":"goo.gl\/zducHG","indices":[97,120]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\" rel=\"nofollow\"\u003eGApps-Newsletter2\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175627617,"id_str":"175627617","name":"Imabit - Inc","screen_name":"imabit_inc","location":"Mexico","description":"Imabit - Inc. is a modern company dedicated to providing development services, design - and AI solutions for the Web, Mobile and Desktop","url":"https:\/\/t.co\/I67AMrwzPJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/I67AMrwzPJ","expanded_url":"https:\/\/www.imabit.com","display_url":"imabit.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":61,"listed_count":6,"created_at":"Sat - Aug 07 03:54:35 +0000 2010","favourites_count":37252,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40504,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/937091164951289856\/tfIoqXYr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/937091164951289856\/tfIoqXYr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175627617\/1512254942","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 23 19:47:00 +0000 2018","id":1066055532707020800,"id_str":"1066055532707020800","text":"#Ruby #AutoTweet - | Zammad: A Web-Based Open Source Helpdesk\/Customer Support System https:\/\/t.co\/E092AvvEAH","truncated":false,"entities":{"hashtags":[{"text":"Ruby","indices":[0,5]},{"text":"AutoTweet","indices":[7,17]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E092AvvEAH","expanded_url":"https:\/\/goo.gl\/zducHG","display_url":"goo.gl\/zducHG","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\" rel=\"nofollow\"\u003eGApps-Newsletter\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386830764,"id_str":"386830764","name":"Yohan - J. Rodr\u00edguez","screen_name":"example","location":"","description":"Nanotechnology - PhD. Developer & Blogger. Passion for Technology, Science and Chess - Keep - Walking..","url":"https:\/\/t.co\/w9cILKDGd9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/w9cILKDGd9","expanded_url":"https:\/\/www.example.com","display_url":"example.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3902,"friends_count":4396,"listed_count":153,"created_at":"Sat - Oct 08 00:19:29 +0000 2011","favourites_count":236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42678,"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\/1052285678342438912\/V6LP8BoX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1052285678342438912\/V6LP8BoX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386830764\/1539719470","profile_link_color":"1B95E0","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"},"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"},{"created_at":"Fri - Nov 23 19:47:00 +0000 2018","id":1066055532707020800,"id_str":"1066055532707020800","text":"#Ruby #AutoTweet - | Zammad: A Web-Based Open Source Helpdesk\/Customer Support System https:\/\/t.co\/E092AvvEAH","truncated":false,"entities":{"hashtags":[{"text":"Ruby","indices":[0,5]},{"text":"AutoTweet","indices":[7,17]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E092AvvEAH","expanded_url":"https:\/\/goo.gl\/zducHG","display_url":"goo.gl\/zducHG","indices":[85,108]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.example.com\" rel=\"nofollow\"\u003eGApps-Newsletter\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386830764,"id_str":"386830764","name":"Yohan - J. Rodr\u00edguez","screen_name":"example","location":"","description":"Nanotechnology - PhD. Developer & Blogger. Passion for Technology, Science and Chess - Keep - Walking..","url":"https:\/\/t.co\/w9cILKDGd9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/w9cILKDGd9","expanded_url":"https:\/\/www.example.com","display_url":"example.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3902,"friends_count":4396,"listed_count":153,"created_at":"Sat - Oct 08 00:19:29 +0000 2011","favourites_count":236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42678,"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\/1052285678342438912\/V6LP8BoX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1052285678342438912\/V6LP8BoX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386830764\/1539719470","profile_link_color":"1B95E0","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"},"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"},{"created_at":"Fri - Nov 23 16:30:39 +0000 2018","id":1066006121020882945,"id_str":"1066006121020882945","text":"RT - @IExample: \u0645\u06cc\u0631\u06d2 \u0630\u06c1\u0646 \u0645\u06cc\u06ba - \u0630\u0631\u0627 \u0633\u0627 \u0628\u06be\u06cc \u0627\u0628\u06c1\u0627\u0645 - \u0628\u0627\u0642\u06cc \u0646\u06c1\u06cc\u06ba \u06a9\u06c1 \u062f\u0648\u0646\u0648\u06ba - \u062d\u0645\u0644\u06d2 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 \u06a9\u0648 - \u062e\u0648\u0634\u062d\u0627\u0644\u06cc \u06a9\u06cc \u0688\u06af\u0631 - \u0633\u06d2 \u062f\u0648\u0631 \u0631\u06a9\u06be\u0646\u06d2 \u06a9\u06d2 - \u062e\u0648\u0627\u06c1\u0634\u0645\u0646\u062f \u0639\u0646\u0627\u0635\u0631 - \u06a9\u06cc \u062c\u0627\u0646\u0628 \u0633\u06d2\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IExample","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 23 10:45:32 +0000 2018","id":1065919270960402433,"id_str":"1065919270960402433","text":"\u0645\u06cc\u0631\u06d2 - \u0630\u06c1\u0646 \u0645\u06cc\u06ba \u0630\u0631\u0627 \u0633\u0627 \u0628\u06be\u06cc - \u0627\u0628\u06c1\u0627\u0645 \u0628\u0627\u0642\u06cc \u0646\u06c1\u06cc\u06ba - \u06a9\u06c1 \u062f\u0648\u0646\u0648\u06ba \u062d\u0645\u0644\u06d2 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 - \u06a9\u0648 \u062e\u0648\u0634\u062d\u0627\u0644\u06cc \u06a9\u06cc \u0688\u06af\u0631 - \u0633\u06d2 \u062f\u0648\u0631 \u0631\u06a9\u06be\u0646\u06d2 \u06a9\u06d2 - \u062e\u0648\u0627\u06c1\u0634\u0645\u0646\u062f \u0639\u0646\u0627\u0635\u0631 - \u06a9\u06cc \u062c\u2026 https:\/\/t.co\/tn9WjxD6Ub","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tn9WjxD6Ub","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065919270960402433","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122453931,"id_str":"122453931","name":"Imran - Khan","screen_name":"IExample","location":"Pakistan","description":"Prime - Minister of Pakistan","url":"https:\/\/t.co\/zwxvk5i5Xu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwxvk5i5Xu","expanded_url":"http:\/\/insaf.pk","display_url":"insaf.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8753744,"friends_count":19,"listed_count":8089,"created_at":"Fri - Mar 12 19:28:06 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5685,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CCAB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122453931\/1534522318","profile_link_color":"179C41","profile_sidebar_border_color":"CCCCCC","profile_sidebar_fill_color":"E2F5E2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1065919107080560641,"quoted_status_id_str":"1065919107080560641","quoted_status":{"created_at":"Fri - Nov 23 10:44:53 +0000 2018","id":1065919107080560641,"id_str":"1065919107080560641","text":"\u06a9\u0631\u0627\u0686\u06cc - \u0645\u06cc\u06ba \u0686\u06cc\u0646\u06cc \u0642\u0648\u0646\u0635\u0644 - \u062e\u0627\u0646\u06d2 \u0627\u0648\u0631 \u0627\u0648\u0631\u06a9\u0632\u0626\u06cc - \u0645\u06cc\u06ba \u06c1\u0648\u0646\u06d2 \u0648\u0627\u0644\u06d2 \u062f\u06c1\u0634\u062a - \u06af\u0631\u062f \u062d\u0645\u0644\u0648\u06ba \u06a9\u06cc \u0634\u062f\u06cc\u062f - \u0645\u0630\u0645\u062a \u06a9\u0631\u062a\u0627 \u06c1\u0648\u06ba\u06d4\u0645\u06cc\u0631\u06cc - \u062a\u0645\u0627\u0645 \u062f\u0639\u0627\u0626\u06cc\u06ba\/\u06c1\u0645\u062f\u0631\u062f\u06cc\u0627\u06ba\u2026 - https:\/\/t.co\/pkq8hsOTPX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pkq8hsOTPX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065919107080560641","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122453931,"id_str":"122453931","name":"Imran - Khan","screen_name":"IExample","location":"Pakistan","description":"Prime - Minister of Pakistan","url":"https:\/\/t.co\/zwxvk5i5Xu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwxvk5i5Xu","expanded_url":"http:\/\/insaf.pk","display_url":"insaf.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8753744,"friends_count":19,"listed_count":8089,"created_at":"Fri - Mar 12 19:28:06 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5685,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CCAB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122453931\/1534522318","profile_link_color":"179C41","profile_sidebar_border_color":"CCCCCC","profile_sidebar_fill_color":"E2F5E2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3591,"favorite_count":17480,"favorited":false,"retweeted":false,"lang":"ur"},"retweet_count":3524,"favorite_count":14138,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":true,"quoted_status_id":1065919107080560641,"quoted_status_id_str":"1065919107080560641","retweet_count":3524,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},{"created_at":"Fri - Nov 23 16:30:32 +0000 2018","id":1066006092021489664,"id_str":"1066006092021489664","text":"RT - @IExample: \u06a9\u0631\u0627\u0686\u06cc \u0645\u06cc\u06ba \u0686\u06cc\u0646\u06cc - \u0642\u0648\u0646\u0635\u0644 \u062e\u0627\u0646\u06d2 \u067e\u0631 \u0646\u0627\u06a9\u0627\u0645 - \u062d\u0645\u0644\u06c1 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 \u0627\u0648\u0631 - \u0686\u06cc\u0646 \u06a9\u06d2 \u0645\u0627\u0628\u06cc\u0646 \u0627\u0646 - \u063a\u06cc\u0631 \u0645\u0639\u0645\u0648\u0644\u06cc \u062a\u062c\u0627\u0631\u062a\u06cc - \u0645\u0639\u0627\u06c1\u062f\u0648\u06ba \u06a9\u0627 \u0631\u062f\u0639\u0645\u0644 - \u06c1\u06d2 \u062c\u0648 \u0686\u06cc\u0646 \u06a9\u06d2 \u06c1\u0645\u0627\u0631\u06d2\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IExample","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[3,16]}],"urls":[]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 23 10:47:33 +0000 2018","id":1065919778941005825,"id_str":"1065919778941005825","text":"\u06a9\u0631\u0627\u0686\u06cc - \u0645\u06cc\u06ba \u0686\u06cc\u0646\u06cc \u0642\u0648\u0646\u0635\u0644 - \u062e\u0627\u0646\u06d2 \u067e\u0631 \u0646\u0627\u06a9\u0627\u0645 \u062d\u0645\u0644\u06c1 - \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 \u0627\u0648\u0631 \u0686\u06cc\u0646 - \u06a9\u06d2 \u0645\u0627\u0628\u06cc\u0646 \u0627\u0646 \u063a\u06cc\u0631 - \u0645\u0639\u0645\u0648\u0644\u06cc \u062a\u062c\u0627\u0631\u062a\u06cc - \u0645\u0639\u0627\u06c1\u062f\u0648\u06ba \u06a9\u0627 \u0631\u062f\u0639\u0645\u0644 - \u06c1\u06d2 \u062c\u0648 \u0686\u06cc\u0646 \u06a9\u06d2\u2026 https:\/\/t.co\/WKhYVFObQb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WKhYVFObQb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065919778941005825","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ur","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122453931,"id_str":"122453931","name":"Imran - Khan","screen_name":"IExample","location":"Pakistan","description":"Prime - Minister of Pakistan","url":"https:\/\/t.co\/zwxvk5i5Xu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwxvk5i5Xu","expanded_url":"http:\/\/insaf.pk","display_url":"insaf.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8753744,"friends_count":19,"listed_count":8089,"created_at":"Fri - Mar 12 19:28:06 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5685,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CCAB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122453931\/1534522318","profile_link_color":"179C41","profile_sidebar_border_color":"CCCCCC","profile_sidebar_fill_color":"E2F5E2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5206,"favorite_count":28511,"favorited":false,"retweeted":false,"lang":"ur"},"is_quote_status":false,"retweet_count":5206,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},{"created_at":"Fri - Nov 23 00:34:39 +0000 2018","id":1065765537333080064,"id_str":"1065765537333080064","text":"rails\u306b\u3088\u308b\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306e\u30ab\u30b9\u30bf\u30de\u30fc\u30b5\u30dd\u30fc\u30c8\u30b7\u30b9\u30c6\u30e0\u3002EC\u3001\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u30aa\u30fc\u30c8\u30e1\u30fc\u30b7\u30e7\u30f3\u3068\u304b\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306e\u30b7\u30b9\u30c6\u30e0\u3042\u308b\u3051\u3069\u3001\u7121\u6599\u3068\u3044\u3046\u70b9\u4ee5\u5916\u3067\u306f\u3001\u306a\u304b\u306a\u304b\u72ec\u81ea\u62e1\u5f35\u3082\u96e3\u3057\u3044\u3057\u3001\u6d3b\u7528\u304c\u96e3\u3057\u3044\u3002\u3002\u30b5\u30fc\u30d0\u306e\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u3082\u4efb\u305b\u3089\u308c\u2026 - https:\/\/t.co\/EeUuZ4wDxj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EeUuZ4wDxj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065765537333080064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"ja","result_type":"recent"},"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,"user":{"id":14711726,"id_str":"14711726","name":"\u305f\u304c\u307f\u3064","screen_name":"tagackt","location":"\u4e0b\u753a - ,Tokyo, Japan","description":"\u9152\u98f2\u7cfb\u7537\u5b50\u3002\u98df\u3079\u6b69\u304d\u3001\u5bb6\u98f2\u307f\u3001\u98df\u6750\u63a2\u3057\u3001\u9152\u5c4b\u3081\u3050\u308a\u306a\u3069\u98f2\u98df\u30e1\u30a4\u30f3\u3002\u30d6\u30ed\u30b0\u306b\u66f8\u3044\u305f\u98f2\u98df\u5e97\u306f400\u5e97\u8217\u307b\u3069\u3002\r\n\u65e5\u672c\u91523800\u7a2e\u3001\u713c\u914e800\u7a2e\u306e\u4e00\u89a7\u304b\u3089\u691c\u7d22\u3057\u3001\u5473\u3001\u9999\u308a\u3001\u30e1\u30e2\u7b49\u306e\u8a55\u4fa1\u3092\u8a18\u9332\u3067\u304d\u308b\u30a2\u30d7\u30ea - \u9152\u697d \u3092\u30ea\u30ea\u30fc\u30b9\u3057\u307e\u3057\u305f\u3002Twitter\u9023\u643a\u5bfe\u5fdc\uff011\u4e07\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u9054\u6210 - http:\/\/t.co\/MPzqEon","url":"http:\/\/t.co\/WxNh0gzqJE","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/WxNh0gzqJE","expanded_url":"http:\/\/www.example.net\/blog\/","display_url":"example.net\/blog\/","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/MPzqEon","expanded_url":"http:\/\/bit.ly\/qWgJhu","display_url":"bit.ly\/qWgJhu","indices":[135,154]}]}},"protected":false,"followers_count":898,"friends_count":912,"listed_count":32,"created_at":"Fri - May 09 10:06:07 +0000 2008","favourites_count":3872,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20415,"lang":"ja","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\/544701031771164674\/9EszjZW4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544701031771164674\/9EszjZW4_normal.png","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"created_at":"Thu - Nov 22 19:39:50 +0000 2018","id":1065691345447211008,"id_str":"1065691345447211008","text":"@wrf42 - Hab ich schonmal bei Kunden zum Spielen gesehen, denen ich dann RT eingerichtet - habe ;-)\n\nBei Zammad warte i\u2026 https:\/\/t.co\/5sksNpRjSY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wrf42","name":"Falk - Stern","id":19840431,"id_str":"19840431","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/5sksNpRjSY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065691345447211008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1065690447354445826,"in_reply_to_status_id_str":"1065690447354445826","in_reply_to_user_id":19840431,"in_reply_to_user_id_str":"19840431","in_reply_to_screen_name":"wrf42","user":{"id":118674790,"id_str":"118674790","name":"Michael - Smith","screen_name":"example","location":"Somewhere, Germany","description":"A - taste of #austria in lovely #nuremberg. @example, @example, #lego, #drageekeksi, - #perryrhodan and more.","url":"https:\/\/t.co\/9bqAc15vHA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9bqAc15vHA","expanded_url":"https:\/\/example.com\/example\/atasteofexample","display_url":"example.com\/example\/atast\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1345,"friends_count":404,"listed_count":182,"created_at":"Mon - Mar 01 12:24:00 +0000 2010","favourites_count":29311,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41488,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/993875791921516544\/KxtPpRLJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/993875791921516544\/KxtPpRLJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118674790\/1530637123","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":true,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Thu - Nov 22 19:36:16 +0000 2018","id":1065690447354445826,"id_str":"1065690447354445826","text":"@example - Ich w\u00fcrde mir aktuell Zammad angucken.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"example","name":"Michael - Smith","id":118674790,"id_str":"118674790","indices":[0,9]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for - i\u039fS\u003c\/a\u003e","in_reply_to_status_id":1065689418353307648,"in_reply_to_status_id_str":"1065689418353307648","in_reply_to_user_id":118674790,"in_reply_to_user_id_str":"118674790","in_reply_to_screen_name":"example","user":{"id":19840431,"id_str":"19840431","name":"Falk - Stern","screen_name":"wrf42","location":"ZZ9 Plural Z Alpha, Third Rock from - the Central Star","description":"I \u2665 IP packets \u2022 @example_ort \u2022 - opinions are my own \u2022 DM7FS \u2022 https:\/\/t.co\/KuzUv395IN","url":"https:\/\/t.co\/e7or64Jxh7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/e7or64Jxh7","expanded_url":"http:\/\/pants.fourecks.de\/","display_url":"pants.fourecks.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/KuzUv395IN","expanded_url":"http:\/\/tools.ietf.org\/html\/rfc1925","display_url":"tools.ietf.org\/html\/rfc1925","indices":[62,85]}]}},"protected":false,"followers_count":584,"friends_count":485,"listed_count":21,"created_at":"Sun - Feb 01 00:58:25 +0000 2009","favourites_count":1543,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12886,"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\/608727351455809536\/JHaWzvF6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608727351455809536\/JHaWzvF6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19840431\/1499724219","profile_link_color":"33178F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Thu - Nov 22 17:16:54 +0000 2018","id":1065655371375747075,"id_str":"1065655371375747075","text":"@idreesexample - @IExample Haram Kha Kha K Aisa Hota Hy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idreesexample","name":"Imran - Khan","id":705679307683864576,"id_str":"705679307683864576","indices":[0,15]},{"screen_name":"IExample","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[16,29]}],"urls":[]},"metadata":{"iso_language_code":"hi","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1065643822095446016,"in_reply_to_status_id_str":"1065643822095446016","in_reply_to_user_id":705679307683864576,"in_reply_to_user_id_str":"705679307683864576","in_reply_to_screen_name":"idreesexample","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},{"created_at":"Thu - Nov 22 17:03:35 +0000 2018","id":1065652021011931137,"id_str":"1065652021011931137","text":"Hallo - Berliner bubble.\nKennt jemand von euch die Zammad Leute?\nLaut Impressum - sitzen die mit im @clubdiscordia Geb\u00e4ude ... ^^","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"clubdiscordia","name":"CCC - Berlin","id":2434248872,"id_str":"2434248872","indices":[96,110]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":737371663,"id_str":"737371663","name":"Thies - M\u00fcller","screen_name":"_td00_","location":"Zug zwischen BS - WOB - B - - HH","description":"nerd, hacker, ccc, punk, veggie, antifa, @33logistic, - @TundTeskalation, @cymoshow | Threema: 3JXMZUEJ |","url":"https:\/\/t.co\/pFa1ZF51pM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pFa1ZF51pM","expanded_url":"https:\/\/td00.de","display_url":"td00.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1336,"friends_count":941,"listed_count":54,"created_at":"Sat - Aug 04 20:33:10 +0000 2012","favourites_count":23290,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30199,"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\/862655866327240704\/WtPq3dQv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/862655866327240704\/WtPq3dQv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/737371663\/1470086891","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Thu - Nov 22 07:16:13 +0000 2018","id":1065504204805033984,"id_str":"1065504204805033984","text":"@tamexample - But over at Mastodon we don''t have a Zammad integration for all our LOC Members - ;)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tamexample","name":"(\u0e07 - \u0e37\u25bf \u0e37)\u0e27","id":354796681,"id_str":"354796681","indices":[0,8]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1065502326222479360,"in_reply_to_status_id_str":"1065502326222479360","in_reply_to_user_id":354796681,"in_reply_to_user_id_str":"354796681","in_reply_to_screen_name":"tamexample","user":{"id":811173206887460868,"id_str":"811173206887460868","name":"CCC - Event Logistics","screen_name":"33logistic","location":"Fair Leipzig Hall - H.. I meen 4","description":"Logistics for Chaos Events. Currently planning - an awesome #35c3 in Leipzig 35c3@example.de","url":"https:\/\/t.co\/g2YFZuZZsj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2YFZuZZsj","expanded_url":"https:\/\/example.de","display_url":"example.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2198,"friends_count":56,"listed_count":49,"created_at":"Tue - Dec 20 11:35:38 +0000 2016","favourites_count":170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":370,"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\/1064967265177792513\/muZEe7g0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064967265177792513\/muZEe7g0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811173206887460868\/1542742947","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.084,"max_id":1069265077583400960,"max_id_str":"1069265077583400960","query":"zammad","refresh_url":"?since_id=1069265077583400960&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + string: '{"statuses":[{"created_at":"Thu Mar 12 15:37:08 +0000 2020","id":1238126889941729283,"id_str":"1238126889941729283","text":"Great + news: @zammadhq, the ticketing software that powers \nour CDR Link platform + for human rights responders, just\u2026 https:\/\/t.co\/od91V1jiEX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[12,21]}],"urls":[{"url":"https:\/\/t.co\/od91V1jiEX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1238126889941729283","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1030561942610563072,"id_str":"1030561942610563072","name":"Center + for Digital Resilience","screen_name":"cdr_tech","location":"","description":"Building + resilient systems to keep civil society safe online. \n\nUpdates on CDR Link, + our secure, mobile-friendly helpdesk platform and other CDR tech.","url":"https:\/\/t.co\/WWaNZ5aJhI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WWaNZ5aJhI","expanded_url":"https:\/\/digiresilience.org","display_url":"digiresilience.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":24,"listed_count":2,"created_at":"Fri + Aug 17 21:08:08 +0000 2018","favourites_count":2,"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\/1173614726431105024\/8eDxeepU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1173614726431105024\/8eDxeepU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1030561942610563072\/1568646531","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"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"}],"search_metadata":{"completed_in":0.056,"max_id":1238126889941729283,"max_id_str":"1238126889941729283","next_results":"?max_id=1234843595317731328&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1238126889941729283&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT + recorded_at: Thu, 12 Mar 2020 17:42:09 GMT - request: method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:52 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg + uri: http://pbs.twimg.com/profile_images/1173614726431105024/8eDxeepU_bigger.jpg body: encoding: US-ASCII string: '' @@ -434,2934 +114,41 @@ http_interactions: - "*" Access-Control-Expose-Headers: - Content-Length + Age: + - '1302' Cache-Control: - max-age=604800, must-revalidate Content-Type: - image/jpeg Date: - - Mon, 03 Dec 2018 00:10:52 GMT + - Thu, 12 Mar 2020 17:42:09 GMT Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT + - Mon, 16 Sep 2019 15:06:50 GMT Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:52 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1068958852887076864.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="83003a1356235c21998dbe47bd20e034", - oauth_signature="KtBt4mbxUM9pQeEHXi%2BywugYuqk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795853", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2355' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:53 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585310255274; Expires=Wed, 02 Dec 2020 00:10:53 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_tve4fbtcMRfmm6dmnmXedg=="; Expires=Wed, 02 Dec 2020 - 00:10:53 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK + - ECS (tpe/68A8) Strict-Transport-Security: - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 0aca1694790d2c9d90f420c87ceeb2e4 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '899' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '143' - X-Transaction: - - 0050ed090033b705 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Sat Dec 01 20:03:45 +0000 2018","id":1068958852887076864,"id_str":"1068958852887076864","text":"@Example1 - You really loved him that you are so jealous of his new wife and you never - stop discussing him on twitter. Aww","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Example1","name":"Reham - Khan","id":298959564,"id_str":"298959564","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","in_reply_to_status_id":1068949846399348736,"in_reply_to_status_id_str":"1068949846399348736","in_reply_to_user_id":298959564,"in_reply_to_user_id_str":"298959564","in_reply_to_screen_name":"Example1","user":{"id":2176345957,"id_str":"2176345957","name":"Zarghuna - Bukhari","screen_name":"pexample","location":"Karachi.","description":"Clinical - Dietitian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":656,"friends_count":566,"listed_count":0,"created_at":"Tue - Nov 05 15:57:29 +0000 2013","favourites_count":3792,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2112,"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\/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\/1066314737775009794\/Fc_8OEzy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1066314737775009794\/Fc_8OEzy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2176345957\/1529427197","profile_link_color":"1B95E0","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":357,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Karachi.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:53 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1066314737775009794/Fc_8OEzy_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Last-Modified: - - Sat, 24 Nov 2018 12:54:59 GMT - Server: - - ECS (fcn/40DB) Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1066314737775009794 + - profile_images profile_images/bucket/0 profile_images/1173614726431105024 X-Cache: - MISS X-Connection-Hash: - - d1053032a71c65d102c5cc884127ef48 + - fc60e55614d1dc4711d4c8a198d7ae1d X-Content-Type-Options: - nosniff X-Response-Time: - - '191' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Karachi.&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1068949846399348736.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bb5275ca035610773ca6172601e35be6", - oauth_signature="yk2RDPjsEnljxqdWfmCOjS01ylg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795854", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2907' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:53 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:53 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585387409625; Max-Age=63072000; Expires=Wed, 2 Dec 2020 - 00:10:53 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_knKHpiHKorVFVQc/tXSXPg=="; Max-Age=63072000; Expires=Wed, - 2 Dec 2020 00:10:53 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - a72aa0752b65d266b89d5305c790ae2c - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '898' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '136' - X-Transaction: - - '0086ab1e00028706' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Sat Dec 01 19:27:58 +0000 2018","id":1068949846399348736,"id_str":"1068949846399348736","text":"Ok - peeps it''s bad enough that PTI troll me but now I am getting criticism for - marrying a man who can give a chicken\u2026 https:\/\/t.co\/xitRHiP15a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xitRHiP15a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068949846399348736","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,"user":{"id":298959564,"id_str":"298959564","name":"Reham - Khan","screen_name":"Example1","location":"Pakistan","description":"Contact - @BilalAzmat7 \n00923358100642\n\n\nThe views expressed here are mine and mine - alone. Devoted to improving lives \nhttps:\/\/t.co\/uPjPh2Na5n","url":"https:\/\/t.co\/YcOsNIC1KJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YcOsNIC1KJ","expanded_url":"http:\/\/RehamKhanofficial.com","display_url":"RehamKhanofficial.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/uPjPh2Na5n","expanded_url":"https:\/\/m.facebook.com\/OfficialRehamKhan\/","display_url":"m.facebook.com\/OfficialRehamK\u2026","indices":[117,140]}]}},"protected":false,"followers_count":2100022,"friends_count":755,"listed_count":843,"created_at":"Sun - May 15 07:51:06 +0000 2011","favourites_count":5369,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":62211,"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":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1055415764252065792\/pYl_QxzD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1055415764252065792\/pYl_QxzD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298959564\/1540465552","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"280C52","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":399,"favorite_count":3343,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1055415764252065792/pYl_QxzD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Last-Modified: - - Thu, 25 Oct 2018 11:06:21 GMT - Server: - - ECS (fcn/41AB) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1055415764252065792 - X-Cache: - - HIT - X-Connection-Hash: - - 808c63dfece900392e65f5f9b1cad8bf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '140' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:54 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAFABAACwAdAB5hY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAEBQADBgIBB//EABkBAAIDAQAAAAAAAAAAAAAAAAMEAAECBf/aAAwDAQACEAMQAAAB+Md8vISnisqM3pjllibLHFVFTS+iJNCxqtOEkwgo6QmnesLAXguSUpnKwE0UXsCNhMqC2Oc6Tk1j6oyr1npBRo83slexjeQtJfPoWR/uhis1eVZii1KcLx+YLEGp4WL5F3VqHazr5x2jY516tDp0lJJaP//EACYQAAICAgICAQMFAAAAAAAAAAIDAQQABRETEhQQFSM0ICIxMjP/2gAIAQEAAQUCwRkirU5YVgkDOg5LZsLlg0+wXLJTPiMV1rCnZZWdsBDr1sEF2ImcrzMU3Vjq45RpZlZYdFyqiu2+vtbT+3H7o2FGG8WGdTPFrp2FiLIZZ7q4qYHC/bXBku7YsrlZ2PsvtMqwiGJ4rsqA3wLNjZhrLHDFCIFXpcqEvUVNmUrITWc2bPtnW603eYy9CBCiNv15sythNhM3XJMdm5J112eomOR6fkMT9ZRlW1IVjF8ibfVXxK82pDFGhC26kArJrLYS2TZWGuyuzqazxUPisnPJMoeckKTlYt8cCFc2ndzPiu80zUVWsMMXxltPWa1UW4Yis7Vsnfpj+dV+NsPydN/Zv+nz/8QAJxEAAgIBAwIGAwEAAAAAAAAAAQIAAxEEEjETISJBUdHw8QUQQoH/2gAIAQMBAT8Bqr3mb6+jhR3hY9IV485bUrIGrE4nUWtNhTvEsHdv6hd9+4nBjKN+xG8MtQt4s5ltjb2VvT6hYlgPOayrSigdMjPzmU2EKUH3Px1oqUhiBKgbque4+f7BpmdGdjxN4csSOZbpywWvOMTVXB2CrwIjsh3LNAF1LbMYPqPaacVjVmnb29pqdUWJVRgfr//EACIRAAIBAwQCAwAAAAAAAAAAAAABAhESIQMQMUETIiNRYv/aAAgBAgEBPwEt7OilNoxT7LKvAoIf6G8mnk0409iDm5OpP5OWTUHwyPOeDyXOiK2ahqO2VUVby9l9Dk+Rbf/EADMQAAEEAAMFBQcEAwAAAAAAAAEAAgMREiExBBMyQVEiI0JhcRAgUpHR4fAUM2KBQ3LB/9oACAEBAAY/AlhaLJUgcf2xZCDYo/DnaZmNHa+icfNRlrqdJw3ojG/Ue4GRPO+dxH/gWNpq8neiikjAoji6puWeF2v+pVgFOt/aPADy6kIR7VHW8Ftz0RY8UfY+aVpLeGxyUJZNvInZl4Rmhb2Xcl+km/y5t/iVK95B8II550jGw4RLkTWgRNUapjfhHn5oOkcc+blFTR3TcF3mR5+zdWQx2dLC5zoj1GY+SDot1KNRh/LQM0TotosXXi+imEjsFkSf3afBAwEjjN0Gj4bUO8a17xf7enzQfOwhp8Id2nfZSdzI6wQztaLhTHkQ5O4aTtp3Z2e3V2RYTw6SF2d4zeILfN2nesbkQ5l1ajdOwlwOrcmn8pDeGIscMTGEa9S4q/0cFAZEGx+eq70tZ/LAmuecTAfmuBiiMON9tGJx0tbt0o2eCXNpdln5IwRmZ2dEyPq/6CpzafWhcS77IbUbYCaojmmSNiblkHYAbGv1QfuYyOrOyjLBs0bjfERbmev1URpu8Js5LgCk2dzWljs9MwVC90hf8AuyExjcI2jUuHg+63zs+Y8ytkgaeBtu9SnRyda8wpRiMsp4ezlXVYmOIVPgZv3E9qs/YH1Y5jqt9stOjeLLfqg4lzmni6ouEXdQmosWp/ChiNm7Ki8zZQ3seKMDttblZ6okx0eTeQV8uXtNZg6hYXzbnpkjEQXRHJtJjcTarVR95nG3hHiKEu0yk58HMrA1rYoryY33iipPRO9fc//EACYQAQACAgEDBAIDAQAAAAAAAAEAESFBMVFhgRBxkaGx0SDB8OH/2gAIAQEAAT8hhZGMAZZUSw5NcnvKlZyLKwAUZkXNKYoKVjpB4bo5HpcHwHpps+fUK0SkQVaG9kXqpS6rmOQKCHxvonFdo2LLZwgMoByhxBYA01XwHXzB8RW5SwcPs6+hLRQpydxYITpOz3lid9g10fP5siEKsET23zMVU6MEY/co1yValywQKv069W1dXxDpbiWvt2lF5oZhb9FJWRg5SMqDwfyQQO7ZQb7GINY8hR4PL6hcNExVCVrKRvxK2DoBvvcDrmBq0K5zfESk/NotLf6TcXgMkxZWZ3sUbUvpYpiplAJfslKhFo/RMKvY9GL69oOTe1oI1TboMqTJcW+gUbv/AJAwDifhmi984ivpzgZJq6hvHaUV2ueCf7v+T+nEVCL51iqjsyx0nkBL5D5YwVnqlvha889pQuJXMeQd8fcI0KuAl2rWniDjO5lPZ14SOw0EXhAPb+0DHGJxDXoGLwxbaVQCw4D2CtTPqlFaHgvfdqGZ2TL/AJxzHDuMTi9b8VEbXpZy2J/twXJC1ztmWLBizZE2X7DSsPpaX1hCXrQtft2l1r2Lxl1fHOGrp+zM/ime8FDaHU4/c2Vy37e/mY/DNmDqsbXBXq4wql3FyUuTeAjEpkGeZYlzgZQaKxtW68sOTFqvgrRDnPIeD9/x4J+b/Pjn/9oADAMBAAIAAwAAABCsZ3HVI+5SX0kgB4oJvKvc3lTz/8QAIBEBAAEEAwADAQAAAAAAAAAAAREAITFBUWFxgZHREP/aAAgBAwEBPxCQlgM/h3WmjlSVJtDq2bap2QE94Kim2uzYcRuFcYye0ioc0mYAVS4zPyJBzS0smTju3PFFUoWXZOZ3v5pFysZZD5OqgSEyMdQTjdJGmzHMApz9WlpxDAjRcWNat3Vx57ZiLwZvi9r4tUHAMrOhg559mpHwyGcmL8WtnmneQxGwkR6HGs9UIKRZzME61GHnNatkW02x9UtBDsTte+My6AmmQk4GInlfaNpCbqfIQymTY4XnqgMVO5Uyt6n7NTuqzdV9XXVj+f/EACURAQACAQQABgMBAAAAAAAAAAEAESExQVHwEHGBscHRYZGh4f/aAAgBAgEBPxALalkymKPdpbV4Wd0du/f7mI4PDv5R1vHz3tQK29NpYriwNXuunvBNmi9c/efaLegONf8AOsYDFXB/caxDY8ozBwHZNjj8/LMAHAB6dZTY+K29ZY3GIJTLDVwxpdzL1l8P/8QAJhABAAIDAQABBAICAwAAAAAAAREhADFBUWEQcZGhgbHB8NHh8f/aAAgBAQABPxDElxbk+DAQpJW6F7AaJusjMQnFtzeiIwzACgBUlic8y9NYRKJexhWWQfVo0134xJb41k8FJ8n1FlK6wTvpwgNC1FSu5rA/wHE6i9PR4mJpImWbKDoS+HymBdRWw34etZmP5YdEflgdDZRf8MawhQQLuP5sciKOwmyweifR+cBY3GPaI/nGWMCSSIOBunuEOiByhYp2dvJnJhuI7bIAfFJ2srQ0NBAhyoJsucRGLF2YfLkIthMeGS0IPZ6baSLhau8qE2huHWgjeGwNBAoBce/ZyMiVoIoICsl3gB8LMs7N0a1P2wk3i/pNMvYL7OWiaEuSBLZU+iY3j1hm6I6LTIOL0DEx/KpA6CAwpJ2WmNUt73AbAAoCPsbK1nXvKRB4CFEHcnQK4kwIekdz/ccPPxM9E4CUvpg5eAfUSIHGxfjCYbwLWIBij4/nJmZdFhAnk+UCrwYKmiNp5hUmFGKw2RX1/AQCJGYKhjAxkkxXDdbF9y2HJ4EHdDwMjLIZABkNpiZuM/0nAsg6m4zEXWmXDe/PSkO7bIN/jIJhH6PKzoKZNswjxAB4ai74Mf8ATWMBCCAKdGlY06zuUGgs0DT88nc0IXdIVfKTI7SSMhkEBNAXpjFWOW3qSNra1n/uH/GRGVKi7JGDj98Huy7hMp4y5dsZixelLdAgWqR7OkVF3O6K/g7mmjlFH3QA+MHryCeCE3DNd8YwcC6lKNx5UOW78EhTY+j5rEpjEFRo0XyJgyflyLA2HqXZPHx4xiaIAKDMBIlPdBhsjCCEoNzLvbj1BUed8E9HldMkn3QFAv7X85LohQxLEfx+2NXviFDXJNQ9l7TmNgJH1byuQIgijv8A1wyfpQyWWh6ePz/ZkhbUJPRD+zK17ZUFX2SWd5OlEtmFbTZWBCYwdIUAROicXiA1A/IFK8wOBoz7636t39XHP2DP1cfrmfvf6z99/f0Pp//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Traverse%20City,%20MI&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/982030415094575107/uoPHSILZ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Last-Modified: - - Thu, 05 Apr 2018 22:59:10 GMT - Server: - - ECS (fcn/41D8) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/982030415094575107 - X-Cache: - - MISS - X-Connection-Hash: - - a8f29c6a5aeec40b4efbc68ef5c3c6d8 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '145' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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RkSsDA713PxHN15YbuGXHPN4jgqOHMJNdZqawBmugSfS/wATDITyMfFek0y10FbYiGSFnqKxBBRQKEYA4dTOjBMlq1uFO9WPMEdGge8zwtqO1ZjdexCvmVwDqp0KrqbT+cg3VpZqo29jHrM222GEKsoDJ2ce00+jKNchz9Y1JFcRV16GW3BEJyUA66zWzGDJ6zV4wLhOadvh3na/TpHKUnlXRDbPoRA1zhSDcFY1bDuuYRVeWWVWG9tejZpDuktbFtKGHmWcAyCZek1Xah2hhZ65jFkC0BnfLxtiW9YuMqIaNprq7nlFG8COI1a2JXNecD+o1I9InXLCs1SVZWnNvpUowA1QQ1gxPSYQVprxAkVNWcvk2u5mEurpo73ciRsFTt0OPlEr20AYZUEXlHCdjcFWGI55loeo4io0TeVdJ7wYQM+0nvfyz2T5J9hwT7Xlmv4mt9cT3pNaanf/AD//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Traverse%20City,%20MI&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:54 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1062817263106039814.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="756b2ebc88106059e7afdec3979455ed", - oauth_signature="KYRdmzJiODGS%2BYqqmYUPhwq2Fwc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2598' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585507600301; Expires=Wed, 02 Dec 2020 00:10:55 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_8guDTBlmE5OSoyD5jx8HdQ=="; Expires=Wed, 02 Dec 2020 - 00:10:55 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b50ff4d156e5021b098336827d4ee458 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '897' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '141' - X-Transaction: - - 00de0542001e5721 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Wed Nov 14 21:19:16 +0000 2018","id":1062817263106039814,"id_str":"1062817263106039814","text":"@AExample - @TGExample You need to have more followers bro","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AExample","name":"ahad","id":2320914337,"id_str":"2320914337","indices":[0,8]},{"screen_name":"TGExample","name":"Twitter - Gaming","id":3873936134,"id_str":"3873936134","indices":[9,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1062799096749031424,"in_reply_to_status_id_str":"1062799096749031424","in_reply_to_user_id":2320914337,"in_reply_to_user_id_str":"2320914337","in_reply_to_screen_name":"AExample","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa","screen_name":"mexample","location":"Multan, Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.example.com\/zammad.example","display_url":"facebook.com\/zammad.example","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1442,"friends_count":1432,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":2003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1745,"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\/1032216233339445248\/sE3rElf-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032216233339445248\/sE3rElf-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:55 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1062799096749031424.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="de1e719ccd92c862ad99062c09332301", - oauth_signature="ueto3kSV%2BcRxu%2FXOod5N4CqW%2BNk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2596' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585547654686; Expires=Wed, 02 Dec 2020 00:10:55 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_vE3KYlQSKbNBX+m+Em8D5g=="; Expires=Wed, 02 Dec 2020 - 00:10:55 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 193e4e272a3ec2647220df5535a8a098 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '896' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '153' - X-Transaction: - - '0029f10c008a780f' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Wed Nov 14 20:07:05 +0000 2018","id":1062799096749031424,"id_str":"1062799096749031424","text":"@TGExample - can u guys verify me please","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TGExample","name":"Twitter - Gaming","id":3873936134,"id_str":"3873936134","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1062798995955703808,"in_reply_to_status_id_str":"1062798995955703808","in_reply_to_user_id":3873936134,"in_reply_to_user_id_str":"3873936134","in_reply_to_screen_name":"TGExample","user":{"id":2320914337,"id_str":"2320914337","name":"ahad","screen_name":"AExample","location":"LA - \u2022 Snap: a.had","description":"\u2022 Broadcaster, Genius, Rated #1 in - female focus groups \u2022 Powered by @geexample \u2022 @hexample \u2022 - Ahad@example.com","url":"https:\/\/t.co\/eA5JmgDflb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eA5JmgDflb","expanded_url":"http:\/\/twitch.tv\/ahad","display_url":"twitch.tv\/ahad","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3189,"friends_count":836,"listed_count":58,"created_at":"Fri - Jan 31 14:48:00 +0000 2014","favourites_count":28259,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":69735,"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\/1069123511833178112\/V3XTG_GW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069123511833178112\/V3XTG_GW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320914337\/1504212204","profile_link_color":"981CEB","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=LA%20%E2%80%A2%20Snap:%20a.had&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1069123511833178112/V3XTG_GW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Last-Modified: - - Sun, 02 Dec 2018 06:56:03 GMT - Server: - - ECS (fcn/40F9) - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1069123511833178112 - X-Cache: - - MISS - X-Connection-Hash: - - 2bacb280b040a042cb3d27f7abbe8427 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '135' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=LA%20%E2%80%A2%20Snap:%20a.had&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:55 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1062798995955703808.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4b3ceecc83d55c1b720580fb1e3d36db", - oauth_signature="sYaGT3aj%2BUSwTMuTWouWuQti3BQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795856", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2476' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:56 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585614243876; Expires=Wed, 02 Dec 2020 00:10:56 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_lM+inVTV113DsTcJA/sQmg=="; Expires=Wed, 02 Dec 2020 - 00:10:56 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - d8daee4172a3c150ee31a5e601e50889 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '895' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '141' - X-Transaction: - - 000f408d00289bc7 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Wed Nov 14 20:06:41 +0000 2018","id":1062798995955703808,"id_str":"1062798995955703808","text":"There - were some epic gaming conversations on Twitter this year, but we need your - help picking the best one!\n\nVote a\u2026 https:\/\/t.co\/1eyRCBiWzg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1eyRCBiWzg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1062798995955703808","display_url":"twitter.com\/i\/web\/status\/1\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,"user":{"id":3873936134,"id_str":"3873936134","name":"Twitter - Gaming","screen_name":"TGExample","location":"","description":"Tweet, - game, repeat.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":841546,"friends_count":1056,"listed_count":1725,"created_at":"Mon - Oct 12 22:08:01 +0000 2015","favourites_count":6538,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":4442,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1013681179025813504\/_NywdWqj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013681179025813504\/_NywdWqj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3873936134\/1529345989","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3950,"favorite_count":33354,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1013681179025813504/_NywdWqj_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Last-Modified: - - Mon, 02 Jul 2018 07:08:01 GMT - Server: - - ECS (fcn/41A4) - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1013681179025813504 - X-Cache: - - HIT - X-Connection-Hash: - - 1a24c50309f9ea89af5f0c4203e04ef0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '133' - Content-Length: - - '2083' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:56 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:56 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1068124600951803905.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9778307d17972ae3edc5b5d2a5530bb4", - oauth_signature="qf8Acv3oYLzER%2BF53HL%2F7xQfbvM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2990' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585701455131; Expires=Wed, 02 Dec 2020 00:10:57 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_LuEj3Vd26x60T6JSdjPcdA=="; Expires=Wed, 02 Dec 2020 - 00:10:57 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - aa970f6efb385fda115cc602701e2fb8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '894' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '140' - X-Transaction: - - '009ecb20005a891e' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 29 12:48:44 +0000 2018","id":1068124600951803905,"id_str":"1068124600951803905","text":"\u062d\u06a9\u0648\u0645\u062a - \u06a9\u06d2 \u0627\u0628 \u062a\u06a9 \u06a9\u06d2 \u0633\u0648 \u062f\u0646 - \u201c \u06a9\u06be\u0627\u06cc\u0627 \u067e\u06cc\u0627 \u06a9\u0686\u06be - \u0646\u06c1\u06cc\u06ba\u060c \u06af\u0644\u0627\u0633 \u062a\u0648\u0691\u0627 \u0628\u0627\u0631\u06c1 - \u0622\u0646\u06d2 \u201c \u06a9\u06d2 \u0633\u0648\u0627 \u06a9\u0686\u06be - \u0646\u06c1\u06cc\u06ba- \n\n\u062d\u06a9\u0648\u0645\u062a \u06a9\u06d2 - \u067e\u0627\u0633 \u0646\u06c1 \u0648\u0698\u0646 \u06be\u06d2 \u0646\u0627 - \u0627\u2026 https:\/\/t.co\/TpzlQvLp9a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TpzlQvLp9a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068124600951803905","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":1068124597814525952,"in_reply_to_status_id_str":"1068124597814525952","in_reply_to_user_id":497658491,"in_reply_to_user_id_str":"497658491","in_reply_to_screen_name":"example_org","user":{"id":497658491,"id_str":"497658491","name":"Example(N)","screen_name":"example_org","location":"Pakistan","description":"Official - Twitter account of Pakistan Muslim League (Nawaz)","url":"https:\/\/t.co\/nCK2EmNWqL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nCK2EmNWqL","expanded_url":"http:\/\/www.example.org","display_url":"example.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1047224,"friends_count":130,"listed_count":463,"created_at":"Mon - Feb 20 06:59:13 +0000 2012","favourites_count":1252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":31776,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0E6121","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1053235251139543040\/W4inys7x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053235251139543040\/W4inys7x_normal.jpg","profile_link_color":"10570C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":80,"favorited":false,"retweeted":false,"lang":"ur"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1053235251139543040/W4inys7x_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Last-Modified: - - Fri, 19 Oct 2018 10:41:46 GMT - Server: - - ECS (fcn/40AD) - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1053235251139543040 - X-Cache: - - HIT - X-Connection-Hash: - - 5de825e58409ca5545855a733e3d3777 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '130' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:57 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1068124597814525952.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7ff1412c085625c63956f13fee4a0066", - oauth_signature="XTJJazMUukMF7V0QJysnt0RIbV0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2941' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379585750194787; Expires=Wed, 02 Dec 2020 00:10:57 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_6qvsKHjK1l3l2N5Iq7SYkA=="; Expires=Wed, 02 Dec 2020 - 00:10:57 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e07d8c42c796f07bada8a5fa5770c0a8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '893' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '149' - X-Transaction: - - 00176cd9006e0072 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 29 12:48:43 +0000 2018","id":1068124597814525952,"id_str":"1068124597814525952","text":"\u062d\u06a9\u0648\u0645\u062a - \u06a9\u06d2 \u0627\u0628\u062a\u062f\u0627\u0626\u06cc 100 \u062f\u0646 \u06a9\u06cc - \u062a\u0642\u0631\u06cc\u0628 \u0645\u06cc\u06ba \u0627\u06cc\u06a9 \u0628\u0627\u0631 - \u067e\u06be\u0631 \u201c \u06cc\u06c1 \u06a9\u0631\u06cc\u06ba \u06af\u06d2\u060c - \u0648\u06c1 \u06a9\u0631\u06cc\u06ba \u06af\u06d2 \u201c \u06a9\u0627 \u062e\u06cc\u0627\u0644\u06cc - \u067e\u0644\u0627\u0624 \u067e\u06a9\u0627\u06cc\u0627 \u06af\u06cc\u0627 - - \n\n\u0634\u06cc\u062e \u0686\u0644\u06cc \u062d\u06a9\u0648\u2026 https:\/\/t.co\/xSMOueeW3L","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xSMOueeW3L","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068124597814525952","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,"user":{"id":497658491,"id_str":"497658491","name":"Example(N)","screen_name":"example_org","location":"Pakistan","description":"Official - Twitter account of Pakistan Muslim League (Nawaz)","url":"https:\/\/t.co\/nCK2EmNWqL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nCK2EmNWqL","expanded_url":"http:\/\/www.example.org","display_url":"example.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1047224,"friends_count":130,"listed_count":463,"created_at":"Mon - Feb 20 06:59:13 +0000 2012","favourites_count":1252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":31776,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0E6121","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1053235251139543040\/W4inys7x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1053235251139543040\/W4inys7x_normal.jpg","profile_link_color":"10570C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":235,"favorited":false,"retweeted":false,"lang":"ur"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1053235251139543040/W4inys7x_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Last-Modified: - - Fri, 19 Oct 2018 10:41:46 GMT - Server: - - ECS (fcn/40AD) - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/1053235251139543040 - X-Cache: - - HIT - X-Connection-Hash: - - 5de825e58409ca5545855a733e3d3777 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '130' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:57 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:58 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:58 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:58 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:10:58 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/832141531255623681/D-mNs8yL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:58 GMT - Last-Modified: - - Thu, 16 Feb 2017 08:14:16 GMT - Server: - - ECS (fcn/40FB) - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/832141531255623681 - X-Cache: - - MISS - X-Connection-Hash: - - b367a765c588266efba85ef51055c42f - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '262' + - '112' Content-Length: - '2617' body: encoding: ASCII-8BIT string: !binary |- - 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EbbgWC4ncwgEu34f/9oADAMBAAIAAwAAABDzX/zzz99bzw/TzexP9367zzzz/8QAJREBAAEDAwQBBQAAAAAAAAAAAREAITFRgaEgccHRQRBhkbHh/9oACAEDAQE/EKIqwj9tYJ0Fmb8x4pMkcH7Px2Xe2DUkIwnnw7a/UhCTNtj+18F3XPyX4plF9okvbR0jKYuA2xmxGKiCpVZ39Z4oyFe1uX1RuTHVu+uKcpK9X//EACURAQABAwMDBAMAAAAAAAAAAAERACExQXGhUWGRECDR8IGxwf/aAAgBAgEBPxCmfUy2zBl75xRkv5+98exYuj+i/s8UzAno1O5ruG5fLATIkj949YmBEytm4LzhE7lGGNlnw25q6Waw2v26zrH4vkAxNdRYg0u2OWhUy1QsusLba9ijDG5l8FuaSxNwfPNQBgpBz7f/xAAoEAEAAQMCBgICAwEAAAAAAAABEQAhMVFhEEFxgZGxIKHB8DBA0fH/2gAIAQEAAT8Q4iOE/hYioAlanbTCy2kK0mnOilOInsMvWTegB5IyPc+Yn7wUfmgTwsdqFspkP+b3ojfCGV5jWnXDRaI6clgZu3e2/wAtuz6At9pWDwh9qZ5T9Z/U1IhoMz5OyE7JVlQsHk6CBs/G/Gwerd+KXMCVbiZZGJo4BpT4XParNMjX9Jg/U0lScCweY5My510UM8VglpPyvuaN3wDvRQgADkFIdJyab/SG/wATslYZefvoXwtPwDgaraItNrQ1ijkubULamMkkPfiivYVh7o4jFt2J7t/HGz6AMumTU6aW5nh9VPS3JHpMBp5SBtpkwgxn1xIXMaQz7ogFEItjeFcku2T9HurrM5vvh+5rJRzQF75+QhBTDGP6f//ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== http_version: - recorded_at: Mon, 03 Dec 2018 00:10:59 GMT + recorded_at: Thu, 12 Mar 2020 17:42:09 GMT - request: method: get - uri: http://pbs.twimg.com/profile_images/915014575/zefanjas_new_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Mon, 03 Dec 2018 00:10:59 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (fcn/4192) - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/915014575 - X-Cache: - - MISS - X-Connection-Hash: - - 02c8d274cef9eb9f5d1a5e81be3ff498 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '379' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - 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TnHF93be/nPNsiAJiPWUXQbvVjZ7q2ob0jq0DWkd2oa0Dm1DWoe2Ia1D25DWoW1I61AT0vYnA9tLjcRf8xJuU1opidc5ERAYYBGY2+xG3WlKjKYGzBhV5oE3afXFQdu6BFwxnmUB+AUws+2ZVsgDjqty1RQzAvB/wAt6058f2lpKtvgvAM9092YXTWQVq3oJeAK4qO9xTkkqrgZ8W+HEYjXAcfJjOFlHVbkkQg74gEDxjjjzstGAYgPxgKeBv3cz+lboC05Yu4TbuxM3k22o2tNJ+YNAj3Ry+PldpgRQBXgK+EZgMqfUwsLE83FSL5i/jPSOUHSytUjtS8AVoAT0AVmax8W3FLAlD6xAAzgF/CvweBTIaYeIhfHngVW5yuLuBzGORVVcIxwAPgEcI7asMpDZ7K7dQkXEvucicBz4icLJopXF+Yzinf3fpYItTcP0fpyekZDQE8eIlIGhBFKWjjao7xg1v0KxCkyqMt3wpv1stofFieOpwv8PVHtnw2ykZRYAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTAtMDUtMjBUMDc6NDE6NDArMDA6MDA27VKsAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDEwLTA1LTIwVDA3OjQxOjQwKzAwOjAwR7DqEAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAASUVORK5CYIIgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Porto%20Velho,%20Brasil&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:59 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/932827443404197888/kFWnZpm2_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:10:59 GMT - Last-Modified: - - Tue, 21 Nov 2017 04:24:08 GMT - Server: - - ECS (fcn/41A0) - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/932827443404197888 - X-Cache: - - HIT - X-Connection-Hash: - - cfe326e3b2e846e02b1c51666c7d483a - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '282' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Porto%20Velho,%20Brasil&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:10:59 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:00 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/851468284230848517/HAmK9OTy_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Md5: - - UTnEYS8uGfA44+ycFWh1lA== - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:00 GMT - Last-Modified: - - Mon, 10 Apr 2017 16:11:53 GMT - Server: - - ECS (fcn/419D) - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/851468284230848517 - X-Cache: - - HIT - X-Connection-Hash: - - 31db5dca3ecf3841ffcf55f854b6ccb1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '141' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:01 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1066307515649003520.json + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1234843595317731328&q=zammad&result_type=mixed body: encoding: UTF-8 string: '' @@ -3369,9 +156,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="db0fdd3eedd9c9a4c4a7dea0f6dd3cc9", - oauth_signature="5OrIGadCeuoU%2BpDkNkUYviu0awo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795861", oauth_token="REDACTED", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0473920310bc0cd8c7568e0ee831e305", + oauth_signature="S4dqecn8zqoXGDKyxDFV6MeY4mo%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034978", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -3389,25 +176,25 @@ http_interactions: Content-Disposition: - attachment; filename=json.json Content-Length: - - '2802' + - '273' Content-Type: - application/json;charset=utf-8 Date: - - Mon, 03 Dec 2018 00:11:01 GMT + - Thu, 12 Mar 2020 17:42:58 GMT Expires: - Tue, 31 Mar 1981 05:00:00 GMT Last-Modified: - - Mon, 03 Dec 2018 00:11:01 GMT + - Thu, 12 Mar 2020 17:42:58 GMT Pragma: - no-cache Server: - - tsa_o + - tsa_m Set-Cookie: - - guest_id=v1%3A154379586119920082; Expires=Wed, 02 Dec 2020 00:11:01 GMT; Path=/; - Domain=.twitter.com + - guest_id=v1%3A158403497874711613; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:42:58 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - lang=en; Path=/ - - personalization_id="v1_p7ip8mWYO9v16Fjh+pQ/Bw=="; Expires=Wed, 02 Dec 2020 - 00:11:01 GMT; Path=/; Domain=.twitter.com + - personalization_id="v1_tMRKtT2eb3mWN2Jfg0ZYDQ=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:42:58 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None Status: - 200 OK Strict-Transport-Security: @@ -3415,3074 +202,30 @@ http_interactions: X-Access-Level: - read-write-directmessages X-Connection-Hash: - - 579533a6444ca2172dd39b35ed0bc925 + - 2e2800ca1a2b9a38aa17956630fb62d9 X-Content-Type-Options: - nosniff X-Frame-Options: - SAMEORIGIN X-Rate-Limit-Limit: - - '900' + - '180' X-Rate-Limit-Remaining: - - '892' + - '178' X-Rate-Limit-Reset: - - '1543796753' + - '1584035827' X-Response-Time: - - '259' + - '272' X-Transaction: - - 00105f0300d5e5a7 + - 0063da6d00c3188b X-Twitter-Response-Tags: - BouncerCompliant X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report + - '0' body: encoding: UTF-8 - string: '{"created_at":"Sat Nov 24 12:28:17 +0000 2018","id":1066307515649003520,"id_str":"1066307515649003520","text":"@fexample - Twitter hat k\u00fcrzlich seine API umgestellt. Wir haben die n\u00f6tigen - \u00c4nderungen umgesetzt und rollen sie der\u2026 https:\/\/t.co\/m5YhRvu9TV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fexample","name":"fexample","id":280647844,"id_str":"280647844","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/m5YhRvu9TV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1066307515649003520","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1066298300649877504,"in_reply_to_status_id_str":"1066298300649877504","in_reply_to_user_id":280647844,"in_reply_to_user_id_str":"280647844","in_reply_to_screen_name":"fexample","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":514,"listed_count":20,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":441,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":true,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' + string: '{"statuses":[],"search_metadata":{"completed_in":0.008,"max_id":1234843595317731328,"max_id_str":"1234843595317731328","query":"zammad","refresh_url":"?since_id=1234843595317731328&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' http_version: - recorded_at: Mon, 03 Dec 2018 00:11:01 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:01 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (fcn/41AF) - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - MISS - X-Connection-Hash: - - 37f65b8a5274e5073927dbe63ad53c32 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '454' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:02 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1066298300649877504.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="12ed1f52923c07c7a35ea78d2d177e7d", - oauth_signature="UEKkeqCiwZnRNZK2xL9yFh2jYLA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795862", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2500' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:02 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:02 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586236068908; Expires=Wed, 02 Dec 2020 00:11:02 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_OSXYuikjlVdq9R/LFc1Nlg=="; Expires=Wed, 02 Dec 2020 - 00:11:02 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 12744059e6a4d948288866180fa2fcbc - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '891' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '141' - X-Transaction: - - '0054282d0032faba' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Sat Nov 24 11:51:40 +0000 2018","id":1066298300649877504,"id_str":"1066298300649877504","text":"@zammadhq - Ist es im Moment eigentlich m\u00f6glich, Twitter DMs via Zammad zu Verwalten?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":280647844,"id_str":"280647844","name":"fexample","screen_name":"fexample","location":"Berlin","description":"ITler, - Autist und Podcaster |\nim CCC Umfeld aktiv | er\/he","url":"https:\/\/t.co\/lqrFmdOsAP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lqrFmdOsAP","expanded_url":"http:\/\/fexample.org","display_url":"fexample.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":701,"listed_count":20,"created_at":"Mon - Apr 11 19:18:56 +0000 2011","favourites_count":24752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13973,"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\/851468284230848517\/HAmK9OTy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851468284230848517\/HAmK9OTy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280647844\/1454753210","profile_link_color":"0F125C","profile_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:02 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:02 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/851468284230848517/HAmK9OTy_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Md5: - - UTnEYS8uGfA44+ycFWh1lA== - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:02 GMT - Last-Modified: - - Mon, 10 Apr 2017 16:11:53 GMT - Server: - - ECS (fcn/419D) - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/851468284230848517 - X-Cache: - - HIT - X-Connection-Hash: - - 31db5dca3ecf3841ffcf55f854b6ccb1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '141' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/996714244090417152/2QDJvxkN_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:02 GMT - Last-Modified: - - Wed, 16 May 2018 11:27:28 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/996714244090417152 - X-Cache: - - HIT - X-Connection-Hash: - - ab26b5f1927b74df90b5558525c56a3b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '137' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mexico&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:03 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/937091164951289856/tfIoqXYr_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:03 GMT - Last-Modified: - - Sat, 02 Dec 2017 22:46:38 GMT - Server: - - ECS (fcn/419F) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/937091164951289856 - X-Cache: - - HIT - X-Connection-Hash: - - f6081cc1378ce9866dd1a616a4e2dca4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '138' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Mexico&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:03 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:03 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1052285678342438912/V6LP8BoX_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:03 GMT - Last-Modified: - - Tue, 16 Oct 2018 19:48:30 GMT - Server: - - ECS (fcn/40D6) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1052285678342438912 - X-Cache: - - MISS - X-Connection-Hash: - - d83d3cbfeece2886f841bc349e83136e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '184' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:04 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%E4%B8%8B%E7%94%BA%20,Tokyo,%20Japan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/544701031771164674/9EszjZW4_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Last-Modified: - - Tue, 16 Dec 2014 03:48:20 GMT - Server: - - ECS (fcn/4186) - Surrogate-Key: - - profile_images profile_images/bucket/0 profile_images/544701031771164674 - X-Cache: - - MISS - X-Connection-Hash: - - fc2f906720d336731983d888b5d084c1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '169' - Content-Length: - - '8135' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%E4%B8%8B%E7%94%BA%20,Tokyo,%20Japan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:04 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Somewhere,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/993875791921516544/KxtPpRLJ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Last-Modified: - - Tue, 08 May 2018 15:28:28 GMT - Server: - - ECS (fcn/40FD) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/993875791921516544 - X-Cache: - - HIT - X-Connection-Hash: - - c0c58bbca9c35859f83d5474f892cb09 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '567' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Somewhere,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065690447354445826.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="df1d4b0020304d719b581ad2a89ac722", - oauth_signature="ZVjS8VWcWdYXZpr2I3ZX56DOWTE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795865", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2746' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586536405324; Max-Age=63072000; Expires=Wed, 2 Dec 2020 - 00:11:05 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_MZD182hfYWStgAdGdUaJ5A=="; Max-Age=63072000; Expires=Wed, - 2 Dec 2020 00:11:05 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b7b8c1e2dea450e71b21fbd4b9936f5f - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '890' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '151' - X-Transaction: - - '009729f6001fb087' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 19:36:16 +0000 2018","id":1065690447354445826,"id_str":"1065690447354445826","text":"@example - Ich w\u00fcrde mir aktuell Zammad angucken.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"example","name":"Michael - Smith","id":118674790,"id_str":"118674790","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":1065689418353307648,"in_reply_to_status_id_str":"1065689418353307648","in_reply_to_user_id":118674790,"in_reply_to_user_id_str":"118674790","in_reply_to_screen_name":"example","user":{"id":19840431,"id_str":"19840431","name":"Falk - Stern","screen_name":"wrf42","location":"ZZ9 Plural Z Alpha, Third Rock from - the Central Star","description":"I \u2665 IP packets \u2022 @example_ort \u2022 - opinions are my own \u2022 DM7FS \u2022 https:\/\/t.co\/KuzUv395IN","url":"https:\/\/t.co\/e7or64Jxh7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/e7or64Jxh7","expanded_url":"http:\/\/pants.fourecks.de\/","display_url":"pants.fourecks.de","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/KuzUv395IN","expanded_url":"http:\/\/tools.ietf.org\/html\/rfc1925","display_url":"tools.ietf.org\/html\/rfc1925","indices":[62,85]}]}},"protected":false,"followers_count":584,"friends_count":485,"listed_count":21,"created_at":"Sun - Feb 01 00:58:25 +0000 2009","favourites_count":1543,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12886,"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\/608727351455809536\/JHaWzvF6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608727351455809536\/JHaWzvF6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19840431\/1499724219","profile_link_color":"33178F","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:05 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=ZZ9%20Plural%20Z%20Alpha,%20Third%20Rock%20from%20the%20Central%20Star&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/608727351455809536/JHaWzvF6_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Md5: - - F1aJw9nod7eADmrBUW27ow== - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Last-Modified: - - Wed, 10 Jun 2015 20:06:04 GMT - Server: - - ECS (fcn/41AC) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/608727351455809536 - X-Cache: - - HIT - X-Connection-Hash: - - 9fbcba5c976a1f20dd720b0d93219e4b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '205' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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BUkiEeo+6P8Aq+mzOKWggzSKQgxmKyyxyje13sLHwsd+BxcVChI+uYgoVJbbhY2OJSXM89Gb5Nk1NWy0TmljianhcARuSQSw5lbNY774e1WcUFDn/qWVJGy8U5pJZ3JJDta7E95ubnlfHNvQuwMj1+R/cIjVBJNojCxxgGSQCwB7hfnbfAec5dUV2VMKWamBv8NFLOkZK8rkiwI78AV1TJB0dOR+k6aunnmiqiT22IBZDbvDCwuOWJypqPSIKetnC+linaBpG3vZ7A795Ust/wA3niq6CWBgCrDpinN6SnFe0WXBChkCqVbskkAXBPdqva+Kno90QqsqaOvzLSkvWCNYlYHSHupLHhwPDEzIiyh9rpqK+7FHL0kfMOjKZdKh64oqSS6zqJUjcADvsMdKxsTD/EbSCzBgP3KabOvQMuy2V6d5oZVCySodkIFvfc3+TBfraj/DH76f1Yi+vr5snhy14h6NEAAWUIeJtuTe+/dgf1RP+CP4zfVhXzCesceK/pn+/qT085dlhZy8krapX43xtowZlnqjdU1BIx5d+FkJZzNMSAT2QeQwxiqC1OiojmNBy4+7GjMmdjsMpJ6o9IKOsjl01CSq7TbCwHF2v4cSeOKHMM4k6SyQUooUpDU1CtLKZiVubgkKfZuDviRXt5nSRb7tqa/y4fFVvcE32OxxkvwMOporXVhiZtJJUZhWwQU3pEwkkWaaMO8aAoqhL7A73J8Dywor2hSiiUm0q6YmB31qLsredywPPbxx9eNrGTRpkLXIU7C5uRhdnOpdLl7KNxtw54leeYyR1+kzCCYmGMDi74bZJXLSVklPNCJFkbsAuVAbxtvvwxP5aGEkRbgLt8m2DZideomznvGNViB18TEUk1v1LZMxmppo54oqWnkR1KtGrM3HmxNri4vbvwf/AHgVH5PL8rfVidoKwZnRBztKp0uFNrHn78FdW34T/vY5LVJuOJ1wNGqZJQU8FPT9pe0OHffBcuV11NSCseNViY3aIntKD98fqx6l+M6L9cuKvOf8qr/Rb5sbrbmRgo9Zh4/HV0LtIEswrEqVOkC1iRfb7Xw+0GNh1lSsgKmwi7JvcWve4A3wuq/irLv2dv8AtfHn9s/ofSuGWKDKo60RjIJVXVFDM5B3UvGwPvFsLsxjmmptTw6F79bD6Mb6X4vHk3znGmr+K08/pOASsAxjnRs0eo6mLLY8weFxAACJNQNh3ErxAwNLOeth1rZlbdRvtbj5YuR8UT/sp/44hJfapP1f0DB02mzdi76RXmRlllWMvrwST1Elkfw5N9ueKvrE5nELN/p3/ROKDCuRWCQY7jWkLk//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=ZZ9%20Plural%20Z%20Alpha,%20Third%20Rock%20from%20the%20Central%20Star&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065689418353307648.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2dbf57fffac364cfd3d3bb63b01ca49f", - oauth_signature="DoKz2xUY3qPs%2Bnscylkyemx7acY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2803' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:05 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:05 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586586228954; Max-Age=63072000; Expires=Wed, 2 Dec 2020 - 00:11:05 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_+/OoCKlEZ0cKyyakBbiF3Q=="; Max-Age=63072000; Expires=Wed, - 2 Dec 2020 00:11:05 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b2a163727c924ff41806ca40d2d38ea2 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '889' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '141' - X-Transaction: - - 0025e37d002a1248 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 19:32:11 +0000 2018","id":1065689418353307648,"id_str":"1065689418353307648","text":"Aja, - wieder was gelernt.\n\n\"Zuk\u00fcnftig werden wir neue OTRS-Versionen zun\u00e4chst - nur unseren zahlenden Kunden, und erst\u2026 https:\/\/t.co\/IRfIEfrN7k","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IRfIEfrN7k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065689418353307648","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,"user":{"id":118674790,"id_str":"118674790","name":"Michael - Smith","screen_name":"example","location":"Somewhere, Germany","description":"A - taste of #austria in lovely #nuremberg. @example, @example, #lego, #drageekeksi, - #perryrhodan and more.","url":"https:\/\/t.co\/9bqAc15vHA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9bqAc15vHA","expanded_url":"https:\/\/example.com\/example\/atasteofexample","display_url":"example.com\/example\/atast\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1345,"friends_count":404,"listed_count":182,"created_at":"Mon - Mar 01 12:24:00 +0000 2010","favourites_count":29311,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41488,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/993875791921516544\/KxtPpRLJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/993875791921516544\/KxtPpRLJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118674790\/1530637123","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":true,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive_appealable":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Somewhere,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/993875791921516544/KxtPpRLJ_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Last-Modified: - - Tue, 08 May 2018 15:28:28 GMT - Server: - - ECS (fcn/40FD) - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/993875791921516544 - X-Cache: - - HIT - X-Connection-Hash: - - c0c58bbca9c35859f83d5474f892cb09 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '567' - Content-Length: - - '2439' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1032216233339445248/sE3rElf-_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Last-Modified: - - Wed, 22 Aug 2018 10:39:42 GMT - Server: - - ECS (fcn/4185) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1032216233339445248 - X-Cache: - - HIT - X-Connection-Hash: - - 4aa0559538910d485a94dd09522ec849 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '167' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:06 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065643822095446016.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="43788c0bf65af0ea0e0e59b029a98a58", - oauth_signature="8H%2Bw00OP0m9rjOpLRdQia%2BOjtIo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '4445' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:06 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586658065606; Expires=Wed, 02 Dec 2020 00:11:06 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_L5115LsYmHOzsuzVVaIZNQ=="; Expires=Wed, 02 Dec 2020 - 00:11:06 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - ff7137ae964095853eb47f508634330a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '888' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '136' - X-Transaction: - - 00d6e40000f35116 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 16:31:00 +0000 2018","id":1065643822095446016,"id_str":"1065643822095446016","text":"@IExample - \u0627\u0633 \u0644\u0691\u06a9\u06cc \u06a9\u0648 \u062f\u06cc\u06a9\u06be\u0648 - \u0627\u062c \u06af\u0644\u06af\u062a \u0645\u06cc\u06ba \u0628\u0644\u0679 - \u067e\u0631\u0648\u0641 \u0634\u06cc\u0634\u06d2 \u0645\u06cc\u06ba \u0628\u06cc\u0679\u06be - \u06a9\u0631 \u0628\u06be\u067e\u06a9\u06cc\u0627\u06ba \u0645\u0627 \u0631\u062a\u0627 - \u06c1\u06d2 https:\/\/t.co\/IHTy1S6LIL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IExample","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[0,13]}],"urls":[],"media":[{"id":1065643762477686785,"id_str":"1065643762477686785","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/DsntWx-X4AEVPbi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DsntWx-X4AEVPbi.jpg","url":"https:\/\/t.co\/IHTy1S6LIL","display_url":"pic.twitter.com\/IHTy1S6LIL","expanded_url":"https:\/\/twitter.com\/idreesexample\/status\/1065643822095446016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":854,"h":480,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":854,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1065643762477686785,"id_str":"1065643762477686785","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/DsntWx-X4AEVPbi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DsntWx-X4AEVPbi.jpg","url":"https:\/\/t.co\/IHTy1S6LIL","display_url":"pic.twitter.com\/IHTy1S6LIL","expanded_url":"https:\/\/twitter.com\/idreesexample\/status\/1065643822095446016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":854,"h":480,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":854,"h":480,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","in_reply_to_status_id":1065640781103448066,"in_reply_to_status_id_str":"1065640781103448066","in_reply_to_user_id":122453931,"in_reply_to_user_id_str":"122453931","in_reply_to_screen_name":"IExample","user":{"id":705679307683864576,"id_str":"705679307683864576","name":"idrees - aAlzeyadi","screen_name":"idreesexample","location":"\u067e\u0627\u06a9\u0633\u062a\u0627\u0646. - pakistan","description":"\u00a0Idrees Alzeyadi \u00a0\r\n\u03c1\u03b1\u043a\u03b9\u0455\u0442\u03b1\u0438\u03b9\ud83c\uddf5\ud83c\uddf0 - \r\nlove Myself\u2764\ufe0f\r\n 01jan \u043c\u0443 \u2202\u03b1\u0443\ud83c\udf82\r\n - f\u03c3\u03c3\u0442\u0432\u03b1\u2113\u2113&cricket \r\n\u26bd \u043c\u0454\u0455\u0455\u03b9\r\n - \u2764\ufe0f sports \u2113\u03c3\u03bd\u0454\u044f\r\n \u2764\ufe0fpolitical - view\ud83d\udc49imran khan\u2764\u270c","url":"https:\/\/t.co\/czkzktBJ7X","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/czkzktBJ7X","expanded_url":"http:\/\/www.example.com\/idreesExample","display_url":"example.com\/idreesExample","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2315,"friends_count":1946,"listed_count":0,"created_at":"Fri - Mar 04 09:00:32 +0000 2016","favourites_count":4372,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":364,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1065873213748584448\/QClfFmGl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1065873213748584448\/QClfFmGl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/705679307683864576\/1542958866","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"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,"possibly_sensitive_appealable":false,"lang":"ur"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%D9%BE%D8%A7%DA%A9%D8%B3%D8%AA%D8%A7%D9%86.%20pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1065873213748584448/QClfFmGl_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:06 GMT - Last-Modified: - - Fri, 23 Nov 2018 07:40:31 GMT - Server: - - ECS (fcn/40D7) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1065873213748584448 - X-Cache: - - MISS - X-Connection-Hash: - - db07615a746149cf45bdbbedaf7cc931 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '131' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=%D9%BE%D8%A7%DA%A9%D8%B3%D8%AA%D8%A7%D9%86.%20pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065640781103448066.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="813d8700f25ff78f741b2c778b312cf7", - oauth_signature="Ha0OSsfG5yFKzMdNbRHC2Fn9tKo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795867", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2596' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586724246848; Expires=Wed, 02 Dec 2020 00:11:07 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_OA+dA8O8hzvl3z8m22QRTQ=="; Expires=Wed, 02 Dec 2020 - 00:11:07 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b9bed8cd479ebba741a875dae276bb09 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '887' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '148' - X-Transaction: - - 00c36c4100d7cd91 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 16:18:55 +0000 2018","id":1065640781103448066,"id_str":"1065640781103448066","text":"I - want to express my heartfelt thanks to Prime Minister Mahathir Mohamad for - his warm hospitality & I want to thank\u2026 https:\/\/t.co\/qUVkNiIqw9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qUVkNiIqw9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065640781103448066","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,"user":{"id":122453931,"id_str":"122453931","name":"Imran - Khan","screen_name":"IExample","location":"Pakistan","description":"Prime - Minister of Pakistan","url":"https:\/\/t.co\/zwxvk5i5Xu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwxvk5i5Xu","expanded_url":"http:\/\/insaf.pk","display_url":"insaf.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8753744,"friends_count":19,"listed_count":8089,"created_at":"Fri - Mar 12 19:28:06 +0000 2010","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":5685,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A7CCAB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034759395622756352\/G3QDI4pv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122453931\/1534522318","profile_link_color":"179C41","profile_sidebar_border_color":"CCCCCC","profile_sidebar_fill_color":"E2F5E2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6873,"favorite_count":35122,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1034759395622756352/G3QDI4pv_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Last-Modified: - - Wed, 29 Aug 2018 11:05:19 GMT - Server: - - ECS (fcn/41AD) - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1034759395622756352 - X-Cache: - - HIT - X-Connection-Hash: - - 338e7b270c00eefdafc384c84ca630b1 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '210' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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moIs1eYUfJBwn53LSGXGT3xNGNYRphinylWZgIKCKbbhys733LtVge77n//EACUQAQACAgEEAgIDAQAAAAAAAAEAESExQVFhcYGRocHxENHwsf/aAAgBAQABPxBOmoh+IVBld1F8QMOclYy5rgTbHFa2jjYUXNzDdFcdsS97gTe5oZTJ+xVZc6BUilGA9StsGruh+ZdLuO2OWeMJimWxQuLEGS6wNpTTYrVS91WW6xUNhOBzqf8AQz9sgLRd/gmCo1iUccQjzI40lna0uKj67xXgNHxK35ZgxqLymb7Ux7k4lI9g9C/iU7LRS1QugOr0n6bFAqmyxWslKADKsspvbHwxUihAQAWgoxKKghoEqs3hePcWEERR0BfQ3K4P0AS/CjGeJuVZAfcQCilqIE4qzZnhOZ/h/dHwA23Tcu7bYPCvSHwZeU0RlAWsUGWb5hC2R0utMcGmHYLO/lfIyhI6bqlt+XwQNwCuJlu704cd4NhbbXDDOIIhZOtKZpasT0a3O8+D+5VArP8ANw6vEKXY9e0Exz7yhCvlx5hCiy4yfX8og08xs6FKFGfUC7gikrzr0yjyncpjvWmKaQXwpCCwHa7rKI0KndRMpDk2NRMtYK2YlsjlxQh+ob8bdmkfH3Q5+PZBclZOhF/wem8nu0CPq4kgjGrUrd97riqitmoOUAp7g+EAoCg0USyN5mlqJL9VLS+RCbPN4lvZUWgFQ6jkvqMCLW6BsqBYmIvtCiBYsS661ZCA9TMgcYbbTpUZXgHAsNgATa083Ba54l2qVzZe4E9opK4QjBpbllfbYAGaVNoB8qqWWNoweCEsxIlNlnYQ06hOR1eW4SQoDBsGtwIO6Ep1XaxplJfo02m/8uXibRh3NP4//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:07 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Zug%20zwischen%20BS%20-%20WOB%20-%20B%20-%20HH&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/862655866327240704/WtPq3dQv_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Md5: - - rPsU3ndDDAINBRK+KU5yow== - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Last-Modified: - - Thu, 11 May 2017 13:07:20 GMT - Server: - - ECS (fcn/4196) - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/862655866327240704 - X-Cache: - - HIT - X-Connection-Hash: - - f3107d5278515440f12b27e44e771796 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '131' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Zug%20zwischen%20BS%20-%20WOB%20-%20B%20-%20HH&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:07 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fair%20Leipzig%20Hall%20H..%20I%20meen%204&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064967265177792513/muZEe7g0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Last-Modified: - - Tue, 20 Nov 2018 19:40:36 GMT - Server: - - ECS (fcn/40FC) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1064967265177792513 - X-Cache: - - HIT - X-Connection-Hash: - - 71df07dcadf450f699f4aeb9f33d8ca3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '129' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fair%20Leipzig%20Hall%20H..%20I%20meen%204&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:08 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065502326222479360.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="6ba7598ee7171aa89d5172a75b5e7634", - oauth_signature="RrL7Yjl6GE4OJ4IJX4H5GiYLFJU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795868", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2700' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:08 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586847510178; Max-Age=63072000; Expires=Wed, 2 Dec 2020 - 00:11:08 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_WG9/GD7xyOfaKPFTNVIqHQ=="; Max-Age=63072000; Expires=Wed, - 2 Dec 2020 00:11:08 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e35a95110d95c5542c3ef8072eecb2cd - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '886' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '142' - X-Transaction: - - 003c3d9c001e7352 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 07:08:45 +0000 2018","id":1065502326222479360,"id_str":"1065502326222479360","text":"@33logistic - Over at Mastodon there are working dms. Just saying. \ud83d\ude09","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"33logistic","name":"CCC - Event Logistics","id":811173206887460868,"id_str":"811173206887460868","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/example.com\/TwidereProject\" rel=\"nofollow\"\u003eTwidere - for Android #8\u003c\/a\u003e","in_reply_to_status_id":1065497046419939329,"in_reply_to_status_id_str":"1065497046419939329","in_reply_to_user_id":811173206887460868,"in_reply_to_user_id_str":"811173206887460868","in_reply_to_screen_name":"33logistic","user":{"id":354796681,"id_str":"354796681","name":"(\u0e07 - \u0e37\u25bf \u0e37)\u0e27","screen_name":"tamexample","location":"Lost in #Neuland","description":"Flashaholic, - tinkerer and general tekkie. Living the (mostly) open-source life. Meine Wahl - ist gest\u00f6rt. FCK EXTREMISM. I void warranties for fun.","url":"https:\/\/t.co\/J4ZnfQ5z5y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J4ZnfQ5z5y","expanded_url":"https:\/\/example.space\/@tamexample","display_url":"example.space\/@tamexample","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":103,"listed_count":2,"created_at":"Sun - Aug 14 09:28:04 +0000 2011","favourites_count":876,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1627,"lang":"de","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\/932331169064112128\/KaSV48WY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932331169064112128\/KaSV48WY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354796681\/1524076675","profile_link_color":"000000","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lost%20in%20%23Neuland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:08 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/932331169064112128/KaSV48WY_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Last-Modified: - - Sun, 19 Nov 2017 19:32:07 GMT - Server: - - ECS (fcn/40FB) - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/932331169064112128 - X-Cache: - - MISS - X-Connection-Hash: - - 4cab491de27a923b1f2c5cdbd9fe9189 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '297' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Lost%20in%20%23Neuland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065497046419939329.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="3a2fab4325efb72a9fe7f466fdb96910", - oauth_signature="%2BwYKPEqhsVvUK7IDnOSZpB4J1h0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795869", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2772' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586930698550; Expires=Wed, 02 Dec 2020 00:11:09 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_5gBdW/xaAyiVrU64RgDTYg=="; Expires=Wed, 02 Dec 2020 - 00:11:09 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 4e864881ee6bd6e4b4e896a754e9a821 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '885' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '171' - X-Transaction: - - 00e4fd6200484154 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 06:47:46 +0000 2018","id":1065497046419939329,"id_str":"1065497046419939329","text":"We''ve - deactivated our direct message feature.\nCause of the new Twitter API we aren''t - able to work on DMs atm.\nIf yo\u2026 https:\/\/t.co\/dVfqyH0QXm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dVfqyH0QXm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065497046419939329","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":1065497031790211074,"in_reply_to_status_id_str":"1065497031790211074","in_reply_to_user_id":811173206887460868,"in_reply_to_user_id_str":"811173206887460868","in_reply_to_screen_name":"33logistic","user":{"id":811173206887460868,"id_str":"811173206887460868","name":"CCC - Event Logistics","screen_name":"33logistic","location":"Fair Leipzig Hall - H.. I meen 4","description":"Logistics for Chaos Events. Currently planning - an awesome #35c3 in Leipzig 35c3@example.de","url":"https:\/\/t.co\/g2YFZuZZsj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2YFZuZZsj","expanded_url":"https:\/\/example.de","display_url":"example.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2198,"friends_count":56,"listed_count":49,"created_at":"Tue - Dec 20 11:35:38 +0000 2016","favourites_count":170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":370,"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\/1064967265177792513\/muZEe7g0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064967265177792513\/muZEe7g0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811173206887460868\/1542742947","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:09 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fair%20Leipzig%20Hall%20H..%20I%20meen%204&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064967265177792513/muZEe7g0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Last-Modified: - - Tue, 20 Nov 2018 19:40:36 GMT - Server: - - ECS (fcn/40FC) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1064967265177792513 - X-Cache: - - HIT - X-Connection-Hash: - - 71df07dcadf450f699f4aeb9f33d8ca3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '129' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gALABQAEwAqACZhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAaAAEBAQEBAQEAAAAAAAAAAAAABAMFAgEH/8QAGAEBAQEBAQAAAAAAAAAAAAAAAAIDAQT/2gAMAwEAAhADEAAAAfxgACyOxnGGgAFFOcVY9r7Fr3zx4deSN41/tWO3NU6HPukN+pGYdDKHDk3oZp1Dvp06fKqrDbTk2Jm8E+imjnEA0uhti7msjs4jDQD/xAAkEAACAQMDBAMBAAAAAAAAAAACAwEABBMQEiARFCNEMDE0Mv/aAAgBAQABBQLjP4/hn8fJatwpQo23tqlLZUGNq5DleT5ajzJAWMs0Jdt7Z9CrFXeMreiksRvvPuraCzB0ONk0yRXGZNZk63EZKASMngVsuVl2i4xLSzZTl7eAGQTbXDop17cMLNOEyIypLNldLPUYkpuJiNPT5K8StPT5XP8AGnp8P//EACARAAIDAAEEAwAAAAAAAAAAAAECAAMREBIiMUEgITL/2gAIAQMBAT8B4f18MZ13cmMFAZvEW1fBM6yfwNhqBEqwJHx+7YKTFpVho4tRX7chprXABwa9O8V/fdH9c//EABsRAAICAwEAAAAAAAAAAAAAAAEgABECEjEh/9oACAECAQE/AW8CbGZdnEBqWUKf/8QANBAAAgADBAgCCQUAAAAAAAAAAQIAERIDECExEyAyM0FRc8FCYQQjMHGRkrHR41JigZOh/9oACAEBAAY/AtUdQ/T2Q6h+muWJCqOJhVPpC4nkYpFuBhk0aHGQFek4QMQVORHHWKDZTAC6Xjs8vMRSlTSfKHs2s2pIJ/mN03wiu3X3L+qNiy+QRuD88bug8GJnIwqs1VoNo3AqaZYk8omizHRWN2f6l+8TdZDorH4RH4VvNumR2v2mAqiZMaJhJ3xb3colhVOuU8ZQbR82UhV7wQRUh2lgOhqszkdSaMQYNq1o1Kf6eUTrp8hGnl60mktFTGZuIIqQ7Sxt23wF4AxJgWK5Ln5m4dTtr6XxHBPveOp217Hp9zeOp21f/8QAKBAAAQIEBAYDAQAAAAAAAAAAAQARITFBYRAgUXGhscHR4fAwgZHx/9oACAEBAAE/IcvpNHxek0ZzQlYy30TEWwW6gQUElzBJH4E4Qb/kgUaVNUVJivLZhJUZlIYbFPyP1yQKBxgpBQo1ARIRAi+DmT4AT5l2wG/sOyAggDCdAsyOEhyB10F8DNEtkE0/mgLOO4gSRlAAk0AfItn3utn2vjWI8Fblro5YpgBVDs4Lg6vxBR2npQwIsgwhVEXDOsinICSvlBH0Dg3yU/E4KJF1InYR15DSQjDhEZYs090UFnmTg7kxJXzk2CW4YBBTXnh9p6YHjOTPEHXta9GJ4zkz8CxDxnJl/9oADAMBAAIAAwAAABDzyvzzzwnPj/w7U/z331zx7/zz/8QAJhEBAAEDAgUEAwAAAAAAAAAAAREAITFRkRBBYXHwIIGh0bHB4f/aAAgBAwEBPxDhn3/p9BBXItEW0yZ860PGqhWDs7cmS97lTkcnOS/91pbgazB7WZ860sJd37pDlxno5e0finGBCwNm2u+LxvSVRkOgTrDfG02tUkH4+uCAgrm3LyxvyowsJi2mjqd6ACCigKPTnwsKyr8MHms1n3cf/8QAGxEBAAIDAQEAAAAAAAAAAAAAAQARECAhQZH/2gAIAQIBAT8Qwe6NlVdRRVCJgJvnwlmQeIuWF3LrV055D3P/xAAlEAEAAQQBAwQDAQAAAAAAAAABEQAhMUFhEFFxIDCRoUDB8IH/2gAIAQEAAT8Q/GatUz8SUlgAKu4CxmjfzQJjhAHy0VcPzHMQ8w1aRUHLIWycA7tapsXINLcTcTCNz0lCimMc7eVbrl6XLulN53ku5ye1F1FKqCMW8zQ3bPDBZqUHIx0kTsSHRzNh27wcfxH66DJVNkgkXMl/MZ1ThSR7KbjBIN8xrpnQ6ZArk3a0bmN053tBE5i51SyIRLD2ogmVDC9pM6VzLz6G6KSmy5GuTW2M0D12WTSHTEoQDaSzcVG+FEkihhAhfaMwjTF9mRZdgSx3cWvQhxiEB0joZHXiSmApbEI7PR7byW9DZSJQpO1A6EcRp+a68DRBhALJ8yzRErZVIGwwIstZAEuV6OAjEIDpHQ068SV/Ffvq1UQWVbBRQ1uk31EQ4OfZUaehO9P8hhyvb2VB7PBR/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1065497031790211074.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bab0a69fdb7b4718244cb9e3a86f28d4", - oauth_signature="WrbLQ6TcP7153IxnujSFyoJ462w%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2707' - Content-Type: - - application/json;charset=utf-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Server: - - tsa_o - Set-Cookie: - - guest_id=v1%3A154379586973197398; Expires=Wed, 02 Dec 2020 00:11:09 GMT; Path=/; - Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_xCHa1qb/K3d5JeUU/G6TFw=="; Expires=Wed, 02 Dec 2020 - 00:11:09 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - d116e685690ffcfe4b23ff22ddef0be5 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '884' - X-Rate-Limit-Reset: - - '1543796753' - X-Response-Time: - - '151' - X-Transaction: - - 00b53dd000fc233a - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report - body: - encoding: UTF-8 - string: '{"created_at":"Thu Nov 22 06:47:43 +0000 2018","id":1065497031790211074,"id_str":"1065497031790211074","text":"Wir - haben unsere DMs deaktiviert.\nLeider k\u00f6nnen wir dank der neuen Twitter - API keine DMs mehr bearbeiten.\nDaher sin\u2026 https:\/\/t.co\/r7sp3Pfr8d","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r7sp3Pfr8d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065497031790211074","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,"user":{"id":811173206887460868,"id_str":"811173206887460868","name":"CCC - Event Logistics","screen_name":"33logistic","location":"Fair Leipzig Hall - H.. I meen 4","description":"Logistics for Chaos Events. Currently planning - an awesome #35c3 in Leipzig 35c3@example.de","url":"https:\/\/t.co\/g2YFZuZZsj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2YFZuZZsj","expanded_url":"https:\/\/example.de","display_url":"example.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2198,"friends_count":56,"listed_count":49,"created_at":"Tue - Dec 20 11:35:38 +0000 2016","favourites_count":170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":370,"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\/1064967265177792513\/muZEe7g0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064967265177792513\/muZEe7g0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811173206887460868\/1542742947","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Fair%20Leipzig%20Hall%20H..%20I%20meen%204&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '228' - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "Keyless access to Google Maps Platform is deprecated. Please use an API key with all your API calls to avoid service interruption. For further details please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "OVER_QUERY_LIMIT" - } - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064967265177792513/muZEe7g0_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Mon, 03 Dec 2018 00:11:09 GMT - Last-Modified: - - Tue, 20 Nov 2018 19:40:36 GMT - Server: - - ECS (fcn/40FC) - Surrogate-Key: - - profile_images profile_images/bucket/4 profile_images/1064967265177792513 - X-Cache: - - HIT - X-Connection-Hash: - - 71df07dcadf450f699f4aeb9f33d8ca3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '129' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT + recorded_at: Thu, 12 Mar 2020 17:42:59 GMT - request: method: get uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed @@ -6493,9 +236,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b88d83169c5ad58749312e180ccb580a", - oauth_signature="mwtfaPm2G4x5pRnOr79wWj%2F4UOc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="REDACTED", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="907ee841e92bdaaacb3bfe7a9dcad3e0", + oauth_signature="Yy%2BkwE51W6rxwoMN00gl83JsAjA%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1584034979", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6517,21 +260,21 @@ http_interactions: Content-Type: - application/json;charset=utf-8 Date: - - Mon, 03 Dec 2018 00:11:10 GMT + - Thu, 12 Mar 2020 17:42:59 GMT Expires: - Tue, 31 Mar 1981 05:00:00 GMT Last-Modified: - - Mon, 03 Dec 2018 00:11:10 GMT + - Thu, 12 Mar 2020 17:42:59 GMT Pragma: - no-cache Server: - - tsa_o + - tsa_m Set-Cookie: - - guest_id=v1%3A154379587034389783; Expires=Wed, 02 Dec 2020 00:11:10 GMT; Path=/; - Domain=.twitter.com + - guest_id=v1%3A158403497980698004; Max-Age=63072000; Expires=Sat, 12 Mar 2022 + 17:42:59 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None - lang=en; Path=/ - - personalization_id="v1_opz8AkZIlfOslIZLilaQyg=="; Expires=Wed, 02 Dec 2020 - 00:11:10 GMT; Path=/; Domain=.twitter.com + - personalization_id="v1_6REv+fps7/LkfOs1oNNT7w=="; Max-Age=63072000; Expires=Sat, + 12 Mar 2022 17:42:59 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None Status: - 200 OK Strict-Transport-Security: @@ -6539,7 +282,7 @@ http_interactions: X-Access-Level: - read-write-directmessages X-Connection-Hash: - - bf3a3e0c9040d3298c82c57bec5b5ce3 + - 9566d32dd286e9a31b86fb2fdb7785aa X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6547,20 +290,20 @@ http_interactions: X-Rate-Limit-Limit: - '180' X-Rate-Limit-Remaining: - - '173' + - '177' X-Rate-Limit-Reset: - - '1543796367' + - '1584035827' X-Response-Time: - - '141' + - '120' X-Transaction: - - 004ad5cc00c8a1a9 + - '00488d8f001797fa' X-Twitter-Response-Tags: - BouncerCompliant X-Xss-Protection: - - 1; mode=block; report=https://twitter.com/i/xss_report + - '0' body: encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.024,"max_id":1069383442410979328,"max_id_str":"1069383442410979328","query":"hash_tag1","refresh_url":"?since_id=1069383442410979328&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + string: '{"statuses":[],"search_metadata":{"completed_in":0.012,"max_id":1238158557293318144,"max_id_str":"1238158557293318144","query":"hash_tag1","refresh_url":"?since_id=1238158557293318144&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' http_version: - recorded_at: Mon, 03 Dec 2018 00:11:10 GMT + recorded_at: Thu, 12 Mar 2020 17:42:59 GMT recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/when_fetched_tweets_have_already_been_imported_does_not_import_duplicates.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/when_fetched_tweets_have_already_been_imported_does_not_import_duplicates.yml index 8c800525d..3c8e1c562 100644 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/when_fetched_tweets_have_already_been_imported_does_not_import_duplicates.yml +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/when_fetched_tweets_have_already_been_imported_does_not_import_duplicates.yml @@ -77,133 +77,7 @@ http_interactions: - '0' body: encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93909,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + string: '{"statuses":[{"created_at":"Thu Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT @zammadhq: Good morning! Come to our Global Office. And stay where your heart is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad @@ -218,80 +92,6 @@ http_interactions: href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373445,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users @@ -302,36 +102,6 @@ http_interactions: Discourse & other open source instances for you, so you don''t have to. Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come and join our team to bring Zammad even further forward! \n\nIt''s gonna be amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca @@ -345,2226 +115,15 @@ http_interactions: href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25758,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881888,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692561,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692561,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub + Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, + testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' http_version: recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1163492126556135425/puANjvZp_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 19 Aug 2019 16:43:14 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1163492126556135425 - X-Cache: - - MISS - X-Connection-Hash: - - b76bd2ed91a44066b96fb3713dc830bc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '128' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/508915774816149504/T4g--mOT_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '233790' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 08 Sep 2014 09:50:30 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/508915774816149504 - X-Cache: - - HIT - X-Connection-Hash: - - c20c82c2eb58f26c8bb193866ffa6fcf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '120' - Content-Length: - - '1807' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427776654135297.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ca8db5ad67ab2ff8d7e9453978aa7af6", - oauth_signature="KVwPd6LavD6jIuLek2FCVfK6je0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2670' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644039762192; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:20 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_QpgW5IUf4LYMtKVSgxlyiw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:20 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b33641fb2e72ef7f3887711c86674929 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '899' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 00cccbb0002de89b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:21:45 +0000 2020","id":1224427776654135297,"id_str":"1224427776654135297","text":"@mrflix - I\u2019d prefer to pay for something but thanks though!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrflix","name":"Felix - Niklas","id":15217750,"id_str":"15217750","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427517869809666,"in_reply_to_status_id_str":"1224427517869809666","in_reply_to_user_id":15217750,"in_reply_to_user_id_str":"15217750","in_reply_to_screen_name":"mrflix","user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501282' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - HIT - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427517869809666.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1a244660e2f97a71bf345750e36e98c3", - oauth_signature="PArGPzilTQ9HzlIUQENIFYdSyZg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2712' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644120417217; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_L0kogBi44RZDUuRVJuDt4w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 962314ad139bd7efb6b581060b1d327d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '898' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 0022b3b0007f2a30 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224426978557800449.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1839c84f7948a2fa6ef3a8b86f11fcb8", - oauth_signature="P34TG7JX5tOOMfc1zGXPQJB9n%2FY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796441", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2604' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644169456926; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_yi1It/3F2KszoRZr9LKSPg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e4fb6e6af304e2792218fcdac6b43062 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '897' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '126' - X-Transaction: - - '0070158b000776af' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:18:35 +0000 2020","id":1224426978557800449,"id_str":"1224426978557800449","text":"Lightweight - CRM recommendations? Just want something better than Intercom to keep track - of support contract details and that kind of thing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"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,"user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501284' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - MISS - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1372613935/image_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '87030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1372613935 - X-Cache: - - HIT - X-Connection-Hash: - - af7ab6266348ffac8cbb4aa67ea19c4e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - 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rUonA6AAk6Y7b/yHL1/ecb+I1l9t/wBGq5+y1/E6zWPalcFbdrMpsIYREgRxsiwmj5GE/wDdR6lR5J/uGj1BtO3a3Yz7jdzw0XMtaTEprii1vAJCmyVDaVKBCkkH0IPXSa51OvA+UfeNWwhpta77w7OLwNTtyqy6NVoyiy7sIwsDhTbqDlLiT0KVAg60OdffZ/eTvxyqWQbZrJwmWKCgfDZ7hPzFlR/JlEZzsJSfYax2V+dn/wBs6cIP9SFV/e8b/DXq4+5Wc/WjbXKOI1qP1JTZM6q5EQf5mIDyr71HCfuB99ZTIjrQspUkhSTg63m4fzXb/wC6mv8AD1j1b/Oi/uGu3n4MccZlO3L+bmuVuN6eKRed2US1aradNrUpqh1naJ9MJCmJCkkFKilQICgQPMMHjGcaavxW1v8A0CF/zH/trO3vmV92vWuP+XbctP/ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223188240078909440.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f0983cc8d2ccb9c7c917494a93e9b6bf", - oauth_signature="oEU2K3H3hQX9uVuasaZ%2ByWvMFcg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796442", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2780' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644317459299; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:23 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_rL1CgHU04UGVa6N+GgrTRg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:23 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3607feb94ada43c77a69b20f8a4b7acb - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '896' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '128' - X-Transaction: - - 0077504c00a9eaac - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/772697070549528579/HFxWLHRD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Last-Modified: - - Mon, 05 Sep 2016 07:23:12 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/772697070549528579 - X-Cache: - - HIT - X-Connection-Hash: - - 3b5e4da44f99eb558e596bb3aa7e90f3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220798' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1094738873039704066/-lDgIqkO_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Sun, 10 Feb 2019 23:22:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1094738873039704066 - X-Cache: - - HIT - X-Connection-Hash: - - 78fd6a3d400935ec9bf72ac2b088426e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223103807283810304.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="270a7a4eccf11544f9af28d85299205a", - oauth_signature="mYxomSx1sBr9ZxmdoYp%2F%2BnGdnSg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796445", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '4774' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644528238733; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:25 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_c1fhs9eqFg5/913EVJEC2w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:25 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 5327d9a3ffb06b4f288d507a02c4791d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '895' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '125' - X-Transaction: - - 00f3aa8500266873 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 04:40:46 +0000 2020","id":1223103807283810304,"id_str":"1223103807283810304","text":"One - of the most disgusting videos i haf ever seen. A Chinese person a live a frog. - #China #coronarvirus https:\/\/t.co\/l81uDqdlOl","truncated":false,"entities":{"hashtags":[{"text":"China","indices":[83,89]},{"text":"coronarvirus","indices":[90,103]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"features":{}}]},"extended_entities":{"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"video_info":{"aspect_ratio":[17,30],"duration_millis":54518,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/320x564\/E9_ZjFgFnwun6x9I.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/360x634\/4c_uXMtdSyZ1SxVu.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/544x960\/AzGc7uMNSi0MYPkw.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/pl\/wV6_mmLI-ktcCFXX.m3u8?tag=10"}]},"features":{},"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,"user":{"id":2519467770,"id_str":"2519467770","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","screen_name":"Nami_fight4life","location":"Obviously - somewhere on Earth","description":"#Anipal Share -\u00bbWorld along with other - living beings in peace+harmony #BeUnique #EnjoyLittleThings #StayStrong #Equality4All - #Voice4Voiceless #SaveLives #UCC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3008,"friends_count":3020,"listed_count":78,"created_at":"Sat - May 24 04:37:39 +0000 2014","favourites_count":23188,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519467770\/1482148273","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218882247870353408/MkRU56G4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146377' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Last-Modified: - - Sun, 19 Jan 2020 13:03:48 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1218882247870353408 - X-Cache: - - HIT - X-Connection-Hash: - - 73d106552eb5d9300d9ad791118d59b4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH5AABABMADQAFADBhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAgMBAAAAAAAAAAAAAAACAwQFAQYHAP/EABgBAAMBAQAAAAAAAAAAAAAAAAACAwEE/9oADAMBAAIQAxAAAAHlrFsXUJmnm1/p4hCweHVYn7C6fXM5rSmV7DX1UkKJGEsWmGCUGySqeWEqCaAGvsYgJxv5TbnPrCC62uElORxUYd3qE93uup7FrHB36xr97r3Zyy2wCaDWwnmtErLW6GvQ+gTpzWqzmqf/xAApEAABBAEDAwMEAwAAAAAAAAABAAIDBBEFEhMQFCEjJDIGFSAiMTVB/9oACAEBAAEFAoeAs9sHzbN2V5XleV5XlZKhZXc3ZUW2ruYyrscKuH9vsR61e54T3OWCyRIZ08zsEry96PWHg4y2sD6Bb7UMf26lMJCKyFlUO64HSW8GSfZ9wtBr7tl6z0d1rlhZiIMLQjNVRlqbpXRuk0rSoeC9XphtiHYVBYkjiE0zhyvALWpzWhuDmszFG0SrQ9NRB2wCROP7f41B2DIG2tK1iCANuYZFlRluMx7cRZLYUBFgRuK+nbTJKGoU5eTUZWySfgP4g+ZUfz1z+s6f/8QAIBEAAgEEAQUAAAAAAAAAAAAAAAERAhIhUTEDECBBYf/aAAgBAwEBPwG17LXsgkkTwSVZ9+VlXZ1EPYjinB1OS0j6JFziCT//xAAjEQACAQIFBQEAAAAAAAAAAAAAAQIRIRASEzFhAyAyUaFB/9oACAECAQE/AdVK1BzXozcYuN9vhl4+EFT87tSNaYORR+xEfK509jKU5EhxuJH/xAAzEAABAwIDBQUGBwAAAAAAAAABAAIRAyEEEjEiI0FRYRATIDIzFCVxcpGhMFKBkqLh8P/aAAgBAQAGPwLeVHtd0XnqubC3TnEdVqVqtVqtStStSt7Uc13wV6tT6IbypHHZUurPB5QjlfUPKyOQvzdfCO77ot4B0IN3F7cOSa4NokX5InLQaJ6FOqZqccYWY+EZ6dQuvovTrohja39qclaUMtKrY3krYY5p6+HdYmmxomxKdOPoujaiUHDG09na0/3NRn46wjmqTLcptw8QzYR9TqOKPu+rmjrCn2B+Wyvg/wCZQPshiPz6qadPI2NJlNxGMk5hLWdEQ2kI+Clvl7IZiMgvZGcW69oKgYnVeqFIqBxUDUqjnG02k0GecI6J449kiiHdV6P2RtHbPFNqBxh7QQVRayrJDb3v+q+3ZtPc1Car16jvovVd+1eZ0rSEzAOeGVaYPdu5ou75w52CDGeVvH8BnzI/J2//xAAmEAACAgIBAwQDAQEAAAAAAAABEQAhMUFRYXGREIGh4bHR8MHx/9oACAEBAAE/IdrQ8+0qdiFF19xIV+zzjfZHzeZ3PMfJ5hP2I/tT/oTNDabcATZ6VgTd2Cq17wpKchLQQdClP9QXOGAegeigMEA2GBt5izBqH+Lg0YYPlA1BQ8gEtwjTxqEyQTwEJqEIUp7zBGYk6I1FYtNgMX8TBOrIPshIhEPXtmMPAlVagjdbalDj0FGfRQL5ZwGyQusMMMBgs8VXT5lEGgBEb/bzBhc23doQd05eShIUiZYhkRGKGMOy2jLkRiQeTQFmBnOCpPAvs8zab4/rmFiBAwQ9nR/MNzlEebZcXgqoaGhMDXlhXEqs3TOo5dYJXHUdZSauIURn/ZaVUOcQ8jftGp0YgBAVF0AQBChCCQQouyuCCeAI8yoAIa+qCBKdwZRe8cQ5QqShBhgXDDLac/ylD3szDMOwCboz6EwLPViAiHyAIUbHkyWCsEagTiXdHWMTEGAPfYg/RJBcZbTZihmoZkmKZz4T8z4KDPp//9oADAMBAAIAAwAAABB+HnnO9AhgCiwSd9DzFyY3yrSL/8QAIBEBAAIBBAIDAAAAAAAAAAAAAQARoSFBseEx0SBRkf/aAAgBAwEBPxAbXlDwciKN8y0tBAXnqBqhz1HT26+QhYRK0YguuSFHSBPLct3BtP3jdu+Jf7Y9SveAQs6s/8QAJhEBAAIBAQUJAAAAAAAAAAAAAQARITFRcZGh8BAgQWGBwdHh8f/aAAgBAgEBPxDcHyfyaq3BgWsuEqVHW9G+4u7ej1lzOW2g9+86hBvJEFzzIUfSBDW4bTg32DZ1l9rl8SnxgF4IT//EACUQAQEAAgICAgIDAQEBAAAAAAERACExQVFhcYGRsRChwfDh8f/aAAgBAQABPxAj7yh1DSSbbu/QbyHPOnkkSnhbroMBuyUItPB4k+7gun8jBDh+2X/380f7sB8XljN/Zz/7vChyIkEg49Deen1aLZpBrXn59ce9AT3LQEujtvy9YDmWS1fHk/WAETV6hu78vuZyhGqRKSoaZfXHsA8YBfGI9Z/3WWGg9mBO0H1JjVxEQ9ld+DK9h2GVnWOO4iePBhoxiHgg9u9uuLjEXgBKQRDWzjTE3EwCiASR9YKVZ847mzyfwK+WLcggk2m+AeU95wWEFAgqDXbv0O7lMq7RJNkCQ37nw4SyOKT8Eizh8+soBKurMYNEbHfhwIMdj8G3fX1e5g5f1kJUT5zVx9ZHv8OChspQWqCGxXyecQDMAt2IFZEvA85U2gMkNAm0KE+3R0gaoLIAuoTx/mGhCloVejyu+eMEtCwT/cAg56wQNVw67+Mr3+MIGqqyNIdGpwW843ahFxZz9ix7XxlBJKrwIeQpRy04wOiEWJ5Nnjj036wP6nlA+iEPyeMjSYhAOR5dzrEiGoBW4OVNzC7DIhDu85ZT1EteHPrlwLA6X+BOr7fLhTPXgVhOJVr24lJklw4APc1rx+crDqRiAAn7T6yMIQWnK3nrjBZ2EnKsD8uID0LCBI9iT6xABylGXKobplfq5PX8Y1SLcrW4l18z9Yj2vHxoT4v7xp0IfVqfOApeu8ghycCbTGtUafrNVcoI+hyjwOzFbsWdDk+X6wJuxsKu2egv5z6Y20WpgfGPCPc+Th+Li3C09RnzveCCOjp2e/nJ7dGodzZx84sPuq5cJAhBUUDhZZebcC4tWCTyzfeOG7XA/Kepn1/ifrnL7z+vn9Yzmz/q+Gf9DwZyfx//2SAgICAgICAgICAgICAgICAgICAgIA== - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220801' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT - request: method: get uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png @@ -2623,1019 +182,6 @@ http_interactions: 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 http_version: recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604350' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222881209384161283.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0845309cb9c27fc1ab21d39b7b4eec23", - oauth_signature="vuGxDfvE5VlqDoEhKQecDdpslgQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796448", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2970' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644848815779; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_AcgGvkyqZMxPuXzd/80cSA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - dfeb647881f0c2d4fd8b5bb70434d07c - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '894' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '137' - X-Transaction: - - 00ab4bde005cb1b6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:56:15 +0000 2020","id":1222881209384161283,"id_str":"1222881209384161283","text":"@heyscrumpy - what\u2019s with you guys & girls? @zammadhq @MrThorstenEckel","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[0,11]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[46,55]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[56,72]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222872891320143878,"in_reply_to_status_id_str":"1222872891320143878","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91561' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222872891320143878.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9a015e27bda3228c0dfd24d91b42e81d", - oauth_signature="fQBcSbPWXxnrtavdbprC8Zw5Azs%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796449", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2903' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644924464551; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_9+Br9A61XrqTbFxPH7rLGg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3a440e7e126060138b069e2c9000fc80 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '893' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '133' - X-Transaction: - - 00df0593008cfe0d - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:23:11 +0000 2020","id":1222872891320143878,"id_str":"1222872891320143878","text":"I - haven\u2019t seen Tweets, articles or books about doing support for small - companies & indie businesses. Have you?\n\nWou\u2026 https:\/\/t.co\/e1cwhjvxEe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e1cwhjvxEe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222872891320143878","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,"user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91562' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4AAJAA0AFQACACVhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAAGAQIEBQcDAAj/xAAYAQEBAQEBAAAAAAAAAAAAAAACBAMBAP/aAAwDAQACEAMQAAAB19FTvEpeWJl7RYYB1K37iJEaHVsRfeKGvYjiZSOaBJeORDqoOmXarm+k7SK7ztMipFRjPYxPynth1NjxG1SZDxQ8I3nptMSeREGhhmA402VQOwJ7D69pLWiFvuCPMrFST50b1C9zTUp6oUO5i5qupSjL1wiI8PmUYf/EACcQAAEEAgECBQUAAAAAAAAAAAECAwQFABEQEhMGFCA1QRUjMTIz/9oACAEBAAEFAuZtnDiLTcV68akMvAnCc3m+bmxbgsSnFqc2QEPrbVS2wlBRzqzfB/EpZsbxioYx2kZ6hVpbM5sRpbC+5G5UNiGC1cIeZGaTp5RIuUFUqM0WovzzJjj66BZi6lq+3LVYrn2qU43vseizR0uvKbSFuAtQn0jH2jIlEaHocSFoW6lKgylLa1NwjSHuhXG+d5cxy+75qYyhSZEx+u6Y4WcJzfFrdRoRqbBywCE7T2wkNtaU6gldzLMFmDcMP51Y5+jn9fDXuycVx8+KPcxx/8QAHxEAAgEFAQADAAAAAAAAAAAAAAECAxAREjEhBBNh/9oACAEDAQE/ASMcmiMYvTxgWCr476bxWpOjul+Fdrl/jv03Kqe/tqUFLpzgmTeT6z//xAAdEQABBAMBAQAAAAAAAAAAAAAAAQIDEBESITEi/9oACAECAQE/ARzsG6mcmad6Kikfl7ar0bJqpFc1Rr83InRSNvTB/8QAMBAAAQMCAwcCBAcAAAAAAAAAAQACAxEhEiAxBBATIkFRcSMyJFKBgkJhYnKRobH/2gAIAQEABj8C3hk0nMegFVbaR9QVWKVr/Bz6gzO9jU4vOJxN1W/8LE1zmu7tNFwJT6oGvfMb8rjbwEcZrVVj0XM5pHhVbY62Ub/maDkI7pkNOZpcCqOfdVxWRwwyU70UZH4xhUcZ1a0DK3aSKYg5pTTGCdl0/SB1+qkDTaqjds0nwvKdbDvUKJ5FmyVTK64RlEvQXQxNueqe1sRKEeE1P5aIRAVAu5UyuYdCKJ8MwBwWcFyOOHoqtpieblSbQf2jO6WE83dUdBKL6tXsdGD3XB0HTLwx6s3yjp5UvFko9p9gsKKhRqEXHVBR8N/qE2b0og2X0pP6K1Cd4R8n/V9jt53fYN//xAAnEAEAAgEDAwMEAwAAAAAAAAABABEhMUFREGFxIIHhkaHB8LHR8f/aAAgBAQABPyGPSp/2E88RqgXwvxKnvzdTfRo8D+Z7RG1sNc+YXKjtwndvEUCfwt/no6+tAlaCN4t124pVtcXzG6TvdIoxnQi9NFWwxKvKKT2m/UHdBUcNLU4FqJmQdAWIV2cZlnbiwJ8Vb5uMuKxOalRXXLLKdwx9oj9BTjav1tHOB1R2okKIOzUvXECrcBoU/EOTvITxEzK6rm7TT7P2lFKtQlBNFwTLmmDUf6gf7ALitIA8Co+jUpSmvtwz2X3IQLwwu6PeZ6ry5WL74t91+scXqWMUzDdDRiLQAuYa2lvVesK+qs7L9C1jPzXjzbeJt3B/qczGcCdptBiCtWN5fRrhvkslyxsZfpO3vKfJPvnSjS/TBNZNDPyjoml++vV//9oADAMBAAIAAwAAABB/kE97MaC8Nf8AIkMvspjvOu5fx//EAB0RAQEBAAICAwAAAAAAAAAAAAEAERAxIVFBcdH/2gAIAQMBAT8Qu0y3UtY2cAeNn2RMZ4QTw3Ixb+ogDveWF6nww7+oymSr6RhQXyWUEkPV/8QAGhEBAQEBAQEBAAAAAAAAAAAAAQARMRAhQf/aAAgBAgEBPxC4Cw7BGnrT9SOX36NbNhzsF1s8Bg/sixIz3rhF9zP/xAAjEAEAAgIBBAMBAQEAAAAAAAABABEhMUEQUWFxgZGh8LHx/9oACAEBAAE/ENdDqIhv5CJi6f6h90LsA9uFzH9bsEHk2fJPPKOZn30Oo6hoMIu1/IfriVczQtZtu27zX3LeIdLFeDP6MNj1AYdsjcoeXbIB2Xtzaw7xMdjiKaz3jqVAAqvBywBCg8+N4WQGe1gyj3tn41LqLmTO+5LCGgcN8N95nPu9KxdHZr9hgVDGwsMqK99HIRDTslTu8mesH0ECrgbR8ESAJZBGyoSrw3c3Em4GLDetk1XisQBqNOqlxA0TdJre2/1Ez2UmKKxKDaXbwxFp3FHsssvzmKI6x4BfW0YN2VARLug3hn1f0hgAeILTPTX61XwtmWu/ht8kP6CKOjvW/mK8LDUzTDAS1ck0eS3PmH/2sxYC96XUBejHwVCdHoDd+sUpig3QwmgOxBCcQeAaqAooVEK3VSgIK+GqJapTT7UftIPhm/MG57T30AzmYIUKwjgTkgLdoVV9BmaEqOTvRxL3oNOgxV+b3A7zLue0qlhY4Rjf2pb6lPAiOllCG9gqvHeHUW72TdWFBdPBDrENj2viCCysEVXbvB37WgRG/TD3Cwuby8u32Z/xs/p9mfw+7pU/Yz9MepDOXrp//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59418' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/651386341171703809/t2jAQDHu_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59422' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Tue, 06 Oct 2015 13:17:40 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/651386341171703809 - X-Cache: - - HIT - X-Connection-Hash: - - 9a3325add8fd54617c3964c5b7f17fd5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220805' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/695741537964179461/2xwxUiGU_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '76635' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Fri, 05 Feb 2016 22:49:23 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/695741537964179461 - X-Cache: - - HIT - X-Connection-Hash: - - 07e9c29bdb6caa8e860115725514fa1c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '5465' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT - request: method: get uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true @@ -3888,1456 +434,4 @@ http_interactions: Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' http_version: recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604355' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1203364293552427008/_KFRXMoC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '164030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Sat, 07 Dec 2019 17:20:59 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1203364293552427008 - X-Cache: - - HIT - X-Connection-Hash: - - 73f0d65b4198134d08b055a8f32af592 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1013540643988049920/y49Ifgdi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '69311' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Sun, 01 Jul 2018 21:49:34 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1013540643988049920 - X-Cache: - - HIT - X-Connection-Hash: - - b6abf8329d70ed402270f83f3a3d272d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1095305778460798983/mA-tSgeW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '180213' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Tue, 12 Feb 2019 12:55:02 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1095305778460798983 - X-Cache: - - HIT - X-Connection-Hash: - - 4f62d93a7d984d9f6c1bbbd4800d8953 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/832141531255623681/D-mNs8yL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59425' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Thu, 16 Feb 2017 08:14:16 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/832141531255623681 - X-Cache: - - HIT - X-Connection-Hash: - - 8b1044a4643f6b81360bb50474f708f6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218685451793362945/GfdbCX8w_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '192603' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Sun, 19 Jan 2020 00:01:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1218685451793362945 - X-Cache: - - HIT - X-Connection-Hash: - - b894a9af26bc849bf813155bede4d87b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59424' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="aeaf906f8767cadcf09c4c5a10532123", - oauth_signature="zsUNwbi7cqDERnuzS%2Faz%2Fztqxiw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '272' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:36 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645660684099; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:36 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_KyzX7TFtLloo2KN4Sox/Sg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:36 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 480636c4358b5b3f4135db1aaf625a51 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '178' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '181' - X-Transaction: - - 00c549fc00aa1d57 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.07,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="58fd5ddd399a461ee8569ef9df88ee50", - oauth_signature="itBgKdu4ephlrJ7iZzQATIF1eHU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '279' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:37 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:37 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645701833137; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:37 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_G/zRB+RLggbfpaDVNKFV+Q=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:37 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e5e2f313e2022fb301596865209d5d8a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '177' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '119' - X-Transaction: - - 005b4ffc00e580a2 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.011,"max_id":1224575206770954240,"max_id_str":"1224575206770954240","query":"hash_tag1","refresh_url":"?since_id=1224575206770954240&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:37 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9cf95b79f5604737654cc3586a994cc2", - oauth_signature="eqPYzvtb60sqo3UCgYLHxYRaBJ4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796567", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '124247' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656793434467; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_bo02d/mRLZ3dsuphPy1YBw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 28d46a1d9234538c161898fdeb32d5a6 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '176' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '242' - X-Transaction: - - 006af0130039d645 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93910,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover - jobs for design, product, ux, ui, engineering, pm, research, and more via - Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue - Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373449,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq - Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users - ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, - Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, - Discourse & other open source instances for you, so you don''t have to. - Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun - Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come - and join our team to bring Zammad even further forward! \n\nIt''s gonna be - amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, - Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | - Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri - Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25761,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881949,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692558,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692558,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.091,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7410ad8dffcb1424c6f77ec46b914605", - oauth_signature="iAP4GpRETQ8HDbs5Gmj7dWTZRh0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '273' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656877966283; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_ARCDxbX8FLNE9hnHrhkmTw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 8bf48bdb333352d6cdd20ff4806bbbab - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '175' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00a1d15600695a9b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.009,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9d0fac0820ed0f353ebc216e1d7d6b10", - oauth_signature="yhv7odp6G09X%2FoM4u4Dz8DCGLhA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '278' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656911953573; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_g2vaZ2vWRME57HD7F1MWVA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6736ab562f0f0ee209994ecd260a1ca8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '174' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00b82890000b03a1 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.01,"max_id":1224575676411310081,"max_id_str":"1224575676411310081","query":"hash_tag1","refresh_url":"?since_id=1224575676411310081&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:29 GMT recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_creates_an_article_for_each_recent_tweet.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_creates_an_article_for_each_recent_tweet.yml index 8c800525d..3c8e1c562 100644 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_creates_an_article_for_each_recent_tweet.yml +++ b/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_creates_an_article_for_each_recent_tweet.yml @@ -77,133 +77,7 @@ http_interactions: - '0' body: encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93909,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + string: '{"statuses":[{"created_at":"Thu Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT @zammadhq: Good morning! Come to our Global Office. And stay where your heart is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad @@ -218,80 +92,6 @@ http_interactions: href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373445,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users @@ -302,36 +102,6 @@ http_interactions: Discourse & other open source instances for you, so you don''t have to. Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come and join our team to bring Zammad even further forward! \n\nIt''s gonna be amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca @@ -345,2226 +115,15 @@ http_interactions: href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25758,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881888,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692561,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692561,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Dec 01 06:30:03 +0000 2018","id":1068754078241501184,"id_str":"1068754078241501184","text":"GitHub + Trending Archive, 29 Nov 2018, Ruby. mgleon08\/example-crawler, tongueroo\/jets, + testdouble\/standard, matthe\u2026 https:\/\/t.co\/JhiOoxbwVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JhiOoxbwVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1068754078241501184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/github.example.com\/awesome\/\" rel=\"nofollow\"\u003eGithub + Awesome 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,"user":{"id":993040996744159233,"id_str":"993040996744159233","name":"example","screen_name":"example","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":105,"listed_count":1,"created_at":"Sun + May 06 08:13:18 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9355,"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\/996714244090417152\/2QDJvxkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996714244090417152\/2QDJvxkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993040996744159233\/1526470497","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"},"geo":null,"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"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' http_version: recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1163492126556135425/puANjvZp_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 19 Aug 2019 16:43:14 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1163492126556135425 - X-Cache: - - MISS - X-Connection-Hash: - - b76bd2ed91a44066b96fb3713dc830bc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '128' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/508915774816149504/T4g--mOT_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '233790' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 08 Sep 2014 09:50:30 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/508915774816149504 - X-Cache: - - HIT - X-Connection-Hash: - - c20c82c2eb58f26c8bb193866ffa6fcf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '120' - Content-Length: - - '1807' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427776654135297.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ca8db5ad67ab2ff8d7e9453978aa7af6", - oauth_signature="KVwPd6LavD6jIuLek2FCVfK6je0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2670' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644039762192; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:20 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_QpgW5IUf4LYMtKVSgxlyiw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:20 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b33641fb2e72ef7f3887711c86674929 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '899' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 00cccbb0002de89b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:21:45 +0000 2020","id":1224427776654135297,"id_str":"1224427776654135297","text":"@mrflix - I\u2019d prefer to pay for something but thanks though!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrflix","name":"Felix - Niklas","id":15217750,"id_str":"15217750","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427517869809666,"in_reply_to_status_id_str":"1224427517869809666","in_reply_to_user_id":15217750,"in_reply_to_user_id_str":"15217750","in_reply_to_screen_name":"mrflix","user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501282' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - HIT - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gALABQAEQAlAAlhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAADAQEBAQEAAAAAAAAAAAAEBQYDAgEHAP/EABoBAQACAwEAAAAAAAAAAAAAAAUDBgIEBwH/2gAMAwEAAhADEAAAASDwTbPdTy1vho7ZQUEAZtrILtCt2mEXzCP1nj10Dr/L1P8AQTjtPRwAvSIqjm9Mbvmi4xIRjOJ66WejqoaxIl51GONmFMKSQwu80ZeHkcF+xvVVPMWfRhkvl2dkj0krPGMro2F+q/LPeDFMFt/Is9ghjkW6obw+wvKqQptW0LgDRcl//8QAJRAAAgMAAQQCAgMBAAAAAAAAAgMAAQQRBRITIRQxEDIVJDRD/9oACAEBAAEFAggQJU54p24AJWpToUK6neECDdTyrqfNz1bC5jK5m7OcLXoKvIy5zcvQ2W1ly+bnR0WTRvvoo2aC/u8Tj8iNlYIFeaqpCvI/l7+F4VM17fgOn8eyNV2QiEa6ExDdHkYMzl5TfmUy3ZgIekJz5ha2u7ujiFjDAtWnpthnaTxI1rMHZXLNrfVGd0Zt998c2+5V2LUDTdmu9yZenTM292V+bcOtWmE2+PPC/WvVjzTFeNyepKzZS3YM+bF0EuNTyhu8U+ZLr0yvQNILPXqIh6hrXL06CnSvWt1x/ucS/o/q/q/2/wCg/fT/APS76L8f/8QAHhEAAgMBAQEAAwAAAAAAAAAAAAECBBEDIRITFCP/2gAIAQMBAT8B7ssE62rWXqjiyVbTr1H/AEnh1XnpdgnAdKRKwivNe6dJbp+v9kuArWlWzp+RPwpx+kSrnNnBtMqrShElBH//xAAfEQADAAICAgMAAAAAAAAAAAAAAQIDEQQSIUEiMTL/2gAIAQIBAT8By0ZTlZH6O2/sqS6ORk0jL5FPnZtFN6OU/kU9l4+y0Tx0i4OXGmTi9sqNMnGZEZpTKSL/AEI//8QAKhAAAgIABQIFBAMAAAAAAAAAAQIAEQMQEiExQVEgIjJhcRMzQpEEI2L/2gAIAQEABj8C8G87zysL7ZcieoZ7sJWvebjLXhWGgtz7zd2nJnqm7mcw43lrD4vvO2ZUdfCAOTFwK6b/ADNC209an/JjMVII5EZ1W9M4qc5WxoQ+V9aDUL4hYrYM1EV7QArv0hV73EbDUVe9k8zbIJ+I5hA8qiBV5brNJFe4mq1CfMY3e+kS5eY7SxEBJW74laPqAdRPyHzLB1X6hA4/XiBQWeRUTGXDB/q1ldVat65MGrAbHOLiUKaiooH97wY9M5xEUc/bNWS3z0Erppy+2rT7S5XAwJVhuCIzNjuxfYxq/kvbdviow+q1MoRvcDiDxnNfB//EACYQAQACAgEDBAIDAQAAAAAAAAEAESExQRBRcWGBofCR8SCxwdH/2gAIAQEAAT8h67WIsQRkVU7Su8g3Kwu/yT9j0m2wLhSprU0BKXwvEW7F2wM4YHDQoR2B7vSF6p7dJC2JipO6aGM9VuRgrcYdoGCqGspCEApUoIdTjLz3S4ycW5lQQbrGvjM5UlOPmYjBbFNj68z0X33mC8M/6OEbe1hCSrGPR9ZtG5XEtcHjv8yxYUIOveou5q9hjF5EpA1fKjPCKPQitZKe6nzFi3xoldoZa/xcJhR9GYRGZ4hq+n7zPq/crLIYpxiImd3AaVA8GC3Vmjj7MjuzGvPE1+40OzPZB2hNqejLKOm+IqkKAMsR46gyFegMRwaBachWH8eJUOaDFT6h4G5YcihMGxku2X6cag4iX5tKRgL4FXYaK1CgevC1VHjGMRHG8XwqPiiPF5EmOCv8V3yIdB8uf1df/9oADAMBAAIAAwAAABDCY+2aiaIgjMdoqN9TyJEfD3df/8QAIREBAAICAQQDAQAAAAAAAAAAAQARITHwQXGR4VGx0fH/2gAIAQMBAT8Q2TIYdTuXI1LGWXdZidO3t7+rlF4UgZUCMcEUtuq8x3c/h5uEE55xmEfjXO0S7qLNlFy8/IACqtRcnT1AuolkwhgbQ8yoM//EABwRAQEBAQEBAAMAAAAAAAAAAAEAESFBMRBRYf/aAAgBAgEBPxCHpIUoufq1fwE/9jpy714S3sjbKdPkqwmX94XCxMn1zlpw5HhHnCLG+oXmIiLkv//EACYQAQACAgECBgIDAAAAAAAAAAEAESExQVFhEHGBodHwkbHB4fH/2gAIAQEAAT8QJiakxCMoYj4odUIeHtVvUPAFygHpUFG6r0h7W8xP8RFpgImY6w81PVmMSrBVeAjFkpsK/V1YFTS9BgidYoWnrAI8yBEnvsy/3GYal2E3Q8kP4il+eN/xKj40E9A1sM/iHcQ6hf6jLAOuviDNGnb4lXjlaDdeUfBD8HxPpR8QUffmBccfe8CkgW1Wg3LkDCmSMrvvUJHt3d/JdQOSbtG6pyiYYDaUJCCqOBcHMfzHfwMYMNHJ/UqW0FmV0MSzItVbwYC7zDYNqREOMMHeHeUKyjhsKzChK6IrKFMHWWEjbCu2Rlzcwsatoa6Ql8Bq/pO8ffSAKExnBxdyisZrB9C8vrGLN50JydhKxXpRY75qIOGCWdXAZ6RnJlEwgL7vaGGe0fMZIDgrTCZZuzVR2n2+YIU0gUWOEGPLr8QQK28dwmIKPlqd8psZRJhaD2glgi3umkOO6Maarrt8jiIXdLLrPxEF0NjfxL/R+IKijWHUpFF8mSP+vTENgGV7Sk0+yqRSibKW7DiCLApQ7LwhbapRmD+8LluN5k4FrwEXUu1xiqjRrB2xLo6SbJ93+pmh1uFRRUJwFKE2ImRl2xpY8UBQEGgMwG/lCIxGMggaNBmIBVbcxy5MDkre44LGkvpGul67xF3jPM8k1T98/f4Rr85q82e/frwGnp4f/9kg - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427517869809666.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1a244660e2f97a71bf345750e36e98c3", - oauth_signature="PArGPzilTQ9HzlIUQENIFYdSyZg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2712' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644120417217; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_L0kogBi44RZDUuRVJuDt4w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 962314ad139bd7efb6b581060b1d327d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '898' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 0022b3b0007f2a30 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224426978557800449.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1839c84f7948a2fa6ef3a8b86f11fcb8", - oauth_signature="P34TG7JX5tOOMfc1zGXPQJB9n%2FY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796441", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2604' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644169456926; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_yi1It/3F2KszoRZr9LKSPg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e4fb6e6af304e2792218fcdac6b43062 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '897' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '126' - X-Transaction: - - '0070158b000776af' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:18:35 +0000 2020","id":1224426978557800449,"id_str":"1224426978557800449","text":"Lightweight - CRM recommendations? Just want something better than Intercom to keep track - of support contract details and that kind of thing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"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,"user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501284' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - MISS - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gALABQAEQAlAAlhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAADAQEBAQEAAAAAAAAAAAAEBQYDAgEHAP/EABoBAQACAwEAAAAAAAAAAAAAAAUDBgIEBwH/2gAMAwEAAhADEAAAASDwTbPdTy1vho7ZQUEAZtrILtCt2mEXzCP1nj10Dr/L1P8AQTjtPRwAvSIqjm9Mbvmi4xIRjOJ66WejqoaxIl51GONmFMKSQwu80ZeHkcF+xvVVPMWfRhkvl2dkj0krPGMro2F+q/LPeDFMFt/Is9ghjkW6obw+wvKqQptW0LgDRcl//8QAJRAAAgMAAQQCAgMBAAAAAAAAAgMAAQQRBRITIRQxEDIVJDRD/9oACAEBAAEFAggQJU54p24AJWpToUK6neECDdTyrqfNz1bC5jK5m7OcLXoKvIy5zcvQ2W1ly+bnR0WTRvvoo2aC/u8Tj8iNlYIFeaqpCvI/l7+F4VM17fgOn8eyNV2QiEa6ExDdHkYMzl5TfmUy3ZgIekJz5ha2u7ujiFjDAtWnpthnaTxI1rMHZXLNrfVGd0Zt998c2+5V2LUDTdmu9yZenTM292V+bcOtWmE2+PPC/WvVjzTFeNyepKzZS3YM+bF0EuNTyhu8U+ZLr0yvQNILPXqIh6hrXL06CnSvWt1x/ucS/o/q/q/2/wCg/fT/APS76L8f/8QAHhEAAgMBAQEAAwAAAAAAAAAAAAECBBEDIRITFCP/2gAIAQMBAT8B7ssE62rWXqjiyVbTr1H/AEnh1XnpdgnAdKRKwivNe6dJbp+v9kuArWlWzp+RPwpx+kSrnNnBtMqrShElBH//xAAfEQADAAICAgMAAAAAAAAAAAAAAQIDEQQSIUEiMTL/2gAIAQIBAT8By0ZTlZH6O2/sqS6ORk0jL5FPnZtFN6OU/kU9l4+y0Tx0i4OXGmTi9sqNMnGZEZpTKSL/AEI//8QAKhAAAgIABQIFBAMAAAAAAAAAAQIAEQMQEiExQVEgIjJhcRMzQpEEI2L/2gAIAQEABj8C8G87zysL7ZcieoZ7sJWvebjLXhWGgtz7zd2nJnqm7mcw43lrD4vvO2ZUdfCAOTFwK6b/ADNC209an/JjMVII5EZ1W9M4qc5WxoQ+V9aDUL4hYrYM1EV7QArv0hV73EbDUVe9k8zbIJ+I5hA8qiBV5brNJFe4mq1CfMY3e+kS5eY7SxEBJW74laPqAdRPyHzLB1X6hA4/XiBQWeRUTGXDB/q1ldVat65MGrAbHOLiUKaiooH97wY9M5xEUc/bNWS3z0Erppy+2rT7S5XAwJVhuCIzNjuxfYxq/kvbdviow+q1MoRvcDiDxnNfB//EACYQAQACAgEDBAIDAQAAAAAAAAEAESExQRBRcWGBofCR8SCxwdH/2gAIAQEAAT8h67WIsQRkVU7Su8g3Kwu/yT9j0m2wLhSprU0BKXwvEW7F2wM4YHDQoR2B7vSF6p7dJC2JipO6aGM9VuRgrcYdoGCqGspCEApUoIdTjLz3S4ycW5lQQbrGvjM5UlOPmYjBbFNj68z0X33mC8M/6OEbe1hCSrGPR9ZtG5XEtcHjv8yxYUIOveou5q9hjF5EpA1fKjPCKPQitZKe6nzFi3xoldoZa/xcJhR9GYRGZ4hq+n7zPq/crLIYpxiImd3AaVA8GC3Vmjj7MjuzGvPE1+40OzPZB2hNqejLKOm+IqkKAMsR46gyFegMRwaBachWH8eJUOaDFT6h4G5YcihMGxku2X6cag4iX5tKRgL4FXYaK1CgevC1VHjGMRHG8XwqPiiPF5EmOCv8V3yIdB8uf1df/9oADAMBAAIAAwAAABDCY+2aiaIgjMdoqN9TyJEfD3df/8QAIREBAAICAQQDAQAAAAAAAAAAAQARITHwQXGR4VGx0fH/2gAIAQMBAT8Q2TIYdTuXI1LGWXdZidO3t7+rlF4UgZUCMcEUtuq8x3c/h5uEE55xmEfjXO0S7qLNlFy8/IACqtRcnT1AuolkwhgbQ8yoM//EABwRAQEBAQEBAAMAAAAAAAAAAAEAESFBMRBRYf/aAAgBAgEBPxCHpIUoufq1fwE/9jpy714S3sjbKdPkqwmX94XCxMn1zlpw5HhHnCLG+oXmIiLkv//EACYQAQACAgECBgIDAAAAAAAAAAEAESExQVFhEHGBodHwkbHB4fH/2gAIAQEAAT8QJiakxCMoYj4odUIeHtVvUPAFygHpUFG6r0h7W8xP8RFpgImY6w81PVmMSrBVeAjFkpsK/V1YFTS9BgidYoWnrAI8yBEnvsy/3GYal2E3Q8kP4il+eN/xKj40E9A1sM/iHcQ6hf6jLAOuviDNGnb4lXjlaDdeUfBD8HxPpR8QUffmBccfe8CkgW1Wg3LkDCmSMrvvUJHt3d/JdQOSbtG6pyiYYDaUJCCqOBcHMfzHfwMYMNHJ/UqW0FmV0MSzItVbwYC7zDYNqREOMMHeHeUKyjhsKzChK6IrKFMHWWEjbCu2Rlzcwsatoa6Ql8Bq/pO8ffSAKExnBxdyisZrB9C8vrGLN50JydhKxXpRY75qIOGCWdXAZ6RnJlEwgL7vaGGe0fMZIDgrTCZZuzVR2n2+YIU0gUWOEGPLr8QQK28dwmIKPlqd8psZRJhaD2glgi3umkOO6Maarrt8jiIXdLLrPxEF0NjfxL/R+IKijWHUpFF8mSP+vTENgGV7Sk0+yqRSibKW7DiCLApQ7LwhbapRmD+8LluN5k4FrwEXUu1xiqjRrB2xLo6SbJ93+pmh1uFRRUJwFKE2ImRl2xpY8UBQEGgMwG/lCIxGMggaNBmIBVbcxy5MDkre44LGkvpGul67xF3jPM8k1T98/f4Rr85q82e/frwGnp4f/9kg - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1372613935/image_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '87030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1372613935 - X-Cache: - - HIT - X-Connection-Hash: - - af7ab6266348ffac8cbb4aa67ea19c4e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - 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rUonA6AAk6Y7b/yHL1/ecb+I1l9t/wBGq5+y1/E6zWPalcFbdrMpsIYREgRxsiwmj5GE/wDdR6lR5J/uGj1BtO3a3Yz7jdzw0XMtaTEprii1vAJCmyVDaVKBCkkH0IPXSa51OvA+UfeNWwhpta77w7OLwNTtyqy6NVoyiy7sIwsDhTbqDlLiT0KVAg60OdffZ/eTvxyqWQbZrJwmWKCgfDZ7hPzFlR/JlEZzsJSfYax2V+dn/wBs6cIP9SFV/e8b/DXq4+5Wc/WjbXKOI1qP1JTZM6q5EQf5mIDyr71HCfuB99ZTIjrQspUkhSTg63m4fzXb/wC6mv8AD1j1b/Oi/uGu3n4MccZlO3L+bmuVuN6eKRed2US1aradNrUpqh1naJ9MJCmJCkkFKilQICgQPMMHjGcaavxW1v8A0CF/zH/trO3vmV92vWuP+XbctP/ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223188240078909440.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f0983cc8d2ccb9c7c917494a93e9b6bf", - oauth_signature="oEU2K3H3hQX9uVuasaZ%2ByWvMFcg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796442", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2780' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644317459299; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:23 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_rL1CgHU04UGVa6N+GgrTRg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:23 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3607feb94ada43c77a69b20f8a4b7acb - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '896' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '128' - X-Transaction: - - 0077504c00a9eaac - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/772697070549528579/HFxWLHRD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Last-Modified: - - Mon, 05 Sep 2016 07:23:12 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/772697070549528579 - X-Cache: - - HIT - X-Connection-Hash: - - 3b5e4da44f99eb558e596bb3aa7e90f3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220798' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1094738873039704066/-lDgIqkO_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Sun, 10 Feb 2019 23:22:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1094738873039704066 - X-Cache: - - HIT - X-Connection-Hash: - - 78fd6a3d400935ec9bf72ac2b088426e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223103807283810304.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="270a7a4eccf11544f9af28d85299205a", - oauth_signature="mYxomSx1sBr9ZxmdoYp%2F%2BnGdnSg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796445", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '4774' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644528238733; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:25 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_c1fhs9eqFg5/913EVJEC2w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:25 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 5327d9a3ffb06b4f288d507a02c4791d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '895' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '125' - X-Transaction: - - 00f3aa8500266873 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 04:40:46 +0000 2020","id":1223103807283810304,"id_str":"1223103807283810304","text":"One - of the most disgusting videos i haf ever seen. A Chinese person a live a frog. - #China #coronarvirus https:\/\/t.co\/l81uDqdlOl","truncated":false,"entities":{"hashtags":[{"text":"China","indices":[83,89]},{"text":"coronarvirus","indices":[90,103]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"features":{}}]},"extended_entities":{"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"video_info":{"aspect_ratio":[17,30],"duration_millis":54518,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/320x564\/E9_ZjFgFnwun6x9I.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/360x634\/4c_uXMtdSyZ1SxVu.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/544x960\/AzGc7uMNSi0MYPkw.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/pl\/wV6_mmLI-ktcCFXX.m3u8?tag=10"}]},"features":{},"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,"user":{"id":2519467770,"id_str":"2519467770","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","screen_name":"Nami_fight4life","location":"Obviously - somewhere on Earth","description":"#Anipal Share -\u00bbWorld along with other - living beings in peace+harmony #BeUnique #EnjoyLittleThings #StayStrong #Equality4All - #Voice4Voiceless #SaveLives #UCC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3008,"friends_count":3020,"listed_count":78,"created_at":"Sat - May 24 04:37:39 +0000 2014","favourites_count":23188,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519467770\/1482148273","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218882247870353408/MkRU56G4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146377' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Last-Modified: - - Sun, 19 Jan 2020 13:03:48 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1218882247870353408 - X-Cache: - - HIT - X-Connection-Hash: - - 73d106552eb5d9300d9ad791118d59b4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220801' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALABoACwAFACFhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAACAwADAQAAAAAAAAAAAAAFBgMEBwABAgj/xAAZAQEAAwEBAAAAAAAAAAAAAAADAQIEAAX/2gAMAwEAAhADEAAAATFMqv50O15KnW91iaeGmur3QrG9OWfPt85dQclo0tdRTxa4uOyTDZl33fYr2gpzfxMIwrXK68QrmIkOBZM8SyxSjLvn0u4tlRs8IjrmTw7ElpY6TMSSwJxzNzyvB3Jg/o411mQdgeZEJ6EhPz6xhb3bXBDZuRoUjXGa/kf/xAAnEAABBAEEAAYDAQAAAAAAAAACAQMEBQAGERITFBUhIzI1EDEzNP/aAAgBAQABBQKUmzMIs3x8+tmig8YMsU3lCm0pEUNKukcPJg+ywvF3JfrGtJ6wa9ue5MOdYKbhOk5mkvxJTljqcXRXcVRFG9ZIq+oqnYdeTKqSMEGaaMxfxzJ4bZHXdrL1wQgO24R60JQ9sgk46aa2Yw8lhyCGiiSpmpH+yumNR4tQ51niKbmQR6om+LipviJxlcMs4/MLKc4jaqpFDZ4PxJjfLswvQLa2dbf0/J8WV3MZhv2D/mDJQksQLT6QIhOk5LlOC5Y9h5fl7Ve13JCqn3Ds23RcgSCadVw23bOXYymOPUCCu3Y5l7JXwtBCEaddkDV0RfDMiqvG8rAuGMqPfRzYsq1opB+WtZd/uq+oZzUP1Uf4P/46X+msvnp345//xAAeEQABBAMBAQEAAAAAAAAAAAABAAIQEQMSMSEEE//aAAgBAwEBPwGGOHE94PiCpDvqZWocqafYEDIGpzrgOK6iNuIgjsVUYRozYdX1j9Me5j//xAAfEQACAQQCAwAAAAAAAAAAAAAAAQIQERJBITEDMlH/2gAIAQIBAT8BLji27kINEu6MafqcjHTBiQxeFLsxQmtkmtFib4NkiPyn/8QAMhAAAQMBBQYDBwUAAAAAAAAAAQACAxEEEBIhMRMiMkFRcRRhcyAjUnKBsfAzQmKRwf/aAAgBAQAGPwJ56miIue/4RVeLnHv7RvuP2CIWiIT2OdXA7LyubfIP4lWZrInSe7GiLxAWtasLI60RDhRWg9rjcCnV0oVsGOwnAAFaZ5nZuZQNTqLNGMcDgXG+t7ZDzCbZ5dX1q6unRYjkqozU4sh7DmG7YnXKijJa+STmaIvALR5psYz5BRx/CKex3uY7npTqeiwVp0FLhtDR9KgLwxO8BW4vdk0albCyAZakhP8AFxRAtFcSgJlwMOZYEAyZ4Zixx4eoW0ktG1fTiLQCjaoq2iQDMdB5IOBwuJp2Ujw7dBo36L96ZhdSLicO34FNORoU18j3RAZgDVSRzuJezUlYAah2qNos5cKgOoE7bNcIh9Ag48buHyHW7iKDa5hxCilIzO8qjPFoE21c28fZBwyoVE+PTEWn7pkTKHajOvIKQO4SdztyRhGlKk9F+nL/AGn/ADKzemFD8in9I3H1G/6mqL85KTvd/8QAJhABAAIBAwMEAwEBAAAAAAAAAQARITFBUWFxgRCRobHB0fDx4f/aAAgBAQABPyECtsdjL+JR1fQWo2+wlIZyTYfgqPMbw+kRRHaNMwSuhNJccDgt8xKOsuZXuXxAAmR2YIKzbVizriFWOsQNbNn7lzyMS6dQCEl9VXaXi3kFZDmFWtC+4Pb/AIhNwid4Y0TB6ZS5XvKrpiaL2ZS0Ut+IfF38l4Kmy22+sx9ESyW8jUVqby5qllFtvicsxBoD4lWu4g4fEfAJFF7i04IjZlenXKjccr3TtgYC1FHQPJjAvkaDrKsZV0IdpJB/cAaFVxXEpzCnqdpoSxiury3gigAFhXsSjONzTlIzSzcrpJz+ZUs9PoveZdNYjmY33IjAcfma3IpuYH16JmlsNrV8e8LbG47rESDzTl/UaYGXfmW06I87MCwIBovTuMcKvKRR7byxuhsfw7SwTbPpTxoS9klgTT+f+RV/gNWVy3gJ7Hx+YplLF4mxlY4Wv2+09jhA18wtNwrH+VSni8B/lp8TP6XE/j4n9XiaPf0g+JPhH0nwf16f/9oADAMBAAIAAwAAABCq4ZIMy702HRiHiDY6g89xIbjr/8QAHhEBAQEBAQABBQAAAAAAAAAAAQARITFBEFFhwdH/2gAIAQMBAT8QD5ggBdoXiOImHxdDyxIZzmfR5GfklcZOechVsnXq45y2dDPkhcsD7BjP2P6H721v/8QAGxEBAQEBAAMBAAAAAAAAAAAAAQARIRAxQVH/2gAIAQIBAT8QH54PLhLcKHGX5aWKcGXW5t2Ob8bEhj2M3pjfkTg5elWIw5Frlwxv/8QAJxABAAIBBAEDBAMBAAAAAAAAAQARITFBUWGBccHwEJGhsSDR4fH/2gAIAQEAAT8QGCsQ39wfshuzAvyf4kQ6xTlFzmx9pm5QPOiOBRruEUBwK1jcWDxBJIl22dmGaTsCK06sfoQJlyrRzfb7Q20Ar4cf1LcwFcpq/XEZhQ6SqINwwaBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT - request: method: get uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png @@ -2623,1019 +182,6 @@ http_interactions: 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 http_version: recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604350' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222881209384161283.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0845309cb9c27fc1ab21d39b7b4eec23", - oauth_signature="vuGxDfvE5VlqDoEhKQecDdpslgQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796448", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2970' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644848815779; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_AcgGvkyqZMxPuXzd/80cSA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - dfeb647881f0c2d4fd8b5bb70434d07c - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '894' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '137' - X-Transaction: - - 00ab4bde005cb1b6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:56:15 +0000 2020","id":1222881209384161283,"id_str":"1222881209384161283","text":"@heyscrumpy - what\u2019s with you guys & girls? @zammadhq @MrThorstenEckel","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[0,11]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[46,55]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[56,72]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222872891320143878,"in_reply_to_status_id_str":"1222872891320143878","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91561' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222872891320143878.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9a015e27bda3228c0dfd24d91b42e81d", - oauth_signature="fQBcSbPWXxnrtavdbprC8Zw5Azs%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796449", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2903' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644924464551; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_9+Br9A61XrqTbFxPH7rLGg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3a440e7e126060138b069e2c9000fc80 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '893' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '133' - X-Transaction: - - 00df0593008cfe0d - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:23:11 +0000 2020","id":1222872891320143878,"id_str":"1222872891320143878","text":"I - haven\u2019t seen Tweets, articles or books about doing support for small - companies & indie businesses. Have you?\n\nWou\u2026 https:\/\/t.co\/e1cwhjvxEe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e1cwhjvxEe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222872891320143878","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,"user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91562' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59418' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/651386341171703809/t2jAQDHu_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59422' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Tue, 06 Oct 2015 13:17:40 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/651386341171703809 - X-Cache: - - HIT - X-Connection-Hash: - - 9a3325add8fd54617c3964c5b7f17fd5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220805' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALABoACwAFACFhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAACAwADAQAAAAAAAAAAAAAFBgMEBwABAgj/xAAZAQEAAwEBAAAAAAAAAAAAAAADAQIEAAX/2gAMAwEAAhADEAAAATFMqv50O15KnW91iaeGmur3QrG9OWfPt85dQclo0tdRTxa4uOyTDZl33fYr2gpzfxMIwrXK68QrmIkOBZM8SyxSjLvn0u4tlRs8IjrmTw7ElpY6TMSSwJxzNzyvB3Jg/o411mQdgeZEJ6EhPz6xhb3bXBDZuRoUjXGa/kf/xAAnEAABBAEEAAYDAQAAAAAAAAACAQMEBQAGERITFBUhIzI1EDEzNP/aAAgBAQABBQKUmzMIs3x8+tmig8YMsU3lCm0pEUNKukcPJg+ywvF3JfrGtJ6wa9ue5MOdYKbhOk5mkvxJTljqcXRXcVRFG9ZIq+oqnYdeTKqSMEGaaMxfxzJ4bZHXdrL1wQgO24R60JQ9sgk46aa2Yw8lhyCGiiSpmpH+yumNR4tQ51niKbmQR6om+LipviJxlcMs4/MLKc4jaqpFDZ4PxJjfLswvQLa2dbf0/J8WV3MZhv2D/mDJQksQLT6QIhOk5LlOC5Y9h5fl7Ve13JCqn3Ds23RcgSCadVw23bOXYymOPUCCu3Y5l7JXwtBCEaddkDV0RfDMiqvG8rAuGMqPfRzYsq1opB+WtZd/uq+oZzUP1Uf4P/46X+msvnp345//xAAeEQABBAMBAQEAAAAAAAAAAAABAAIQEQMSMSEEE//aAAgBAwEBPwGGOHE94PiCpDvqZWocqafYEDIGpzrgOK6iNuIgjsVUYRozYdX1j9Me5j//xAAfEQACAQQCAwAAAAAAAAAAAAAAAQIQERJBITEDMlH/2gAIAQIBAT8BLji27kINEu6MafqcjHTBiQxeFLsxQmtkmtFib4NkiPyn/8QAMhAAAQMBBQYDBwUAAAAAAAAAAQACAxEEEBIhMRMiMkFRcRRhcyAjUnKBsfAzQmKRwf/aAAgBAQAGPwJ56miIue/4RVeLnHv7RvuP2CIWiIT2OdXA7LyubfIP4lWZrInSe7GiLxAWtasLI60RDhRWg9rjcCnV0oVsGOwnAAFaZ5nZuZQNTqLNGMcDgXG+t7ZDzCbZ5dX1q6unRYjkqozU4sh7DmG7YnXKijJa+STmaIvALR5psYz5BRx/CKex3uY7npTqeiwVp0FLhtDR9KgLwxO8BW4vdk0albCyAZakhP8AFxRAtFcSgJlwMOZYEAyZ4Zixx4eoW0ktG1fTiLQCjaoq2iQDMdB5IOBwuJp2Ujw7dBo36L96ZhdSLicO34FNORoU18j3RAZgDVSRzuJezUlYAah2qNos5cKgOoE7bNcIh9Ag48buHyHW7iKDa5hxCilIzO8qjPFoE21c28fZBwyoVE+PTEWn7pkTKHajOvIKQO4SdztyRhGlKk9F+nL/AGn/ADKzemFD8in9I3H1G/6mqL85KTvd/8QAJhABAAIBAwMEAwEBAAAAAAAAAQARITFBUWFxgRCRobHB0fDx4f/aAAgBAQABPyECtsdjL+JR1fQWo2+wlIZyTYfgqPMbw+kRRHaNMwSuhNJccDgt8xKOsuZXuXxAAmR2YIKzbVizriFWOsQNbNn7lzyMS6dQCEl9VXaXi3kFZDmFWtC+4Pb/AIhNwid4Y0TB6ZS5XvKrpiaL2ZS0Ut+IfF38l4Kmy22+sx9ESyW8jUVqby5qllFtvicsxBoD4lWu4g4fEfAJFF7i04IjZlenXKjccr3TtgYC1FHQPJjAvkaDrKsZV0IdpJB/cAaFVxXEpzCnqdpoSxiury3gigAFhXsSjONzTlIzSzcrpJz+ZUs9PoveZdNYjmY33IjAcfma3IpuYH16JmlsNrV8e8LbG47rESDzTl/UaYGXfmW06I87MCwIBovTuMcKvKRR7byxuhsfw7SwTbPpTxoS9klgTT+f+RV/gNWVy3gJ7Hx+YplLF4mxlY4Wv2+09jhA18wtNwrH+VSni8B/lp8TP6XE/j4n9XiaPf0g+JPhH0nwf16f/9oADAMBAAIAAwAAABCq4ZIMy702HRiHiDY6g89xIbjr/8QAHhEBAQEBAQABBQAAAAAAAAAAAQARITFBEFFhwdH/2gAIAQMBAT8QD5ggBdoXiOImHxdDyxIZzmfR5GfklcZOechVsnXq45y2dDPkhcsD7BjP2P6H721v/8QAGxEBAQEBAAMBAAAAAAAAAAAAAQARIRAxQVH/2gAIAQIBAT8QH54PLhLcKHGX5aWKcGXW5t2Ob8bEhj2M3pjfkTg5elWIw5Frlwxv/8QAJxABAAIBBAEDBAMBAAAAAAAAAQARITFBUWGBccHwEJGhsSDR4fH/2gAIAQEAAT8QGCsQ39wfshuzAvyf4kQ6xTlFzmx9pm5QPOiOBRruEUBwK1jcWDxBJIl22dmGaTsCK06sfoQJlyrRzfb7Q20Ar4cf1LcwFcpq/XEZhQ6SqINwwaBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/695741537964179461/2xwxUiGU_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '76635' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Fri, 05 Feb 2016 22:49:23 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/695741537964179461 - X-Cache: - - HIT - X-Connection-Hash: - - 07e9c29bdb6caa8e860115725514fa1c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '5465' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT - request: method: get uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true @@ -3888,1456 +434,4 @@ http_interactions: Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' http_version: recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604355' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1203364293552427008/_KFRXMoC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '164030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Sat, 07 Dec 2019 17:20:59 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1203364293552427008 - X-Cache: - - HIT - X-Connection-Hash: - - 73f0d65b4198134d08b055a8f32af592 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1013540643988049920/y49Ifgdi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '69311' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Sun, 01 Jul 2018 21:49:34 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1013540643988049920 - X-Cache: - - HIT - X-Connection-Hash: - - b6abf8329d70ed402270f83f3a3d272d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAHAAEAFQAzACNhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAaAAEBAQEBAQEAAAAAAAAAAAAABwYFBAMC/8QAFwEBAQEBAAAAAAAAAAAAAAAAAAIBA//aAAwDAQACEAMQAAABsoAB8T7AAATyhx7qqGK6voXlKk/UwEAE1o8y67QZ/teriQ12d7Sp6w4683pEt3vVW5WDqJmF3RmhIAAAAD//xAAjEAACAgIBAgcAAAAAAAAAAAACAwQFAQYgABEQEhQVITBQ/9oACAEBAAEFAvvEvnmNtMztE164yTsbSYv3m5r2jnuPEhId32Qu9ZrhjmpzjBczabdpcsWjN1bt0FlcUshLAcngZCA1vlfsk+xjV+FMBq95kJ9LTKJFX4yl5dGxrUnGa+AmFiygRrBOdXkKKr1xEZ/4P//EABgRAAIDAAAAAAAAAAAAAAAAAAEwABAR/9oACAEDAQE/AaxIhLf/xAAdEQACAgIDAQAAAAAAAAAAAAABAgADETEQICFB/9oACAECAQE/Ae1QBzmDxcxmB+c1/TFZk9EswVDctYzbi2MuozFt9//EAC4QAAIBAgQEBAUFAAAAAAAAAAECAwARBBIhMQUTMkEUIFFhFTBxscFCUFKRkv/aAAgBAQAGPwL59m3v8j4fmTkZ7dOu1STTtaJVufWm+GwkOGt0iyj3J70o4nhM6E7gW/ojSgbEX9fNqCt3uP8ANZ9LI4L32Pt9qwwjZNtfc961APnjRjGRBJ23FxsayTLdH0Kms+AxGRh2Y/mli4gGliP8tb/Q0ksZuri48pZiFUbk1JJEWzuTIxtsn6R+aTxTZQ5svehJG4dTsQaiw1wZs+a3oKw0T9Sxi/kkiD5C6lc3pSibiHMhU9GutPy7l5GzO53NcvEJe3Sw3Wj4XiTIv0I+1DEYmU4mUai40v8AsX//xAAkEAEAAgEDAwQDAAAAAAAAAAABABEhMVFhIEGxMHGRoVCB0f/aAAgBAQABPyH13wqurk9BCsjXsZ6zTQyeEo4KrShphPA0hjkaqn5B4mlIXWo6WPc1rWp3EcbCtrTSfpbC5Ta/e5tUOoi7pOp0iKEInG/3ZxvHobwliPZloYxb1cUMk3ZKMHn4ZWE19x6QLhaKAmKyCwqr3HHwlilzGTuvBD1XdsMqVI1ZSHzcHuiDs1p0KOBAXkVcWgIqMV6VdRpC7VX+G0375FNwwoY9lH2zHwRoB3cvv+C//9oADAMBAAIAAwAAABDzz3zzys5zzwkXvz4/9zzzzzzz/8QAHBEBAAIDAAMAAAAAAAAAAAAAAQARECAhMDFR/9oACAEDAQE/EMCTmgWxEK0+X1LuQzfKleD/xAAfEQEAAgEDBQAAAAAAAAAAAAABABEhECBhMUGBkaH/2gAIAQIBAT8Q3YS7MJdLb8SpSjxqccUG6A+pgyl+6DTcApQCliLWr3//xAAiEAEBAAICAwACAwEAAAAAAAABEQAhMUEgUWGBkTBQccH/2gAIAQEAAT8Q/nczMBB0bvm6FyciBPR7/vKgx6pHgG1VA+5GDoCJVUap8TduB3CKyekP0CvvOHqxShYnSePBxR2ErbJ7Cia9OPwvHIWALVms2lRzzIatVVuy7MOnQAkEaMex8kiTmY9CHAUPQwAaNd3BWpAOSBwf9/zEC+s98ShxW9Y1QtBsZUdoPZ9DnDQi/wBIR/T4vbGWG5VdBkCwPNK1Wm2JeHTh4dA0gaRs0V3yYEKgo/xM3+UEFSpyUAO5i2EZ5alfSz8eFsigDaBSy+zGU7hSHMxePzjfgAFKoa0UgNB+8FTE0EcvV9Gj2YpCazL7EX2GDsmcq4Yql0qHr+i//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1095305778460798983/mA-tSgeW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '180213' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Tue, 12 Feb 2019 12:55:02 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1095305778460798983 - X-Cache: - - HIT - X-Connection-Hash: - - 4f62d93a7d984d9f6c1bbbd4800d8953 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/832141531255623681/D-mNs8yL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59425' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Thu, 16 Feb 2017 08:14:16 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/832141531255623681 - X-Cache: - - HIT - X-Connection-Hash: - - 8b1044a4643f6b81360bb50474f708f6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218685451793362945/GfdbCX8w_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '192603' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Sun, 19 Jan 2020 00:01:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1218685451793362945 - X-Cache: - - HIT - X-Connection-Hash: - - b894a9af26bc849bf813155bede4d87b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59424' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="aeaf906f8767cadcf09c4c5a10532123", - oauth_signature="zsUNwbi7cqDERnuzS%2Faz%2Fztqxiw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '272' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:36 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645660684099; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:36 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_KyzX7TFtLloo2KN4Sox/Sg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:36 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 480636c4358b5b3f4135db1aaf625a51 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '178' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '181' - X-Transaction: - - 00c549fc00aa1d57 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.07,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="58fd5ddd399a461ee8569ef9df88ee50", - oauth_signature="itBgKdu4ephlrJ7iZzQATIF1eHU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '279' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:37 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:37 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645701833137; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:37 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_G/zRB+RLggbfpaDVNKFV+Q=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:37 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e5e2f313e2022fb301596865209d5d8a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '177' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '119' - X-Transaction: - - 005b4ffc00e580a2 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.011,"max_id":1224575206770954240,"max_id_str":"1224575206770954240","query":"hash_tag1","refresh_url":"?since_id=1224575206770954240&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:37 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9cf95b79f5604737654cc3586a994cc2", - oauth_signature="eqPYzvtb60sqo3UCgYLHxYRaBJ4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796567", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '124247' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656793434467; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_bo02d/mRLZ3dsuphPy1YBw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 28d46a1d9234538c161898fdeb32d5a6 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '176' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '242' - X-Transaction: - - 006af0130039d645 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93910,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover - jobs for design, product, ux, ui, engineering, pm, research, and more via - Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue - Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373449,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq - Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users - ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, - Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, - Discourse & other open source instances for you, so you don''t have to. - Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun - Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come - and join our team to bring Zammad even further forward! \n\nIt''s gonna be - amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, - Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | - Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri - Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25761,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881949,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692558,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692558,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.091,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7410ad8dffcb1424c6f77ec46b914605", - oauth_signature="iAP4GpRETQ8HDbs5Gmj7dWTZRh0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '273' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656877966283; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_ARCDxbX8FLNE9hnHrhkmTw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 8bf48bdb333352d6cdd20ff4806bbbab - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '175' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00a1d15600695a9b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.009,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9d0fac0820ed0f353ebc216e1d7d6b10", - oauth_signature="yhv7odp6G09X%2FoM4u4Dz8DCGLhA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '278' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656911953573; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_g2vaZ2vWRME57HD7F1MWVA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6736ab562f0f0ee209994ecd260a1ca8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '174' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00b82890000b03a1 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.01,"max_id":1224575676411310081,"max_id_str":"1224575676411310081","query":"hash_tag1","refresh_url":"?since_id=1224575676411310081&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:29 GMT recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_skips_retweets.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_skips_retweets.yml deleted file mode 100644 index 8c800525d..000000000 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_skips_retweets.yml +++ /dev/null @@ -1,5343 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", - oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796438", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '124247' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:18 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:18 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:18 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e258dfc9229bc838cd9d50c00177c48a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '179' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '182' - X-Transaction: - - 00cf981300b03fb6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93909,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover - jobs for design, product, ux, ui, engineering, pm, research, and more via - Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue - Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373445,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq - Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users - ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, - Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, - Discourse & other open source instances for you, so you don''t have to. - Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun - Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come - and join our team to bring Zammad even further forward! \n\nIt''s gonna be - amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, - Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | - Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri - Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25758,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881888,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692561,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692561,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1163492126556135425/puANjvZp_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 19 Aug 2019 16:43:14 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1163492126556135425 - X-Cache: - - MISS - X-Connection-Hash: - - b76bd2ed91a44066b96fb3713dc830bc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '128' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/508915774816149504/T4g--mOT_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '233790' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 08 Sep 2014 09:50:30 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/508915774816149504 - X-Cache: - - HIT - X-Connection-Hash: - - c20c82c2eb58f26c8bb193866ffa6fcf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '120' - Content-Length: - - '1807' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427776654135297.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ca8db5ad67ab2ff8d7e9453978aa7af6", - oauth_signature="KVwPd6LavD6jIuLek2FCVfK6je0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2670' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644039762192; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:20 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_QpgW5IUf4LYMtKVSgxlyiw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:20 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b33641fb2e72ef7f3887711c86674929 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '899' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 00cccbb0002de89b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:21:45 +0000 2020","id":1224427776654135297,"id_str":"1224427776654135297","text":"@mrflix - I\u2019d prefer to pay for something but thanks though!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrflix","name":"Felix - Niklas","id":15217750,"id_str":"15217750","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427517869809666,"in_reply_to_status_id_str":"1224427517869809666","in_reply_to_user_id":15217750,"in_reply_to_user_id_str":"15217750","in_reply_to_screen_name":"mrflix","user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501282' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - HIT - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427517869809666.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1a244660e2f97a71bf345750e36e98c3", - oauth_signature="PArGPzilTQ9HzlIUQENIFYdSyZg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2712' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644120417217; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_L0kogBi44RZDUuRVJuDt4w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 962314ad139bd7efb6b581060b1d327d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '898' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 0022b3b0007f2a30 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224426978557800449.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1839c84f7948a2fa6ef3a8b86f11fcb8", - oauth_signature="P34TG7JX5tOOMfc1zGXPQJB9n%2FY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796441", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2604' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644169456926; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_yi1It/3F2KszoRZr9LKSPg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e4fb6e6af304e2792218fcdac6b43062 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '897' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '126' - X-Transaction: - - '0070158b000776af' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:18:35 +0000 2020","id":1224426978557800449,"id_str":"1224426978557800449","text":"Lightweight - CRM recommendations? Just want something better than Intercom to keep track - of support contract details and that kind of thing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"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,"user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501284' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - MISS - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gALABQAEQAlAAlhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAADAQEBAQEAAAAAAAAAAAAEBQYDAgEHAP/EABoBAQACAwEAAAAAAAAAAAAAAAUDBgIEBwH/2gAMAwEAAhADEAAAASDwTbPdTy1vho7ZQUEAZtrILtCt2mEXzCP1nj10Dr/L1P8AQTjtPRwAvSIqjm9Mbvmi4xIRjOJ66WejqoaxIl51GONmFMKSQwu80ZeHkcF+xvVVPMWfRhkvl2dkj0krPGMro2F+q/LPeDFMFt/Is9ghjkW6obw+wvKqQptW0LgDRcl//8QAJRAAAgMAAQQCAgMBAAAAAAAAAgMAAQQRBRITIRQxEDIVJDRD/9oACAEBAAEFAggQJU54p24AJWpToUK6neECDdTyrqfNz1bC5jK5m7OcLXoKvIy5zcvQ2W1ly+bnR0WTRvvoo2aC/u8Tj8iNlYIFeaqpCvI/l7+F4VM17fgOn8eyNV2QiEa6ExDdHkYMzl5TfmUy3ZgIekJz5ha2u7ujiFjDAtWnpthnaTxI1rMHZXLNrfVGd0Zt998c2+5V2LUDTdmu9yZenTM292V+bcOtWmE2+PPC/WvVjzTFeNyepKzZS3YM+bF0EuNTyhu8U+ZLr0yvQNILPXqIh6hrXL06CnSvWt1x/ucS/o/q/q/2/wCg/fT/APS76L8f/8QAHhEAAgMBAQEAAwAAAAAAAAAAAAECBBEDIRITFCP/2gAIAQMBAT8B7ssE62rWXqjiyVbTr1H/AEnh1XnpdgnAdKRKwivNe6dJbp+v9kuArWlWzp+RPwpx+kSrnNnBtMqrShElBH//xAAfEQADAAICAgMAAAAAAAAAAAAAAQIDEQQSIUEiMTL/2gAIAQIBAT8By0ZTlZH6O2/sqS6ORk0jL5FPnZtFN6OU/kU9l4+y0Tx0i4OXGmTi9sqNMnGZEZpTKSL/AEI//8QAKhAAAgIABQIFBAMAAAAAAAAAAQIAEQMQEiExQVEgIjJhcRMzQpEEI2L/2gAIAQEABj8C8G87zysL7ZcieoZ7sJWvebjLXhWGgtz7zd2nJnqm7mcw43lrD4vvO2ZUdfCAOTFwK6b/ADNC209an/JjMVII5EZ1W9M4qc5WxoQ+V9aDUL4hYrYM1EV7QArv0hV73EbDUVe9k8zbIJ+I5hA8qiBV5brNJFe4mq1CfMY3e+kS5eY7SxEBJW74laPqAdRPyHzLB1X6hA4/XiBQWeRUTGXDB/q1ldVat65MGrAbHOLiUKaiooH97wY9M5xEUc/bNWS3z0Erppy+2rT7S5XAwJVhuCIzNjuxfYxq/kvbdviow+q1MoRvcDiDxnNfB//EACYQAQACAgEDBAIDAQAAAAAAAAEAESExQRBRcWGBofCR8SCxwdH/2gAIAQEAAT8h67WIsQRkVU7Su8g3Kwu/yT9j0m2wLhSprU0BKXwvEW7F2wM4YHDQoR2B7vSF6p7dJC2JipO6aGM9VuRgrcYdoGCqGspCEApUoIdTjLz3S4ycW5lQQbrGvjM5UlOPmYjBbFNj68z0X33mC8M/6OEbe1hCSrGPR9ZtG5XEtcHjv8yxYUIOveou5q9hjF5EpA1fKjPCKPQitZKe6nzFi3xoldoZa/xcJhR9GYRGZ4hq+n7zPq/crLIYpxiImd3AaVA8GC3Vmjj7MjuzGvPE1+40OzPZB2hNqejLKOm+IqkKAMsR46gyFegMRwaBachWH8eJUOaDFT6h4G5YcihMGxku2X6cag4iX5tKRgL4FXYaK1CgevC1VHjGMRHG8XwqPiiPF5EmOCv8V3yIdB8uf1df/9oADAMBAAIAAwAAABDCY+2aiaIgjMdoqN9TyJEfD3df/8QAIREBAAICAQQDAQAAAAAAAAAAAQARITHwQXGR4VGx0fH/2gAIAQMBAT8Q2TIYdTuXI1LGWXdZidO3t7+rlF4UgZUCMcEUtuq8x3c/h5uEE55xmEfjXO0S7qLNlFy8/IACqtRcnT1AuolkwhgbQ8yoM//EABwRAQEBAQEBAAMAAAAAAAAAAAEAESFBMRBRYf/aAAgBAgEBPxCHpIUoufq1fwE/9jpy714S3sjbKdPkqwmX94XCxMn1zlpw5HhHnCLG+oXmIiLkv//EACYQAQACAgECBgIDAAAAAAAAAAEAESExQVFhEHGBodHwkbHB4fH/2gAIAQEAAT8QJiakxCMoYj4odUIeHtVvUPAFygHpUFG6r0h7W8xP8RFpgImY6w81PVmMSrBVeAjFkpsK/V1YFTS9BgidYoWnrAI8yBEnvsy/3GYal2E3Q8kP4il+eN/xKj40E9A1sM/iHcQ6hf6jLAOuviDNGnb4lXjlaDdeUfBD8HxPpR8QUffmBccfe8CkgW1Wg3LkDCmSMrvvUJHt3d/JdQOSbtG6pyiYYDaUJCCqOBcHMfzHfwMYMNHJ/UqW0FmV0MSzItVbwYC7zDYNqREOMMHeHeUKyjhsKzChK6IrKFMHWWEjbCu2Rlzcwsatoa6Ql8Bq/pO8ffSAKExnBxdyisZrB9C8vrGLN50JydhKxXpRY75qIOGCWdXAZ6RnJlEwgL7vaGGe0fMZIDgrTCZZuzVR2n2+YIU0gUWOEGPLr8QQK28dwmIKPlqd8psZRJhaD2glgi3umkOO6Maarrt8jiIXdLLrPxEF0NjfxL/R+IKijWHUpFF8mSP+vTENgGV7Sk0+yqRSibKW7DiCLApQ7LwhbapRmD+8LluN5k4FrwEXUu1xiqjRrB2xLo6SbJ93+pmh1uFRRUJwFKE2ImRl2xpY8UBQEGgMwG/lCIxGMggaNBmIBVbcxy5MDkre44LGkvpGul67xF3jPM8k1T98/f4Rr85q82e/frwGnp4f/9kg - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1372613935/image_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '87030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1372613935 - X-Cache: - - HIT - X-Connection-Hash: - - af7ab6266348ffac8cbb4aa67ea19c4e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - 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rUonA6AAk6Y7b/yHL1/ecb+I1l9t/wBGq5+y1/E6zWPalcFbdrMpsIYREgRxsiwmj5GE/wDdR6lR5J/uGj1BtO3a3Yz7jdzw0XMtaTEprii1vAJCmyVDaVKBCkkH0IPXSa51OvA+UfeNWwhpta77w7OLwNTtyqy6NVoyiy7sIwsDhTbqDlLiT0KVAg60OdffZ/eTvxyqWQbZrJwmWKCgfDZ7hPzFlR/JlEZzsJSfYax2V+dn/wBs6cIP9SFV/e8b/DXq4+5Wc/WjbXKOI1qP1JTZM6q5EQf5mIDyr71HCfuB99ZTIjrQspUkhSTg63m4fzXb/wC6mv8AD1j1b/Oi/uGu3n4MccZlO3L+bmuVuN6eKRed2US1aradNrUpqh1naJ9MJCmJCkkFKilQICgQPMMHjGcaavxW1v8A0CF/zH/trO3vmV92vWuP+XbctP/ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223188240078909440.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f0983cc8d2ccb9c7c917494a93e9b6bf", - oauth_signature="oEU2K3H3hQX9uVuasaZ%2ByWvMFcg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796442", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2780' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644317459299; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:23 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_rL1CgHU04UGVa6N+GgrTRg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:23 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3607feb94ada43c77a69b20f8a4b7acb - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '896' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '128' - X-Transaction: - - 0077504c00a9eaac - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/772697070549528579/HFxWLHRD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Last-Modified: - - Mon, 05 Sep 2016 07:23:12 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/772697070549528579 - X-Cache: - - HIT - X-Connection-Hash: - - 3b5e4da44f99eb558e596bb3aa7e90f3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220798' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1094738873039704066/-lDgIqkO_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Sun, 10 Feb 2019 23:22:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1094738873039704066 - X-Cache: - - HIT - X-Connection-Hash: - - 78fd6a3d400935ec9bf72ac2b088426e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223103807283810304.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="270a7a4eccf11544f9af28d85299205a", - oauth_signature="mYxomSx1sBr9ZxmdoYp%2F%2BnGdnSg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796445", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '4774' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644528238733; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:25 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_c1fhs9eqFg5/913EVJEC2w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:25 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 5327d9a3ffb06b4f288d507a02c4791d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '895' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '125' - X-Transaction: - - 00f3aa8500266873 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 04:40:46 +0000 2020","id":1223103807283810304,"id_str":"1223103807283810304","text":"One - of the most disgusting videos i haf ever seen. A Chinese person a live a frog. - #China #coronarvirus https:\/\/t.co\/l81uDqdlOl","truncated":false,"entities":{"hashtags":[{"text":"China","indices":[83,89]},{"text":"coronarvirus","indices":[90,103]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"features":{}}]},"extended_entities":{"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"video_info":{"aspect_ratio":[17,30],"duration_millis":54518,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/320x564\/E9_ZjFgFnwun6x9I.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/360x634\/4c_uXMtdSyZ1SxVu.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/544x960\/AzGc7uMNSi0MYPkw.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/pl\/wV6_mmLI-ktcCFXX.m3u8?tag=10"}]},"features":{},"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,"user":{"id":2519467770,"id_str":"2519467770","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","screen_name":"Nami_fight4life","location":"Obviously - somewhere on Earth","description":"#Anipal Share -\u00bbWorld along with other - living beings in peace+harmony #BeUnique #EnjoyLittleThings #StayStrong #Equality4All - #Voice4Voiceless #SaveLives #UCC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3008,"friends_count":3020,"listed_count":78,"created_at":"Sat - May 24 04:37:39 +0000 2014","favourites_count":23188,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519467770\/1482148273","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218882247870353408/MkRU56G4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146377' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Last-Modified: - - Sun, 19 Jan 2020 13:03:48 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1218882247870353408 - X-Cache: - - HIT - X-Connection-Hash: - - 73d106552eb5d9300d9ad791118d59b4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALABoACwAFACFhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAACAwADAQAAAAAAAAAAAAAFBgMEBwABAgj/xAAZAQEAAwEBAAAAAAAAAAAAAAADAQIEAAX/2gAMAwEAAhADEAAAATFMqv50O15KnW91iaeGmur3QrG9OWfPt85dQclo0tdRTxa4uOyTDZl33fYr2gpzfxMIwrXK68QrmIkOBZM8SyxSjLvn0u4tlRs8IjrmTw7ElpY6TMSSwJxzNzyvB3Jg/o411mQdgeZEJ6EhPz6xhb3bXBDZuRoUjXGa/kf/xAAnEAABBAEEAAYDAQAAAAAAAAACAQMEBQAGERITFBUhIzI1EDEzNP/aAAgBAQABBQKUmzMIs3x8+tmig8YMsU3lCm0pEUNKukcPJg+ywvF3JfrGtJ6wa9ue5MOdYKbhOk5mkvxJTljqcXRXcVRFG9ZIq+oqnYdeTKqSMEGaaMxfxzJ4bZHXdrL1wQgO24R60JQ9sgk46aa2Yw8lhyCGiiSpmpH+yumNR4tQ51niKbmQR6om+LipviJxlcMs4/MLKc4jaqpFDZ4PxJjfLswvQLa2dbf0/J8WV3MZhv2D/mDJQksQLT6QIhOk5LlOC5Y9h5fl7Ve13JCqn3Ds23RcgSCadVw23bOXYymOPUCCu3Y5l7JXwtBCEaddkDV0RfDMiqvG8rAuGMqPfRzYsq1opB+WtZd/uq+oZzUP1Uf4P/46X+msvnp345//xAAeEQABBAMBAQEAAAAAAAAAAAABAAIQEQMSMSEEE//aAAgBAwEBPwGGOHE94PiCpDvqZWocqafYEDIGpzrgOK6iNuIgjsVUYRozYdX1j9Me5j//xAAfEQACAQQCAwAAAAAAAAAAAAAAAQIQERJBITEDMlH/2gAIAQIBAT8BLji27kINEu6MafqcjHTBiQxeFLsxQmtkmtFib4NkiPyn/8QAMhAAAQMBBQYDBwUAAAAAAAAAAQACAxEEEBIhMRMiMkFRcRRhcyAjUnKBsfAzQmKRwf/aAAgBAQAGPwJ56miIue/4RVeLnHv7RvuP2CIWiIT2OdXA7LyubfIP4lWZrInSe7GiLxAWtasLI60RDhRWg9rjcCnV0oVsGOwnAAFaZ5nZuZQNTqLNGMcDgXG+t7ZDzCbZ5dX1q6unRYjkqozU4sh7DmG7YnXKijJa+STmaIvALR5psYz5BRx/CKex3uY7npTqeiwVp0FLhtDR9KgLwxO8BW4vdk0albCyAZakhP8AFxRAtFcSgJlwMOZYEAyZ4Zixx4eoW0ktG1fTiLQCjaoq2iQDMdB5IOBwuJp2Ujw7dBo36L96ZhdSLicO34FNORoU18j3RAZgDVSRzuJezUlYAah2qNos5cKgOoE7bNcIh9Ag48buHyHW7iKDa5hxCilIzO8qjPFoE21c28fZBwyoVE+PTEWn7pkTKHajOvIKQO4SdztyRhGlKk9F+nL/AGn/ADKzemFD8in9I3H1G/6mqL85KTvd/8QAJhABAAIBAwMEAwEBAAAAAAAAAQARITFBUWFxgRCRobHB0fDx4f/aAAgBAQABPyECtsdjL+JR1fQWo2+wlIZyTYfgqPMbw+kRRHaNMwSuhNJccDgt8xKOsuZXuXxAAmR2YIKzbVizriFWOsQNbNn7lzyMS6dQCEl9VXaXi3kFZDmFWtC+4Pb/AIhNwid4Y0TB6ZS5XvKrpiaL2ZS0Ut+IfF38l4Kmy22+sx9ESyW8jUVqby5qllFtvicsxBoD4lWu4g4fEfAJFF7i04IjZlenXKjccr3TtgYC1FHQPJjAvkaDrKsZV0IdpJB/cAaFVxXEpzCnqdpoSxiury3gigAFhXsSjONzTlIzSzcrpJz+ZUs9PoveZdNYjmY33IjAcfma3IpuYH16JmlsNrV8e8LbG47rESDzTl/UaYGXfmW06I87MCwIBovTuMcKvKRR7byxuhsfw7SwTbPpTxoS9klgTT+f+RV/gNWVy3gJ7Hx+YplLF4mxlY4Wv2+09jhA18wtNwrH+VSni8B/lp8TP6XE/j4n9XiaPf0g+JPhH0nwf16f/9oADAMBAAIAAwAAABCq4ZIMy702HRiHiDY6g89xIbjr/8QAHhEBAQEBAQABBQAAAAAAAAAAAQARITFBEFFhwdH/2gAIAQMBAT8QD5ggBdoXiOImHxdDyxIZzmfR5GfklcZOechVsnXq45y2dDPkhcsD7BjP2P6H721v/8QAGxEBAQEBAAMBAAAAAAAAAAAAAQARIRAxQVH/2gAIAQIBAT8QH54PLhLcKHGX5aWKcGXW5t2Ob8bEhj2M3pjfkTg5elWIw5Frlwxv/8QAJxABAAIBBAEDBAMBAAAAAAAAAQARITFBUWGBccHwEJGhsSDR4fH/2gAIAQEAAT8QGCsQ39wfshuzAvyf4kQ6xTlFzmx9pm5QPOiOBRruEUBwK1jcWDxBJIl22dmGaTsCK06sfoQJlyrRzfb7Q20Ar4cf1LcwFcpq/XEZhQ6SqINwwaBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220801' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '76528' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Last-Modified: - - Wed, 24 Apr 2019 14:50:32 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1121064385504534529 - X-Cache: - - HIT - X-Connection-Hash: - - d794e5057dfcb8c176f39934751f5fec - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604350' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222881209384161283.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0845309cb9c27fc1ab21d39b7b4eec23", - oauth_signature="vuGxDfvE5VlqDoEhKQecDdpslgQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796448", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2970' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644848815779; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_AcgGvkyqZMxPuXzd/80cSA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - dfeb647881f0c2d4fd8b5bb70434d07c - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '894' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '137' - X-Transaction: - - 00ab4bde005cb1b6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:56:15 +0000 2020","id":1222881209384161283,"id_str":"1222881209384161283","text":"@heyscrumpy - what\u2019s with you guys & girls? @zammadhq @MrThorstenEckel","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[0,11]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[46,55]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[56,72]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222872891320143878,"in_reply_to_status_id_str":"1222872891320143878","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91561' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222872891320143878.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9a015e27bda3228c0dfd24d91b42e81d", - oauth_signature="fQBcSbPWXxnrtavdbprC8Zw5Azs%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796449", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2903' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644924464551; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_9+Br9A61XrqTbFxPH7rLGg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3a440e7e126060138b069e2c9000fc80 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '893' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '133' - X-Transaction: - - 00df0593008cfe0d - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:23:11 +0000 2020","id":1222872891320143878,"id_str":"1222872891320143878","text":"I - haven\u2019t seen Tweets, articles or books about doing support for small - companies & indie businesses. Have you?\n\nWou\u2026 https:\/\/t.co\/e1cwhjvxEe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e1cwhjvxEe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222872891320143878","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,"user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91562' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59418' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/651386341171703809/t2jAQDHu_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59422' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Tue, 06 Oct 2015 13:17:40 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/651386341171703809 - X-Cache: - - HIT - X-Connection-Hash: - - 9a3325add8fd54617c3964c5b7f17fd5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220805' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/695741537964179461/2xwxUiGU_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '76635' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Fri, 05 Feb 2016 22:49:23 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/695741537964179461 - X-Cache: - - HIT - X-Connection-Hash: - - 07e9c29bdb6caa8e860115725514fa1c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '5465' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '237853' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Last-Modified: - - Wed, 30 Oct 2019 08:56:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1189466673532854272 - X-Cache: - - HIT - X-Connection-Hash: - - b140b365ea73f0d34e1c7c5a2ad7cbc9 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", - oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796452", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2781' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:32 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 608ef1d33f94f7800d75e9f14fc86838 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '892' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '125' - X-Transaction: - - 00dc12c800f73e29 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","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,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604355' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1203364293552427008/_KFRXMoC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '164030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Sat, 07 Dec 2019 17:20:59 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1203364293552427008 - X-Cache: - - HIT - X-Connection-Hash: - - 73f0d65b4198134d08b055a8f32af592 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1013540643988049920/y49Ifgdi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '69311' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Sun, 01 Jul 2018 21:49:34 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1013540643988049920 - X-Cache: - - HIT - X-Connection-Hash: - - b6abf8329d70ed402270f83f3a3d272d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gAHAAEAFQAzACNhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAaAAEBAQEBAQEAAAAAAAAAAAAABwYFBAMC/8QAFwEBAQEBAAAAAAAAAAAAAAAAAAIBA//aAAwDAQACEAMQAAABsoAB8T7AAATyhx7qqGK6voXlKk/UwEAE1o8y67QZ/teriQ12d7Sp6w4683pEt3vVW5WDqJmF3RmhIAAAAD//xAAjEAACAgIBAgcAAAAAAAAAAAACAwQFAQYgABEQEhQVITBQ/9oACAEBAAEFAvvEvnmNtMztE164yTsbSYv3m5r2jnuPEhId32Qu9ZrhjmpzjBczabdpcsWjN1bt0FlcUshLAcngZCA1vlfsk+xjV+FMBq95kJ9LTKJFX4yl5dGxrUnGa+AmFiygRrBOdXkKKr1xEZ/4P//EABgRAAIDAAAAAAAAAAAAAAAAAAEwABAR/9oACAEDAQE/AaxIhLf/xAAdEQACAgIDAQAAAAAAAAAAAAABAgADETEQICFB/9oACAECAQE/Ae1QBzmDxcxmB+c1/TFZk9EswVDctYzbi2MuozFt9//EAC4QAAIBAgQEBAUFAAAAAAAAAAECAwARBBIhMQUTMkEUIFFhFTBxscFCUFKRkv/aAAgBAQAGPwL59m3v8j4fmTkZ7dOu1STTtaJVufWm+GwkOGt0iyj3J70o4nhM6E7gW/ojSgbEX9fNqCt3uP8ANZ9LI4L32Pt9qwwjZNtfc961APnjRjGRBJ23FxsayTLdH0Kms+AxGRh2Y/mli4gGliP8tb/Q0ksZuri48pZiFUbk1JJEWzuTIxtsn6R+aTxTZQ5svehJG4dTsQaiw1wZs+a3oKw0T9Sxi/kkiD5C6lc3pSibiHMhU9GutPy7l5GzO53NcvEJe3Sw3Wj4XiTIv0I+1DEYmU4mUai40v8AsX//xAAkEAEAAgEDAwQDAAAAAAAAAAABABEhMVFhIEGxMHGRoVCB0f/aAAgBAQABPyH13wqurk9BCsjXsZ6zTQyeEo4KrShphPA0hjkaqn5B4mlIXWo6WPc1rWp3EcbCtrTSfpbC5Ta/e5tUOoi7pOp0iKEInG/3ZxvHobwliPZloYxb1cUMk3ZKMHn4ZWE19x6QLhaKAmKyCwqr3HHwlilzGTuvBD1XdsMqVI1ZSHzcHuiDs1p0KOBAXkVcWgIqMV6VdRpC7VX+G0375FNwwoY9lH2zHwRoB3cvv+C//9oADAMBAAIAAwAAABDzz3zzys5zzwkXvz4/9zzzzzzz/8QAHBEBAAIDAAMAAAAAAAAAAAAAAQARECAhMDFR/9oACAEDAQE/EMCTmgWxEK0+X1LuQzfKleD/xAAfEQEAAgEDBQAAAAAAAAAAAAABABEhECBhMUGBkaH/2gAIAQIBAT8Q3YS7MJdLb8SpSjxqccUG6A+pgyl+6DTcApQCliLWr3//xAAiEAEBAAICAwACAwEAAAAAAAABEQAhMUEgUWGBkTBQccH/2gAIAQEAAT8Q/nczMBB0bvm6FyciBPR7/vKgx6pHgG1VA+5GDoCJVUap8TduB3CKyekP0CvvOHqxShYnSePBxR2ErbJ7Cia9OPwvHIWALVms2lRzzIatVVuy7MOnQAkEaMex8kiTmY9CHAUPQwAaNd3BWpAOSBwf9/zEC+s98ShxW9Y1QtBsZUdoPZ9DnDQi/wBIR/T4vbGWG5VdBkCwPNK1Wm2JeHTh4dA0gaRs0V3yYEKgo/xM3+UEFSpyUAO5i2EZ5alfSz8eFsigDaBSy+zGU7hSHMxePzjfgAFKoa0UgNB+8FTE0EcvV9Gj2YpCazL7EX2GDsmcq4Yql0qHr+i//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1095305778460798983/mA-tSgeW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '180213' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Tue, 12 Feb 2019 12:55:02 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1095305778460798983 - X-Cache: - - HIT - X-Connection-Hash: - - 4f62d93a7d984d9f6c1bbbd4800d8953 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/832141531255623681/D-mNs8yL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59425' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Thu, 16 Feb 2017 08:14:16 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/832141531255623681 - X-Cache: - - HIT - X-Connection-Hash: - - 8b1044a4643f6b81360bb50474f708f6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218685451793362945/GfdbCX8w_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '192603' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Sun, 19 Jan 2020 00:01:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1218685451793362945 - X-Cache: - - HIT - X-Connection-Hash: - - b894a9af26bc849bf813155bede4d87b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59424' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="aeaf906f8767cadcf09c4c5a10532123", - oauth_signature="zsUNwbi7cqDERnuzS%2Faz%2Fztqxiw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '272' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:36 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645660684099; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:36 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_KyzX7TFtLloo2KN4Sox/Sg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:36 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 480636c4358b5b3f4135db1aaf625a51 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '178' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '181' - X-Transaction: - - 00c549fc00aa1d57 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.07,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="58fd5ddd399a461ee8569ef9df88ee50", - oauth_signature="itBgKdu4ephlrJ7iZzQATIF1eHU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '279' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:37 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:37 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645701833137; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:37 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_G/zRB+RLggbfpaDVNKFV+Q=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:37 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e5e2f313e2022fb301596865209d5d8a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '177' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '119' - X-Transaction: - - 005b4ffc00e580a2 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.011,"max_id":1224575206770954240,"max_id_str":"1224575206770954240","query":"hash_tag1","refresh_url":"?since_id=1224575206770954240&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:37 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9cf95b79f5604737654cc3586a994cc2", - oauth_signature="eqPYzvtb60sqo3UCgYLHxYRaBJ4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796567", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '124247' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656793434467; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_bo02d/mRLZ3dsuphPy1YBw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 28d46a1d9234538c161898fdeb32d5a6 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '176' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '242' - X-Transaction: - - 006af0130039d645 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93910,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover - jobs for design, product, ux, ui, engineering, pm, research, and more via - Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue - Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373449,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq - Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users - ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, - Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, - Discourse & other open source instances for you, so you don''t have to. - Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun - Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come - and join our team to bring Zammad even further forward! \n\nIt''s gonna be - amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, - Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | - Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri - Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25761,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881949,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692558,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692558,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.091,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7410ad8dffcb1424c6f77ec46b914605", - oauth_signature="iAP4GpRETQ8HDbs5Gmj7dWTZRh0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '273' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656877966283; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_ARCDxbX8FLNE9hnHrhkmTw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 8bf48bdb333352d6cdd20ff4806bbbab - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '175' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00a1d15600695a9b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.009,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9d0fac0820ed0f353ebc216e1d7d6b10", - oauth_signature="yhv7odp6G09X%2FoM4u4Dz8DCGLhA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '278' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656911953573; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_g2vaZ2vWRME57HD7F1MWVA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6736ab562f0f0ee209994ecd260a1ca8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '174' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00b82890000b03a1 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.01,"max_id":1224575676411310081,"max_id_str":"1224575676411310081","query":"hash_tag1","refresh_url":"?since_id=1224575676411310081&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:29 GMT -recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_skips_tweets_15_days_older_than_channel_itself.yml b/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_skips_tweets_15_days_older_than_channel_itself.yml deleted file mode 100644 index 8c800525d..000000000 --- a/test/data/vcr_cassettes/models/channel/driver/twitter/with_search_term_configured_at__options_sync_search_skips_tweets_15_days_older_than_channel_itself.yml +++ /dev/null @@ -1,5343 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", - oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796438", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '124247' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:18 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:18 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:18 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e258dfc9229bc838cd9d50c00177c48a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '179' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '182' - X-Transaction: - - 00cf981300b03fb6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93909,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover - jobs for design, product, ux, ui, engineering, pm, research, and more via - Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue - Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373445,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq - Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users - ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, - Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, - Discourse & other open source instances for you, so you don''t have to. - Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun - Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come - and join our team to bring Zammad even further forward! \n\nIt''s gonna be - amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, - Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | - Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri - Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25758,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881888,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692561,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692561,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:18 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:18 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1163492126556135425/puANjvZp_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '0' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 19 Aug 2019 16:43:14 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/5 profile_images/1163492126556135425 - X-Cache: - - MISS - X-Connection-Hash: - - b76bd2ed91a44066b96fb3713dc830bc - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '128' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/508915774816149504/T4g--mOT_normal.jpeg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '233790' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:19 GMT - Last-Modified: - - Mon, 08 Sep 2014 09:50:30 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/508915774816149504 - X-Cache: - - HIT - X-Connection-Hash: - - c20c82c2eb58f26c8bb193866ffa6fcf - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '120' - Content-Length: - - '1807' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:19 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427776654135297.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ca8db5ad67ab2ff8d7e9453978aa7af6", - oauth_signature="KVwPd6LavD6jIuLek2FCVfK6je0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2670' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644039762192; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:20 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_QpgW5IUf4LYMtKVSgxlyiw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:20 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - b33641fb2e72ef7f3887711c86674929 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '899' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 00cccbb0002de89b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:21:45 +0000 2020","id":1224427776654135297,"id_str":"1224427776654135297","text":"@mrflix - I\u2019d prefer to pay for something but thanks though!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrflix","name":"Felix - Niklas","id":15217750,"id_str":"15217750","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427517869809666,"in_reply_to_status_id_str":"1224427517869809666","in_reply_to_user_id":15217750,"in_reply_to_user_id_str":"15217750","in_reply_to_screen_name":"mrflix","user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501282' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - HIT - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:20 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:20 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224427517869809666.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1a244660e2f97a71bf345750e36e98c3", - oauth_signature="PArGPzilTQ9HzlIUQENIFYdSyZg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796440", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2712' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644120417217; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_L0kogBi44RZDUuRVJuDt4w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 962314ad139bd7efb6b581060b1d327d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '898' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '124' - X-Transaction: - - 0022b3b0007f2a30 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1224426978557800449.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1839c84f7948a2fa6ef3a8b86f11fcb8", - oauth_signature="P34TG7JX5tOOMfc1zGXPQJB9n%2FY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796441", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2604' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644169456926; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:21 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_yi1It/3F2KszoRZr9LKSPg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e4fb6e6af304e2792218fcdac6b43062 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '897' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '126' - X-Transaction: - - '0070158b000776af' - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Mon Feb 03 20:18:35 +0000 2020","id":1224426978557800449,"id_str":"1224426978557800449","text":"Lightweight - CRM recommendations? Just want something better than Intercom to keep track - of support contract details and that kind of thing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"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,"user":{"id":10737152,"id_str":"10737152","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton - Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator - of @statamic & leader of the flat web. Stuck in the retroverse, making the - web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri - Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"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\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:21 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:21 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '501284' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Tue, 20 Nov 2018 17:35:05 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1064935675672305665 - X-Cache: - - MISS - X-Connection-Hash: - - dc2f0554c4e8d381a4b8dddb331ee0ed - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '109' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gALABQAEQAlAAlhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAADAQEBAQEAAAAAAAAAAAAEBQYDAgEHAP/EABoBAQACAwEAAAAAAAAAAAAAAAUDBgIEBwH/2gAMAwEAAhADEAAAASDwTbPdTy1vho7ZQUEAZtrILtCt2mEXzCP1nj10Dr/L1P8AQTjtPRwAvSIqjm9Mbvmi4xIRjOJ66WejqoaxIl51GONmFMKSQwu80ZeHkcF+xvVVPMWfRhkvl2dkj0krPGMro2F+q/LPeDFMFt/Is9ghjkW6obw+wvKqQptW0LgDRcl//8QAJRAAAgMAAQQCAgMBAAAAAAAAAgMAAQQRBRITIRQxEDIVJDRD/9oACAEBAAEFAggQJU54p24AJWpToUK6neECDdTyrqfNz1bC5jK5m7OcLXoKvIy5zcvQ2W1ly+bnR0WTRvvoo2aC/u8Tj8iNlYIFeaqpCvI/l7+F4VM17fgOn8eyNV2QiEa6ExDdHkYMzl5TfmUy3ZgIekJz5ha2u7ujiFjDAtWnpthnaTxI1rMHZXLNrfVGd0Zt998c2+5V2LUDTdmu9yZenTM292V+bcOtWmE2+PPC/WvVjzTFeNyepKzZS3YM+bF0EuNTyhu8U+ZLr0yvQNILPXqIh6hrXL06CnSvWt1x/ucS/o/q/q/2/wCg/fT/APS76L8f/8QAHhEAAgMBAQEAAwAAAAAAAAAAAAECBBEDIRITFCP/2gAIAQMBAT8B7ssE62rWXqjiyVbTr1H/AEnh1XnpdgnAdKRKwivNe6dJbp+v9kuArWlWzp+RPwpx+kSrnNnBtMqrShElBH//xAAfEQADAAICAgMAAAAAAAAAAAAAAQIDEQQSIUEiMTL/2gAIAQIBAT8By0ZTlZH6O2/sqS6ORk0jL5FPnZtFN6OU/kU9l4+y0Tx0i4OXGmTi9sqNMnGZEZpTKSL/AEI//8QAKhAAAgIABQIFBAMAAAAAAAAAAQIAEQMQEiExQVEgIjJhcRMzQpEEI2L/2gAIAQEABj8C8G87zysL7ZcieoZ7sJWvebjLXhWGgtz7zd2nJnqm7mcw43lrD4vvO2ZUdfCAOTFwK6b/ADNC209an/JjMVII5EZ1W9M4qc5WxoQ+V9aDUL4hYrYM1EV7QArv0hV73EbDUVe9k8zbIJ+I5hA8qiBV5brNJFe4mq1CfMY3e+kS5eY7SxEBJW74laPqAdRPyHzLB1X6hA4/XiBQWeRUTGXDB/q1ldVat65MGrAbHOLiUKaiooH97wY9M5xEUc/bNWS3z0Erppy+2rT7S5XAwJVhuCIzNjuxfYxq/kvbdviow+q1MoRvcDiDxnNfB//EACYQAQACAgEDBAIDAQAAAAAAAAEAESExQRBRcWGBofCR8SCxwdH/2gAIAQEAAT8h67WIsQRkVU7Su8g3Kwu/yT9j0m2wLhSprU0BKXwvEW7F2wM4YHDQoR2B7vSF6p7dJC2JipO6aGM9VuRgrcYdoGCqGspCEApUoIdTjLz3S4ycW5lQQbrGvjM5UlOPmYjBbFNj68z0X33mC8M/6OEbe1hCSrGPR9ZtG5XEtcHjv8yxYUIOveou5q9hjF5EpA1fKjPCKPQitZKe6nzFi3xoldoZa/xcJhR9GYRGZ4hq+n7zPq/crLIYpxiImd3AaVA8GC3Vmjj7MjuzGvPE1+40OzPZB2hNqejLKOm+IqkKAMsR46gyFegMRwaBachWH8eJUOaDFT6h4G5YcihMGxku2X6cag4iX5tKRgL4FXYaK1CgevC1VHjGMRHG8XwqPiiPF5EmOCv8V3yIdB8uf1df/9oADAMBAAIAAwAAABDCY+2aiaIgjMdoqN9TyJEfD3df/8QAIREBAAICAQQDAQAAAAAAAAAAAQARITHwQXGR4VGx0fH/2gAIAQMBAT8Q2TIYdTuXI1LGWXdZidO3t7+rlF4UgZUCMcEUtuq8x3c/h5uEE55xmEfjXO0S7qLNlFy8/IACqtRcnT1AuolkwhgbQ8yoM//EABwRAQEBAQEBAAMAAAAAAAAAAAEAESFBMRBRYf/aAAgBAgEBPxCHpIUoufq1fwE/9jpy714S3sjbKdPkqwmX94XCxMn1zlpw5HhHnCLG+oXmIiLkv//EACYQAQACAgECBgIDAAAAAAAAAAEAESExQVFhEHGBodHwkbHB4fH/2gAIAQEAAT8QJiakxCMoYj4odUIeHtVvUPAFygHpUFG6r0h7W8xP8RFpgImY6w81PVmMSrBVeAjFkpsK/V1YFTS9BgidYoWnrAI8yBEnvsy/3GYal2E3Q8kP4il+eN/xKj40E9A1sM/iHcQ6hf6jLAOuviDNGnb4lXjlaDdeUfBD8HxPpR8QUffmBccfe8CkgW1Wg3LkDCmSMrvvUJHt3d/JdQOSbtG6pyiYYDaUJCCqOBcHMfzHfwMYMNHJ/UqW0FmV0MSzItVbwYC7zDYNqREOMMHeHeUKyjhsKzChK6IrKFMHWWEjbCu2Rlzcwsatoa6Ql8Bq/pO8ffSAKExnBxdyisZrB9C8vrGLN50JydhKxXpRY75qIOGCWdXAZ6RnJlEwgL7vaGGe0fMZIDgrTCZZuzVR2n2+YIU0gUWOEGPLr8QQK28dwmIKPlqd8psZRJhaD2glgi3umkOO6Maarrt8jiIXdLLrPxEF0NjfxL/R+IKijWHUpFF8mSP+vTENgGV7Sk0+yqRSibKW7DiCLApQ7LwhbapRmD+8LluN5k4FrwEXUu1xiqjRrB2xLo6SbJ93+pmh1uFRRUJwFKE2ImRl2xpY8UBQEGgMwG/lCIxGMggaNBmIBVbcxy5MDkre44LGkvpGul67xF3jPM8k1T98/f4Rr85q82e/frwGnp4f/9kg - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1372613935/image_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '87030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:22 GMT - Last-Modified: - - Thu, 04 Nov 2010 01:42:54 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/1372613935 - X-Cache: - - HIT - X-Connection-Hash: - - af7ab6266348ffac8cbb4aa67ea19c4e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '16298' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/2wBDAAQDAwMDAgQDAwMEBAQFBgoGBgUFBgwICQcKDgwPDg4MDQ0PERYTDxAVEQ0NExoTFRcYGRkZDxIbHRsYHRYYGRj/2wBDAQQEBAYFBgsGBgsYEA0QGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBj/wAARCABJAEkDASIAAhEBAxEB/8QAHAAAAgMBAQEBAAAAAAAAAAAABQYDBAcAAgEI/8QARhAAAQMDAwEGAwIJBw0AAAAAAQIDBAUGEQASITEHExQiQVEVMmEjcRYXJDVCUnJ1sTM0NjdVgbM4U1RikZKTlKHB0eLw/8QAGAEBAQEBAQAAAAAAAAAAAAAAAAECBAP/xAAeEQEBAAICAwEBAAAAAAAAAAAAAQIRA0EhMXEEEv/aAAwDAQACEQMRAD8A/AWOddjRynWxVKzUxTKQ21NnlS0+HYcSrhKdxVuztxjPOeox1OjCrFcRUGGpzj9KYebLoMvY4+EhJUohhslZ4xjIAOeo1naEvGpER33I7khDK1NNlKVrA4STnAJ9M4P+zTiJVoU2sqnMuy5chDYU0IKFU5ppwADKVkrWTgE9E+Y+2qvxJ1yc3ToFEiwHHnNzakseMe2nkELUFKJGP0MevGdAGi0GpzWXnY8Va0NIC1OAeQZxwVdBxnqfQ6kn0mLCCx8TZW7nyso86+nrtykc+yjopPg1qWxKlXBUfDvNKCQKlIWlxaevkZUCsjkHgDGemqwfpTMjuobCpKHMOIcqI7hkKHshKiCOo5Vj3A6aKBtxX3o7jzTSlob+cpGdo9z7D66i9dM/xSs1mCaeiS8qC3lxxobWIkRavKV7U/Z4I9cAn051QfjxvBeFiuKkpQ4N8pKShhKsAcEjdz7q2j6eugD67H3aspiLMZT+9IQnIUTnAV6Jz0JPpj+/Gq2B9dDTZHmbtrduOTaM5Sbmpvh1Nv0qjtGFJp6Cdyg5EZ2LKeASsB1BA5UNJEegVmp97V6DGqksRkhyZM7ktIiHKUhS3gdqQScAkj66coFa7O6Rf1Jk0eq3L3zEhbsq6ag0C6FFBCFsxG1hSSF4O5TpUc9OMGxesDtWl2RR63eNWqdyWYCkszqfPTJhp3K3LbUpOUtPkqVw6kLyeh1qRjfZertvWZRKeEzbvNYnMulAp9MpqmHc7huD0hzy4OVbVJ73PB6HQqoXC7Br5TTKNGtsMurS4YbC0SglWMglxZUCBwNpT69M6I1G56DInSI8uFKuOJK2LE6pEs1OMoJCQkPpUoOAAAALSpJAGAnUdXtSiU6I3Mql2vtJVDTIj0x+G4Zp3klCMfyYSR5t+/1+XPGs1dgERqTUbwTHiJTcMmcoJxIQ4VOKVyd3IUFD1UCfXkjVyVR6LQIzrNVqTFZnAjuotJmpXHbJB8y3QCF9BlLfvysHjV2sXXUILqrZo8ulN0WO42nfAjpcTJCR8zjqm0uvJypR2r49AMAaCK2W5VmZUOXSas2tKtu5oPIKckYW2sZSSOffnroqF6S7Nbbfm7RASrZ3EXYjujzjy+/HU8qA5VnUkWA8uAZUhnuoagotr2bHJKU8kJ5wQADlXQfU4GpodIholtyK3LiRUvLQWGN25B3FJy4UEqbaCVHJAKuMAZyRG1uuKpNU9+bSqeE7y3JkZZbPACUbgCEjjy5AAySTyToqrUZhkEFtAaipBSyynhKBxkEZPOecnk9T7AbtP62jNQkMzKrHZbgU6mvR/sXpEFalNuFJx3vzEdB1TgHrjnXr4an+y6j/AMNX/jRT1cVn392VQyapToVQtqqKCmKiyUzqVUgnISpt9HG4ZVgZSsZOQNFbVqna7adhxLwpyxbdvtvmMxUn2G2kzdxKiyltf88QOcpKVpTnkjOglF7Ra72f2zULcte4JDiZckKmNkokU59CR8vh3UqQtW4BQdwDgDHXVd3tXvuoXfULxuGov1x+bEcpUxycncgRnhhbLRxtj5SCE92E7RnA66tjzi9Wu0xoVarvWrZttUuTUnVNmpxKcUPhsgJKWWlLW3GK+SS0AfMQCBxqX8DbcvqbOXQKrBtCuuPrW1alecXHQUH5Ux5rp2rV6bXtiieilaLiwLKv5tid2K3HJYrpUFGza++hqeFjn8jlDa3JwRwk7HOOhOkG6Jt5Sao3at1U+SirRJK0rZlRC3MU6vAKXNw3EnAwCOSc8k51n4v1UvOk1qh1hukXHaLlu1eO2kONLYXHLyMAJWWzxyBncnhWc8k51fg2tLp9tza7Lojk+RASHZbKtwapyFlKGlyk7cZWtY2I3ZO07hg6fqZLv5FjVO3U1lqe7acZdTeYqyo8qPR2PK2Uxy6FKTI7xaAEtnAPpnkZhQn6lLu5plusx4hnvjv36m4VR3FZKsv5BCwTnlQPJ9OuqPkqXXr0Q2hNKTNmQm3HZExhsqkyQpWdzpJO7aMJSABhKcY6nQyRUmX6O1CcpUJD7GEpmMpLbhSM5CwDtWfqRn6nTxUolv1CrQnp9Id7Oak/uUiU33zlPcWlRG8I8zzAz1KC4nPQAaA/AJNFuITqzHjVqKXVhlUeV3jVRc3FI2OIOSN2Ceh98Z1Gk9Gpgp9qS7h8Uw5HZabMlpSSNz6nCWI3PzH7PvlY42owedBPwruT+3Zv++ddWnzHDdCYll6PEUpTi0qJS6+QAtY98YCQfZP10H5+mi6brH7F5PadZT979llehXDVk95JrFottCNUIJKiSWGs4fa5GCjBGQMZGNZtQ7trlqP/AA7aHoCJYkSKXKbBbccSNpCgRlJx5TjBxxoZBqNSta6UzaJWXY82G7lioU59SCkj9JtYwRrcHu0my+1uyJbfbFa8pi4ILKEs39bsVJeUScITUGAUpeyeO8GFfTOcumIwpsS6tX1+AhJS7IdU4mPGSdreSVYSPQJ9PYDWq1HtI7Sk2LHqCqlKq8Vln4Oq46lTWpD8JzzK8LGmrSXAe75+bIGcYGhVyybQodtuUvs0kVKVBU2Gqpc1RY8O5OcPPcR2skttj153KxzgcahsO9raco0ewO1FNbk2ah92VGVR3koepslwBKpCUKG14YSAUK9M7SD1Hks2gu5HL3p5tDxCa0l4KilnBUFZ6nIII99wx1zxrSarV7AvOcql9o9qfi+ucO9y/cNChqERSgcKMqnDAB91sEe+w6G3r2O1S1qYL2sOvx7zs4q+zrtGKkuRf9SWz88Zf7XB9D6aWaxXa1c0GCupznZaYrIZQpxRJIHQqJPJxgZ9gNWTd8JbpZvDsmuy1X4j3eQq9Q5g/Ia9RZHi4Tyc/rjlpQ9W3AlQ9tVw6im20zX0QYrXhkLptOebRsckPZKnJKz1UUBeAegJSPTXQYhj21Ipjbk5io1V5oNFuQWmQykkrLyR8+TtxnptJ1HFaodZiNUOrXMunyoClsQZbrRXBcbKicK2je2Sok78KGCMgYzqWEylpK6HXbf/ALOiEmkTmIzkzwrq4aHQyZTaSpneRkJ7weXJAyBnJGh+Pr/01XpDFatn1e7JkkQWw3DhNGTNnOna1FaHVaj/AAHU6crYoLFcoN1rhV3wFoUKO1KqTrqgh6oq7zay0236rUonA6AAk6Y7b/yHL1/ecb+I1l9t/wBGq5+y1/E6zWPalcFbdrMpsIYREgRxsiwmj5GE/wDdR6lR5J/uGj1BtO3a3Yz7jdzw0XMtaTEprii1vAJCmyVDaVKBCkkH0IPXSa51OvA+UfeNWwhpta77w7OLwNTtyqy6NVoyiy7sIwsDhTbqDlLiT0KVAg60OdffZ/eTvxyqWQbZrJwmWKCgfDZ7hPzFlR/JlEZzsJSfYax2V+dn/wBs6cIP9SFV/e8b/DXq4+5Wc/WjbXKOI1qP1JTZM6q5EQf5mIDyr71HCfuB99ZTIjrQspUkhSTg63m4fzXb/wC6mv8AD1j1b/Oi/uGu3n4MccZlO3L+bmuVuN6eKRed2US1aradNrUpqh1naJ9MJCmJCkkFKilQICgQPMMHjGcaavxW1v8A0CF/zH/trO3vmV92vWuP+XbctP/ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:22 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223188240078909440.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f0983cc8d2ccb9c7c917494a93e9b6bf", - oauth_signature="oEU2K3H3hQX9uVuasaZ%2ByWvMFcg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796442", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2780' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644317459299; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:23 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_rL1CgHU04UGVa6N+GgrTRg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:23 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3607feb94ada43c77a69b20f8a4b7acb - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '896' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '128' - X-Transaction: - - 0077504c00a9eaac - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\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":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/772697070549528579/HFxWLHRD_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Last-Modified: - - Mon, 05 Sep 2016 07:23:12 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/772697070549528579 - X-Cache: - - HIT - X-Connection-Hash: - - 3b5e4da44f99eb558e596bb3aa7e90f3 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:23 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:23 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220798' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1094738873039704066/-lDgIqkO_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59427' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Last-Modified: - - Sun, 10 Feb 2019 23:22:21 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1094738873039704066 - X-Cache: - - HIT - X-Connection-Hash: - - 78fd6a3d400935ec9bf72ac2b088426e - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:24 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:24 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1223103807283810304.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="270a7a4eccf11544f9af28d85299205a", - oauth_signature="mYxomSx1sBr9ZxmdoYp%2F%2BnGdnSg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796445", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '4774' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644528238733; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:25 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_c1fhs9eqFg5/913EVJEC2w=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:25 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 5327d9a3ffb06b4f288d507a02c4791d - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '895' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '125' - X-Transaction: - - 00f3aa8500266873 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Fri Jan 31 04:40:46 +0000 2020","id":1223103807283810304,"id_str":"1223103807283810304","text":"One - of the most disgusting videos i haf ever seen. A Chinese person a live a frog. - #China #coronarvirus https:\/\/t.co\/l81uDqdlOl","truncated":false,"entities":{"hashtags":[{"text":"China","indices":[83,89]},{"text":"coronarvirus","indices":[90,103]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"features":{}}]},"extended_entities":{"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"video_info":{"aspect_ratio":[17,30],"duration_millis":54518,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/320x564\/E9_ZjFgFnwun6x9I.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/360x634\/4c_uXMtdSyZ1SxVu.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/544x960\/AzGc7uMNSi0MYPkw.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/pl\/wV6_mmLI-ktcCFXX.m3u8?tag=10"}]},"features":{},"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,"user":{"id":2519467770,"id_str":"2519467770","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","screen_name":"Nami_fight4life","location":"Obviously - somewhere on Earth","description":"#Anipal Share -\u00bbWorld along with other - living beings in peace+harmony #BeUnique #EnjoyLittleThings #StayStrong #Equality4All - #Voice4Voiceless #SaveLives #UCC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3008,"friends_count":3020,"listed_count":78,"created_at":"Sat - May 24 04:37:39 +0000 2014","favourites_count":23188,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519467770\/1482148273","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218882247870353408/MkRU56G4_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '146377' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Last-Modified: - - Sun, 19 Jan 2020 13:03:48 GMT - Server: - - ECS (tpe/68A0) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/1218882247870353408 - X-Cache: - - HIT - X-Connection-Hash: - - 73d106552eb5d9300d9ad791118d59b4 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '107' - Content-Length: - - '3151' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:25 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:25 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220800' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:26 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:26 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220801' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '76528' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:27 GMT - Last-Modified: - - Wed, 24 Apr 2019 14:50:32 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1121064385504534529 - X-Cache: - - HIT - X-Connection-Hash: - - d794e5057dfcb8c176f39934751f5fec - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '4041' - body: - encoding: ASCII-8BIT - string: !binary |- - iVBORw0KGgoAAAANSUhEUgAAAEkAAABJCAYAAABxcwvcAAAO5UlEQVR4Xu1aaYxUVRY+71VVV+9g07LDtMoysowwgsIAA8ZogmOio+I4qGNEHEMUNSFqZjQhkRiVISrjaARxBogm7jGjIBgIBgSVfQmrMIDQ0ECz9lb7m/Od16d4XV3V/Wpp8Ed9yUu9uu++e8/97llvlXH99ddblEebMBMb8miNPEkukCfJBfIkuUCeJBfIk+QCeZJcIE+SC+RJcoE8SS6QE5IMwyDTNOXCfUcC43s8nvhceuF7RyHrkSFwLBajQCBAwWCQLMvqMIExVyQSoQsXLlB9fb3MFw6HKRQKUWNjY2L3nMHItsBtaGig8vJy6tatm5B1/PhxEbi0tFQIyxUwNsbt2bMnDRo0iIYMGUIDBgygrl27CnFffPGFXD6fL6fzAhmTBEEg+OTJk+nOO++kLl26SNuJEyfogw8+oC+//JIKCgoSX8sImKekpIQefvhhuvXWW6l3796JXWTu++67j3bu3EnFxcXyTq6QkV1A7ZuamkToZ555hvr3708VFRVCFHb5pZdeottuu036ZGt6eB+mPGzYMJoyZYoQBAKi0WiLT/glaHQuyVGkvQIIAz9wxRVXCBEQCuqOncSl95MmTUp8NSNgrKKiItq4cSO9+uqr4o+czlsvoCMIAtImCVCi4DAhoNMH4B7P4T9y4Rt0PMw1b948WrdunXyHBl0qpE0ShMYuIrosWrRIhIWz1FCMezjz9957T/rlCl6vlwoLC+n8+fOJjzocaZMEqCNdunQpTZs2TT737dtHu3fvpk8//ZQeffRR2rRpkywqmQk4cyrNq/RezSgZMFaqZ4C+r2Nqm9MkM0HG0U0nPXfuXFybsNvwSVhMWVlZC2H1HWgiNA2feMcpPMaBGSMqgmD1cwAWDy2aNWuW+Dv0RZuaI/DQQw/RqlWrJIgAaFefCWBjnWO6RUYkYRL4HEzavXt3uvLKK6mqqoquvfZayV9OnjxJM2fOFCcL4tAfZMBE/X4/XXfddTRixAiJhHgXZCESHjlyhLZv307r16+n/fv3Szv6Y6HtkYTvzz33nBA8YcIEyafwPmRAWvDtt9+K80cbrmQangppkwSBsDMQ9O6775Yoh4Umas3zzz9Pn3/+eTwsQ3vGjx8vYZznbFP9z549SytXrhS/dvjwYdFKIBlJCsxRV1dHnTp1irc5gf7I3ebMmSOblU7SmVrSJMDCEGWgPc8++ywNHDhQMl7dSVVtfPbq1StOHMqHp556it5++20aOXKkjKPRCYTs2rUrnjqgHcTfc889tHDhQtEKLL4tUgE8B0Eg4MyZM9IGOXBhTDxH0jt37lyxAMyXuLGp0PbMCVA/curUKXrttdfo9OnTcUES8xb9Dg164okn6LHHHpMxnP2hJfAj0EiYJwRXv4WFodTBzt94442y+FREqemAbGTdt99+O3311VfSX505gPGhxdOnT5eN6zCSAAz+1ltv0YIFC1IKDsFA0NixY2nq1KlxzXH2RwqBhcEkP/vsM/FFGFvTDLyDEuOFF14QLUm1+yoXyiFEWBD6xhtviG/U8ZQsEAqNghW4rQja75EEmBB+AsUskGwiXei9994bf64C4zt2cs+ePZJNq/CbN29uMYa2X3PNNXTzzTdLeZJIko4HgBRERRTX1dXVtG3bNmlXTdN30WfMmDHxqNceWq/OJTAxTC8VEMoRihHFgEQiEXXgj1RjEAWV9GREjBs3Lr7YRGh/PEdfXLg/cOBAi+cKPEckRp/EZ8mQMUlAW9EBC6+srBRTAlQYfQcBwKnueA7zdPZV4DuCBcJ7W3M6gXHVgTuhppcqCiZDViS1h8TFOtHWs2RItz+QTPN0HJi7W3QYSTCj2tpaCd+A0+kDMNXEsgVO2tlXge81NTViwm7JwjudO3dObI7j4MGDrsfqMJLgY5AiqDNO3FU4V+RDmsPAicKkACdJah6o/tFXj4gT+wDopxdQVVXV4rkTP/zwQzxjbw8dRpIu/OOPP44LogvGYhHVNAzrooYPHx7vB2hWfejQIVqxYoW8g3snEfjUDdA0Af4O/hDlj/YBNA/78ccfpQDHeJeVJAgObVm9ejUtXrw4ntA5I8oDDzwgp5o48r3jjjto9OjRIjQWogRBc15++WXRSpCwZs0aiYwaFQEd76677hITQwDAqWmfPn3i84EgaDec+ezZs1skru2hw0gCIAB26/XXXxeiICwEUxL69esnCSUSyRdffDGeF6Ef7lGroWgF0fBXWCQ0CaUFoP0xDz6R+3z44YdyXIMa0Uki3kWG/+STT8bzs0QXkAppkaTC60Lbg5oX3sHRK+o3VPkQTjULtR/Or+HEMSbaYYJLliyhBx98kL755htJXIU8ilF5WQl98slHXED/XU4N9B2V56qrrqLBgwe3kBXHOe+//75o19atW6V2c0sQ4PoUQH0Jjkh0IShCobpOYHIINn/+fCkN9KclvI9yARqBBHPUqFGSSePHAzWrY8eOSZmydu1a2rt3r4wjfiPGxTNL2RhiPxUzqMDLsoTq5fQB2gPf07dvXzE1vAMZYJI///wz7dixQ3wQ7nHsglwrHYIAVySpTWO3J06cSD169KBly5ZJNEIN54Say5tvvknvvPOOkKRC6QJANMbDjmJM2/nyBjQ0UhOXHsVMjL/QTybarRg1BLiU8Fk0tI9FA3vG6OR5g1bv9fJkUapn/4P3MRYIwD02BekCfBM2Fs/0aMSND0qEK5KwOGgOzohQZQNQ4a+//lq0yVmeqMN9+umnafny5XFTcQLjqWZaTIIpftfhr7h/JGpRgDUHwv22KkqP3xKhkVdb5Cu2KBowaPK/Cmj3MQ+VFJqiZRjLOY+OZW+A7bcyRbuORScBEah3MBkKTag2Dr/UF6Ad2gGCcKq4YcOGlCEW40FzPMxO1GIH3eSh+iCXJUGL6puiTA47/AKLbhoUpX/8OUTzp4bpd79mLWBxGy94mU52xCZMzz5SUQeNufVSue2NaC1DOnCtSfAn+PX0lVdeERNRqL9RoBKfMWMGbdmyJeUvqeA1ys34+b5ftyjdNDhGvSrY17BCekz7GtAjRv26R8lgIiNhk8IRbBibXalFyzca9LePfGKOlwKuSAJABHzJDTfcIPnN0KFDJTIBIOLo0aOiPQjpqL5TRRAQUN9oEXi+/xaD7h8Xpm4lLEKI+8JuZOF8RQ0KR9HEZmiwmfkhpkX/3eChOUu8rHUG+TzNr8iT1hAFspI/SweuSQKgUfrvDRzPoqxA/oEMF6eVqK+S1WTyrmEvqK7BotHDTJp2v4dG/sagIGtIkB0zSLLqwuQJso/iNjPC5UrEIg8TFGLCdlcb9O/VHlq6xUNeJgcEgQQhyLA/QbDqFrhGluHz2pqbjcWlRRKgPgghW8+l0aa/Qtj7BhNsKVggiH5Ef/mjl/76J5MjGFFDE8oLFgJDNkclwAKbASY5zBc78P9VE63ZZdLZRoPKuQb2eiwxVw5gpOdmIXxacOB8z+0cKOlQtUXHTsQkABT6MX5cnLSQNkkKmJ/TF2l4xWAcCCU6wbSEBL56sGXOeMRLE8d7qLHJ9knNfCdHnDibbDhyOOsW5oVnzd1tAiCD/ZSDJgWZnB0/WTR7XoQOHrXY52VGVMYkJQMEgHoPHWhQ356866U2QV27mDR2hEE9uxmyw0pcu2iWDH1BjhDmaI/bVsvbOGDxnSqJ3l0UodnvRqmiM9KOxF7tI2ckQSvq2d88MslDM6Z6bCekTPAKA0HbPNrUnmTQ1VsX3xWSLza3Ap7BhH1eTkt4zumzIvTdeotwXJUklrSLnJAEobFDxRyxFs/xUe8eHN4DiEoXn7vWHicse1HyGjvwYMSwHXnYni8+nmMeMUG+LtQT7T8coxVrY7Ty+5iUMpkuNCckYYfhZ0YPN+ifM30tF5ApmOFYA3vjY03ingrY8S7f7qH/rPJwNI3xhTngF+08TefDJzT29DlLfFKMa72ii2ldRkhX+ZMCgoXCFo1ikrjkysg5tgKbqFHIVXwxh/wAZ+ecW/2+d4i8nDP8dNigU2cMqqklOn7S4AhGVF1jX0eOE504DYWCLFzT2SfCWSFrkrCB0JwSDun9+2Y9XAuY7NqiFX6yvHZiWd6J67ir7QiK7BxBAlmH89J2sbxmc80W2a/KsAVB3lNWlln0SAWEcbOAfQnbs4fniYQMOsiag2QSc2p6kOzKJbImCTvGyTF1LkOIJ7vGynrUZiAv4qTS4szbW0C09ZBBmw6anDPZKcGlQk6Wg53zF9gmF49GOYDFCalZEyAfG1g9ly5zl3moIWRnF5cSWZOEDYXjDobtCJdtnRSHYZubAZ/Cqun34vgE7OCMKLFzxyJrkgD4COQlJ09bcp8LjmQQlBGlXoqyufmKYtS3MiblzKVG1iRBa7wcTWrPWpy8WXKfE02SrJCVKNz8ExTnO+caUOXnZPC0kDVJgGr/dxtjUgYgdFswO5iMPkxzbchzjNoQmefD5C+2aOchkzaz477UThvICUkQuogTt++3xOjAEXa2nBFHasMUqQmSdS4sRx4gLQo9AGlO4lItmNXRPB+RgLDhANHjC71UW2cftOVGU90jJySpyZ3hRaxbGaDiU3VUfqqROjcFqKC6kcI/1ZOnppFKm4JkNkUoGoZvsSjKZhQ15MiI4Gqk0geBPFY0yM+ZbJPv1+z20JHTHir249eTxNk7Hjmp3QCpmThHqiyN0Yw/RKhnhUVr95m07bDJxS5RpyKLxgyI0YQhMaqs4P5+LjmKTCk7LJ/JWsZRi8NZOMh5VwBaFKRiKyqF8pR3C2hPtSmZ9KXWIiBnJAFCFDJuHrGAQ/b5JvskABEPCSce9GXyhv8qJqSVFVpUUcaZeolBfh9HMI9FV1ca1LXMosaQRYe5Pluwykur93jEF10OgoCckgTocQXMIp4OWHY7FoljVlxiXjHbfArkzBrVvEVdmKDSQlsrT10wmCyDzezyEQTknCRFM1etALLk0u9kEyY1F9ln1siF0AfmhZrtcvghJ3LiuJMh1bpABkoXEIErErtYrLIiCTEwLb/PFu5yEwR0GEmZAHwIidCqZs36JeAXRdIvFXmSXCBPkgvkSXKBPEkukCfJBfIkucD/AQU3FTPrV4eFAAAAAElFTkSuQmCCICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:27 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604350' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222881209384161283.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0845309cb9c27fc1ab21d39b7b4eec23", - oauth_signature="vuGxDfvE5VlqDoEhKQecDdpslgQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796448", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2970' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644848815779; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_AcgGvkyqZMxPuXzd/80cSA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - dfeb647881f0c2d4fd8b5bb70434d07c - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '894' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '137' - X-Transaction: - - 00ab4bde005cb1b6 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:56:15 +0000 2020","id":1222881209384161283,"id_str":"1222881209384161283","text":"@heyscrumpy - what\u2019s with you guys & girls? @zammadhq @MrThorstenEckel","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[0,11]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[46,55]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[56,72]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222872891320143878,"in_reply_to_status_id_str":"1222872891320143878","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91561' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:28 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222872891320143878.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9a015e27bda3228c0dfd24d91b42e81d", - oauth_signature="fQBcSbPWXxnrtavdbprC8Zw5Azs%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796449", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2903' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079644924464551; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_9+Br9A61XrqTbFxPH7rLGg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 3a440e7e126060138b069e2c9000fc80 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '893' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '133' - X-Transaction: - - 00df0593008cfe0d - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Thu Jan 30 13:23:11 +0000 2020","id":1222872891320143878,"id_str":"1222872891320143878","text":"I - haven\u2019t seen Tweets, articles or books about doing support for small - companies & indie businesses. Have you?\n\nWou\u2026 https:\/\/t.co\/e1cwhjvxEe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e1cwhjvxEe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222872891320143878","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,"user":{"id":281991630,"id_str":"281991630","name":"hans - \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, - ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv - for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu - Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '91562' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:29 GMT - Last-Modified: - - Tue, 13 Sep 2016 21:00:34 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/775801870518456320 - X-Cache: - - HIT - X-Connection-Hash: - - d1623eb5644d8a6924acde0eef38c47b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '2795' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4AAJAA0AFQACACVhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAAGAQIEBQcDAAj/xAAYAQEBAQEBAAAAAAAAAAAAAAACBAMBAP/aAAwDAQACEAMQAAAB19FTvEpeWJl7RYYB1K37iJEaHVsRfeKGvYjiZSOaBJeORDqoOmXarm+k7SK7ztMipFRjPYxPynth1NjxG1SZDxQ8I3nptMSeREGhhmA402VQOwJ7D69pLWiFvuCPMrFST50b1C9zTUp6oUO5i5qupSjL1wiI8PmUYf/EACcQAAEEAgECBQUAAAAAAAAAAAECAwQFABEQEhMGFCA1QRUjMTIz/9oACAEBAAEFAuZtnDiLTcV68akMvAnCc3m+bmxbgsSnFqc2QEPrbVS2wlBRzqzfB/EpZsbxioYx2kZ6hVpbM5sRpbC+5G5UNiGC1cIeZGaTp5RIuUFUqM0WovzzJjj66BZi6lq+3LVYrn2qU43vseizR0uvKbSFuAtQn0jH2jIlEaHocSFoW6lKgylLa1NwjSHuhXG+d5cxy+75qYyhSZEx+u6Y4WcJzfFrdRoRqbBywCE7T2wkNtaU6gldzLMFmDcMP51Y5+jn9fDXuycVx8+KPcxx/8QAHxEAAgEFAQADAAAAAAAAAAAAAAECAxAREjEhBBNh/9oACAEDAQE/ASMcmiMYvTxgWCr476bxWpOjul+Fdrl/jv03Kqe/tqUFLpzgmTeT6z//xAAdEQABBAMBAQAAAAAAAAAAAAAAAQIDEBESITEi/9oACAECAQE/ARzsG6mcmad6Kikfl7ar0bJqpFc1Rr83InRSNvTB/8QAMBAAAQMCAwcCBAcAAAAAAAAAAQACAxEhEiAxBBATIkFRcSMyJFKBgkJhYnKRobH/2gAIAQEABj8C3hk0nMegFVbaR9QVWKVr/Bz6gzO9jU4vOJxN1W/8LE1zmu7tNFwJT6oGvfMb8rjbwEcZrVVj0XM5pHhVbY62Ub/maDkI7pkNOZpcCqOfdVxWRwwyU70UZH4xhUcZ1a0DK3aSKYg5pTTGCdl0/SB1+qkDTaqjds0nwvKdbDvUKJ5FmyVTK64RlEvQXQxNueqe1sRKEeE1P5aIRAVAu5UyuYdCKJ8MwBwWcFyOOHoqtpieblSbQf2jO6WE83dUdBKL6tXsdGD3XB0HTLwx6s3yjp5UvFko9p9gsKKhRqEXHVBR8N/qE2b0og2X0pP6K1Cd4R8n/V9jt53fYN//xAAnEAEAAgEDAwMEAwAAAAAAAAABABEhMUFREGFxIIHhkaHB8LHR8f/aAAgBAQABPyGPSp/2E88RqgXwvxKnvzdTfRo8D+Z7RG1sNc+YXKjtwndvEUCfwt/no6+tAlaCN4t124pVtcXzG6TvdIoxnQi9NFWwxKvKKT2m/UHdBUcNLU4FqJmQdAWIV2cZlnbiwJ8Vb5uMuKxOalRXXLLKdwx9oj9BTjav1tHOB1R2okKIOzUvXECrcBoU/EOTvITxEzK6rm7TT7P2lFKtQlBNFwTLmmDUf6gf7ALitIA8Co+jUpSmvtwz2X3IQLwwu6PeZ6ry5WL74t91+scXqWMUzDdDRiLQAuYa2lvVesK+qs7L9C1jPzXjzbeJt3B/qczGcCdptBiCtWN5fRrhvkslyxsZfpO3vKfJPvnSjS/TBNZNDPyjoml++vV//9oADAMBAAIAAwAAABB/kE97MaC8Nf8AIkMvspjvOu5fx//EAB0RAQEBAAICAwAAAAAAAAAAAAEAERAxIVFBcdH/2gAIAQMBAT8Qu0y3UtY2cAeNn2RMZ4QTw3Ixb+ogDveWF6nww7+oymSr6RhQXyWUEkPV/8QAGhEBAQEBAQEBAAAAAAAAAAAAAQARMRAhQf/aAAgBAgEBPxC4Cw7BGnrT9SOX36NbNhzsF1s8Bg/sixIz3rhF9zP/xAAjEAEAAgIBBAMBAQEAAAAAAAABABEhMUEQUWFxgZGh8LHx/9oACAEBAAE/ENdDqIhv5CJi6f6h90LsA9uFzH9bsEHk2fJPPKOZn30Oo6hoMIu1/IfriVczQtZtu27zX3LeIdLFeDP6MNj1AYdsjcoeXbIB2Xtzaw7xMdjiKaz3jqVAAqvBywBCg8+N4WQGe1gyj3tn41LqLmTO+5LCGgcN8N95nPu9KxdHZr9hgVDGwsMqK99HIRDTslTu8mesH0ECrgbR8ESAJZBGyoSrw3c3Em4GLDetk1XisQBqNOqlxA0TdJre2/1Ez2UmKKxKDaXbwxFp3FHsssvzmKI6x4BfW0YN2VARLug3hn1f0hgAeILTPTX61XwtmWu/ht8kP6CKOjvW/mK8LDUzTDAS1ck0eS3PmH/2sxYC96XUBejHwVCdHoDd+sUpig3QwmgOxBCcQeAaqAooVEK3VSgIK+GqJapTT7UftIPhm/MG57T30AzmYIUKwjgTkgLdoVV9BmaEqOTvRxL3oNOgxV+b3A7zLue0qlhY4Rjf2pb6lPAiOllCG9gqvHeHUW72TdWFBdPBDrENj2viCCysEVXbvB37WgRG/TD3Cwuby8u32Z/xs/p9mfw+7pU/Yz9MepDOXrp//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:29 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59418' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/651386341171703809/t2jAQDHu_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59422' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Last-Modified: - - Tue, 06 Oct 2015 13:17:40 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/1 profile_images/651386341171703809 - X-Cache: - - HIT - X-Connection-Hash: - - 9a3325add8fd54617c3964c5b7f17fd5 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '2973' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:30 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:30 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '220805' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Tue, 26 Nov 2019 11:03:33 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1199283040230526976 - X-Cache: - - HIT - X-Connection-Hash: - - 4391708ad051bd65bc73f3a0d9a00ee2 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '116' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4wALABoACwAFACFhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAcAAACAwADAQAAAAAAAAAAAAAFBgMEBwABAgj/xAAZAQEAAwEBAAAAAAAAAAAAAAADAQIEAAX/2gAMAwEAAhADEAAAATFMqv50O15KnW91iaeGmur3QrG9OWfPt85dQclo0tdRTxa4uOyTDZl33fYr2gpzfxMIwrXK68QrmIkOBZM8SyxSjLvn0u4tlRs8IjrmTw7ElpY6TMSSwJxzNzyvB3Jg/o411mQdgeZEJ6EhPz6xhb3bXBDZuRoUjXGa/kf/xAAnEAABBAEEAAYDAQAAAAAAAAACAQMEBQAGERITFBUhIzI1EDEzNP/aAAgBAQABBQKUmzMIs3x8+tmig8YMsU3lCm0pEUNKukcPJg+ywvF3JfrGtJ6wa9ue5MOdYKbhOk5mkvxJTljqcXRXcVRFG9ZIq+oqnYdeTKqSMEGaaMxfxzJ4bZHXdrL1wQgO24R60JQ9sgk46aa2Yw8lhyCGiiSpmpH+yumNR4tQ51niKbmQR6om+LipviJxlcMs4/MLKc4jaqpFDZ4PxJjfLswvQLa2dbf0/J8WV3MZhv2D/mDJQksQLT6QIhOk5LlOC5Y9h5fl7Ve13JCqn3Ds23RcgSCadVw23bOXYymOPUCCu3Y5l7JXwtBCEaddkDV0RfDMiqvG8rAuGMqPfRzYsq1opB+WtZd/uq+oZzUP1Uf4P/46X+msvnp345//xAAeEQABBAMBAQEAAAAAAAAAAAABAAIQEQMSMSEEE//aAAgBAwEBPwGGOHE94PiCpDvqZWocqafYEDIGpzrgOK6iNuIgjsVUYRozYdX1j9Me5j//xAAfEQACAQQCAwAAAAAAAAAAAAAAAQIQERJBITEDMlH/2gAIAQIBAT8BLji27kINEu6MafqcjHTBiQxeFLsxQmtkmtFib4NkiPyn/8QAMhAAAQMBBQYDBwUAAAAAAAAAAQACAxEEEBIhMRMiMkFRcRRhcyAjUnKBsfAzQmKRwf/aAAgBAQAGPwJ56miIue/4RVeLnHv7RvuP2CIWiIT2OdXA7LyubfIP4lWZrInSe7GiLxAWtasLI60RDhRWg9rjcCnV0oVsGOwnAAFaZ5nZuZQNTqLNGMcDgXG+t7ZDzCbZ5dX1q6unRYjkqozU4sh7DmG7YnXKijJa+STmaIvALR5psYz5BRx/CKex3uY7npTqeiwVp0FLhtDR9KgLwxO8BW4vdk0albCyAZakhP8AFxRAtFcSgJlwMOZYEAyZ4Zixx4eoW0ktG1fTiLQCjaoq2iQDMdB5IOBwuJp2Ujw7dBo36L96ZhdSLicO34FNORoU18j3RAZgDVSRzuJezUlYAah2qNos5cKgOoE7bNcIh9Ag48buHyHW7iKDa5hxCilIzO8qjPFoE21c28fZBwyoVE+PTEWn7pkTKHajOvIKQO4SdztyRhGlKk9F+nL/AGn/ADKzemFD8in9I3H1G/6mqL85KTvd/8QAJhABAAIBAwMEAwEBAAAAAAAAAQARITFBUWFxgRCRobHB0fDx4f/aAAgBAQABPyECtsdjL+JR1fQWo2+wlIZyTYfgqPMbw+kRRHaNMwSuhNJccDgt8xKOsuZXuXxAAmR2YIKzbVizriFWOsQNbNn7lzyMS6dQCEl9VXaXi3kFZDmFWtC+4Pb/AIhNwid4Y0TB6ZS5XvKrpiaL2ZS0Ut+IfF38l4Kmy22+sx9ESyW8jUVqby5qllFtvicsxBoD4lWu4g4fEfAJFF7i04IjZlenXKjccr3TtgYC1FHQPJjAvkaDrKsZV0IdpJB/cAaFVxXEpzCnqdpoSxiury3gigAFhXsSjONzTlIzSzcrpJz+ZUs9PoveZdNYjmY33IjAcfma3IpuYH16JmlsNrV8e8LbG47rESDzTl/UaYGXfmW06I87MCwIBovTuMcKvKRR7byxuhsfw7SwTbPpTxoS9klgTT+f+RV/gNWVy3gJ7Hx+YplLF4mxlY4Wv2+09jhA18wtNwrH+VSni8B/lp8TP6XE/j4n9XiaPf0g+JPhH0nwf16f/9oADAMBAAIAAwAAABCq4ZIMy702HRiHiDY6g89xIbjr/8QAHhEBAQEBAQABBQAAAAAAAAAAAQARITFBEFFhwdH/2gAIAQMBAT8QD5ggBdoXiOImHxdDyxIZzmfR5GfklcZOechVsnXq45y2dDPkhcsD7BjP2P6H721v/8QAGxEBAQEBAAMBAAAAAAAAAAAAAQARIRAxQVH/2gAIAQIBAT8QH54PLhLcKHGX5aWKcGXW5t2Ob8bEhj2M3pjfkTg5elWIw5Frlwxv/8QAJxABAAIBBAEDBAMBAAAAAAAAAQARITFBUWGBccHwEJGhsSDR4fH/2gAIAQEAAT8QGCsQ39wfshuzAvyf4kQ6xTlFzmx9pm5QPOiOBRruEUBwK1jcWDxBJIl22dmGaTsCK06sfoQJlyrRzfb7Q20Ar4cf1LcwFcpq/XEZhQ6SqINwwaBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/695741537964179461/2xwxUiGU_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '76635' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Last-Modified: - - Fri, 05 Feb 2016 22:49:23 GMT - Server: - - ECS (tpe/68A2) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/695741537964179461 - X-Cache: - - HIT - X-Connection-Hash: - - 07e9c29bdb6caa8e860115725514fa1c - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '5465' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:31 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:31 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '237853' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Last-Modified: - - Wed, 30 Oct 2019 08:56:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1189466673532854272 - X-Cache: - - HIT - X-Connection-Hash: - - b140b365ea73f0d34e1c7c5a2ad7cbc9 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", - oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796452", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '2781' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:32 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:32 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:32 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 608ef1d33f94f7800d75e9f14fc86838 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '900' - X-Rate-Limit-Remaining: - - '892' - X-Rate-Limit-Reset: - - '1580797340' - X-Response-Time: - - '125' - X-Transaction: - - 00dc12c800f73e29 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","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,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:32 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '604355' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Mon, 10 Oct 2016 09:31:36 GMT - Server: - - ECS (tpe/68A9) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/785412960797745152 - X-Cache: - - HIT - X-Connection-Hash: - - c495a3ef02e4fc034e72fe60abf696fe - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1203364293552427008/_KFRXMoC_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '164030' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Last-Modified: - - Sat, 07 Dec 2019 17:20:59 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/6 profile_images/1203364293552427008 - X-Cache: - - HIT - X-Connection-Hash: - - 73f0d65b4198134d08b055a8f32af592 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '118' - Content-Length: - - '3863' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:33 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:33 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1013540643988049920/y49Ifgdi_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '69311' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Sun, 01 Jul 2018 21:49:34 GMT - Server: - - ECS (tpe/68A3) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/2 profile_images/1013540643988049920 - X-Cache: - - HIT - X-Connection-Hash: - - b6abf8329d70ed402270f83f3a3d272d - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '108' - Content-Length: - - '2261' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1095305778460798983/mA-tSgeW_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '180213' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Last-Modified: - - Tue, 12 Feb 2019 12:55:02 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/9 profile_images/1095305778460798983 - X-Cache: - - HIT - X-Connection-Hash: - - 4f62d93a7d984d9f6c1bbbd4800d8953 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '117' - Content-Length: - - '3507' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:34 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:34 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/832141531255623681/D-mNs8yL_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59425' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Thu, 16 Feb 2017 08:14:16 GMT - Server: - - ECS (tpe/68A4) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/8 profile_images/832141531255623681 - X-Cache: - - HIT - X-Connection-Hash: - - 8b1044a4643f6b81360bb50474f708f6 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '114' - Content-Length: - - '2617' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=1 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1218685451793362945/GfdbCX8w_bigger.png - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '192603' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/png - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Last-Modified: - - Sun, 19 Jan 2020 00:01:48 GMT - Server: - - ECS (tpe/68A1) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/7 profile_images/1218685451793362945 - X-Cache: - - HIT - X-Connection-Hash: - - b894a9af26bc849bf813155bede4d87b - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '110' - Content-Length: - - '3685' - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - maps.googleapis.com - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Date: - - Tue, 04 Feb 2020 06:07:35 GMT - Pragma: - - no-cache - Expires: - - Fri, 01 Jan 1990 00:00:00 GMT - Cache-Control: - - no-cache, must-revalidate - Vary: - - Accept-Language - Access-Control-Allow-Origin: - - "*" - Server: - - mafe - Content-Length: - - '202' - X-Xss-Protection: - - '0' - X-Frame-Options: - - SAMEORIGIN - Server-Timing: - - gfet4t7; dur=2 - body: - encoding: ASCII-8BIT - string: | - { - "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", - "results" : [], - "status" : "REQUEST_DENIED" - } - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:35 GMT -- request: - method: get - uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Zammad User Agent - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - Host: - - pbs.twimg.com - response: - status: - code: 200 - message: OK - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Content-Length - Age: - - '59424' - Cache-Control: - - max-age=604800, must-revalidate - Content-Type: - - image/jpeg - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Last-Modified: - - Thu, 19 Dec 2019 21:21:23 GMT - Server: - - ECS (tpe/68A8) - Strict-Transport-Security: - - max-age=631138519 - Surrogate-Key: - - profile_images profile_images/bucket/3 profile_images/1207773446798602240 - X-Cache: - - HIT - X-Connection-Hash: - - 7527d05c8bc7c0f33381b7e785c88bb0 - X-Content-Type-Options: - - nosniff - X-Response-Time: - - '115' - Content-Length: - - '3329' - body: - encoding: ASCII-8BIT - string: !binary |- - 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="aeaf906f8767cadcf09c4c5a10532123", - oauth_signature="zsUNwbi7cqDERnuzS%2Faz%2Fztqxiw%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '272' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:36 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:36 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645660684099; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:36 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_KyzX7TFtLloo2KN4Sox/Sg=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:36 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 480636c4358b5b3f4135db1aaf625a51 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '178' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '181' - X-Transaction: - - 00c549fc00aa1d57 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.07,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:36 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="58fd5ddd399a461ee8569ef9df88ee50", - oauth_signature="itBgKdu4ephlrJ7iZzQATIF1eHU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796456", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '279' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:07:37 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:07:37 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079645701833137; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:07:37 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_G/zRB+RLggbfpaDVNKFV+Q=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:07:37 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - e5e2f313e2022fb301596865209d5d8a - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '177' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '119' - X-Transaction: - - 005b4ffc00e580a2 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.011,"max_id":1224575206770954240,"max_id_str":"1224575206770954240","query":"hash_tag1","refresh_url":"?since_id=1224575206770954240&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:07:37 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9cf95b79f5604737654cc3586a994cc2", - oauth_signature="eqPYzvtb60sqo3UCgYLHxYRaBJ4%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796567", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '124247' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656793434467; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_bo02d/mRLZ3dsuphPy1YBw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 28d46a1d9234538c161898fdeb32d5a6 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '176' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '242' - X-Transaction: - - 006af0130039d645 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace - l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re - nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace - Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon - Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Mon - Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade - you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Mon - Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade - https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack - McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix - Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend - Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue - Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","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"},"geo":null,"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"},{"created_at":"Fri - Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau - @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du - da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik - Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, - coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon - Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/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"},"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":"de"},{"created_at":"Fri - Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT - @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC - https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This - is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno - Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/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":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri - Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq - Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail - verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik - Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU - Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon - Sep 05 06:47:21 +0000 2016","favourites_count":234,"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":"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},{"created_at":"Fri - Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life - Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices - \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad - Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, - Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu - Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Thu - Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT - @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting - CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take - good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761398686,"id_str":"761398686","name":"Sporting - CP_en","screen_name":"SportingCP_en","location":"","description":"Official - English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese - Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu - Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","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\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu - Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT - @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, - meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93910,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu - Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT - @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted - to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 - \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the - signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":558797310,"id_str":"558797310","name":"Manchester - United","screen_name":"ManUtd","location":"Manchester, England","description":"Official - #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 - | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe - | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri - Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"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\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover - jobs for design, product, ux, ui, engineering, pm, research, and more via - Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue - Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Thu - Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel - @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our - agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans - \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten - Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu - Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT - @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful - deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/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":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, - CA","description":"SpaceX designs, manufactures and launches the world\u2019s - most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu - Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"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\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed - Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294510881,"id_str":"294510881","name":"Andr\u00e9 - Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin - | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | - Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat - May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"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\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring - it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144913897,"id_str":"144913897","name":"Zammad - Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication - System Engineer, Business Graduate, Switched to 345 - Football is life & Climate - Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon - May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"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\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","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":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue - Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar - Hain\u201d \n\n& this is how our cricket mela begins with the sound of - #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official - account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 - https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373449,"friends_count":111,"listed_count":454,"created_at":"Wed - Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, - Germany","description":"Curated Blog with Deals for Web Designers & Developers. - Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu - Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq - Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users - ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, - Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, - Discourse & other open source instances for you, so you don''t have to. - Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun - Sep 01 14:44:59 +0000 2019","favourites_count":139,"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":"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue - Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A - bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram - - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon - Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983535377674891266,"id_str":"983535377674891266","name":"JS - Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS - fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue - Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come - and join our team to bring Zammad even further forward! \n\nIt''s gonna be - amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, - Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | - Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri - Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue - Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"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,"user":{"id":2474118319,"id_str":"2474118319","name":"Thorsten - Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad - maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri - May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT - @zammadhq: Good morning! Come to our Global Office. And stay where your heart - is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad - HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript - bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created - by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in - JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu - Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25761,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"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"},{"created_at":"Tue - Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good - morning! Come to our Global Office. And stay where your heart is. We are looking - for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad - HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer - Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon - Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon - Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT - @BarackObama: Kobe was a legend on the court and just getting started in what - would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad - Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 13 13:57:50 +0000 2019","favourites_count":42,"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:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe - was a legend on the court and just getting started in what would have been - just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack - Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, - husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881949,"friends_count":609242,"listed_count":228787,"created_at":"Mon - Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","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"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692558,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692558,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.091,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7410ad8dffcb1424c6f77ec46b914605", - oauth_signature="iAP4GpRETQ8HDbs5Gmj7dWTZRh0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '273' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:28 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:28 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656877966283; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:28 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_ARCDxbX8FLNE9hnHrhkmTw=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 8bf48bdb333352d6cdd20ff4806bbbab - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '175' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00a1d15600695a9b - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.009,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:28 GMT -- request: - method: get - uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - TwitterRubyGem/6.2.0 - Authorization: - - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9d0fac0820ed0f353ebc216e1d7d6b10", - oauth_signature="yhv7odp6G09X%2FoM4u4Dz8DCGLhA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1580796568", oauth_token="REDACTED", - oauth_version="1.0" - Connection: - - close - Host: - - api.twitter.com - response: - status: - code: 200 - message: OK - headers: - Cache-Control: - - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - Connection: - - close - Content-Disposition: - - attachment; filename=json.json - Content-Length: - - '278' - Content-Type: - - application/json;charset=utf-8 - Date: - - Tue, 04 Feb 2020 06:09:29 GMT - Expires: - - Tue, 31 Mar 1981 05:00:00 GMT - Last-Modified: - - Tue, 04 Feb 2020 06:09:29 GMT - Pragma: - - no-cache - Server: - - tsa_m - Set-Cookie: - - guest_id=v1%3A158079656911953573; Max-Age=63072000; Expires=Thu, 3 Feb 2022 - 06:09:29 GMT; Path=/; Domain=.twitter.com - - lang=en; Path=/ - - personalization_id="v1_g2vaZ2vWRME57HD7F1MWVA=="; Max-Age=63072000; Expires=Thu, - 3 Feb 2022 06:09:29 GMT; Path=/; Domain=.twitter.com - Status: - - 200 OK - Strict-Transport-Security: - - max-age=631138519 - X-Access-Level: - - read-write-directmessages - X-Connection-Hash: - - 6736ab562f0f0ee209994ecd260a1ca8 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Rate-Limit-Limit: - - '180' - X-Rate-Limit-Remaining: - - '174' - X-Rate-Limit-Reset: - - '1580797338' - X-Response-Time: - - '120' - X-Transaction: - - 00b82890000b03a1 - X-Twitter-Response-Tags: - - BouncerCompliant - X-Xss-Protection: - - '0' - body: - encoding: UTF-8 - string: '{"statuses":[],"search_metadata":{"completed_in":0.01,"max_id":1224575676411310081,"max_id_str":"1224575676411310081","query":"hash_tag1","refresh_url":"?since_id=1224575676411310081&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' - http_version: - recorded_at: Tue, 04 Feb 2020 06:09:29 GMT -recorded_with: VCR 4.0.0